Math & ScienceEquation array - how to add {

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
aplrt
Posts: 6
Joined: Thu Apr 15, 2010 10:03 pm

Equation array - how to add {

Post by aplrt »

I have four different equations aligned on four separate rows (using the eqnarray environment). I would like to add one large "{" stretching along the entire left hand of my equation array. How do I do that ?

Thanks for any help.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Equation array - how to add {

Post by gmedina »

Hi,

you should not use the eqnarray environment anymore: Avoid eqnarray!

Here are two possibilities:

Code: Select all

\documentclass{report}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  \begin{cases}
    a+b+c\\
    a+b+c\\
    a+b+c\\
    a+b+c\\
  \end{cases}
\end{equation}

\begin{equation}
  \left\lbrace
  \begin{array}{l}
    a+b+c\\
    a+b+c\\
    a+b+c\\
    a+b+c\\
  \end{array}
  \right.
\end{equation}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
aplrt
Posts: 6
Joined: Thu Apr 15, 2010 10:03 pm

Re: Equation array - how to add {

Post by aplrt »

Thank you !
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Equation array - how to add {

Post by localghost »

Alternative solutions come with the empheq package from the mh bundle.


Best regards and welcome to the board
Thorsten
Post Reply