I want to produce big parenthesis like this: Left brace including several lines in eqnarray
How do I do this with align instead of array? I do not want to use eqnarray though. Thanks.
Asked
Active
Viewed 304 times
0
1 Answers
4
You can use empheq
\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{empheq}[left={\alpha(x)= \empheqlbrace}]{align}
& x\\
& \frac{1}{1+e^{-kx}}\\
& \frac{e^x-e^{-x}}{e^x+e^{-x}}
\end{empheq}
\end{document}

-
Can I not use any outside package to produce the above using align? Thank you. – Ka Wa Yip May 16 '15 at 06:07
-
That means I need something *normal like "\begin {align} ..... \end {align}", not importing subsidiary package "\begin {empheq}{align}....\end{empheq}". – Ka Wa Yip May 16 '15 at 06:28
-
-
how about not using "numcases" or "cases"? I have to use align. Thank you. – Ka Wa Yip May 16 '15 at 06:37
align? Is it because you want the components of thecasesenvironment numbered? For that you can usenumcases. Could please describe exactly what you want? – Werner May 14 '15 at 04:08alignenvironment, since it'll typeset the material in display math mode. – Mico May 14 '15 at 06:23