I want to vertically stack 3 elements (regular line width), braced with { (\left{
) (equally aligned, so the 2nd element is aligned with the tip of the {), then draw an arrow out of the third element which will be at the center of another { brace containing 3 equally spaced lines. After that draw a } brace covering the two first elements of the first stacking and the first element of the nested stacking and nothing else.
Something like this
{a }
{ }
...{b }...
{ {d}
{c → {e
{f
where vertically stacked '{' and '}' represent a big brace. I've tried using
\left\{
\begin{array}{l}
\text{a} \\
\text{b} \\
\text{c} \left\{
\begin{array}{l}
\text{d}\\
\text{e}\\
\text{f}
\end{array}
\right.
\end{array}
\right.
for the first part but that ends up leaving more space for c thus making b not be vertically centered (so to not overlap). I also am not sure how to make the rightmost brace, tried some things with arrays and vphantom but couldn't get much to work