[Tex/LaTex] A curly brace with an asymmetric cusp

delimiters

I am trying to write one set of equations implying the next, inline with text. What I would like to do is something like the following:

\documentclass{article}
\begin{document}
And so, 
\(\left. \begin{array}[t]{l}
a \\
b \\ 
c
\end{array} \right\}
\Rightarrow \left. \begin{array}[t]{l}
d \\
e \\ 
f
\end{array} \right\}\)
\end{document}

But instead of producing the desired result (bottom) it produces the top one.

Is there a different symbol I can use other than \}?

a set of equations implying the next

Best Answer

It's fiddly, but it works. Using abraces you can align the entire construction vertically and then rotate/move it into place:

enter image description here

\documentclass{article}
\usepackage{abraces,graphicx}
\newcommand{\mrot}[1]{\rotatebox{90}{$#1\mathstrut$}}
\begin{document}
And so, 
\raisebox{.8\baselineskip}{\rotatebox{-90}{$\setlength{\arraycolsep}{.5\arraycolsep}
  \begin{array}{@{}c@{}}
   \aunderbrace[lD1r]{\begin{array}{rrr}
       \mrot{d} & \mrot{e} & \mrot{f}
     \end{array}} \\
   \mrot{\Rightarrow} \hspace{2.3\normalbaselineskip} \\
   \aoverbrace[LU1R]{\begin{array}{rrr}
       \mrot{a} & \mrot{b} & \mrot{c}
     \end{array}}
  \end{array}$}}
\end{document}
Related Question