latex - How can I add delimiters around the amsmath align environment? -


i have group of equations , i'd show under transformation, system looks else. i'd group ams align environment inside pair of brackets such align environment vertically centered on line , can like:

alt text

(that uses matrix environment, alignment centered.)

i using lyx.

\begin{equation}   \left\{     \begin{matrix}       x = &  y \\       y = & -x-\mu(x^4-1)y     \end{matrix}   \right\}    \rightarrow     \left\{      \begin{matrix}       w = & -x \\       x = & w-\mu f(x)     \end{matrix} \right\} \end{equation} 

produces closely thing shown above.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -