Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I can't figure out how to place the brace on the opposite side, that is on the left of the group of equations, when following the answer in this link:

How to put a brace on the right, not left, to group cases?

What should be changed in the solution?

share|improve this question
Use cases* instead of rcases*, the Herbert's answer shoud work then. – tohecz Nov 11 '12 at 23:15
3  
did you read the question from your link? :) – cmhughes Nov 11 '12 at 23:26
possible duplicate of How to put a brace on the right, not left, to group cases? – Kurt Nov 12 '12 at 0:18
Hahaha :) Well cmhughes, it was a long and tiring night... apparently. Sorry for the duplicate. – Steeven Nov 12 '12 at 14:56

1 Answer

up vote 5 down vote accepted

Use cases. Load amsmath package in the preamble as usual.

\documentclass[10pt]{article}

\usepackage{amsmath}

\begin{document}
\begin{align*}
\begin{cases}
a&=bbb\\
c&=ddddddd\\
e&=ffffffffff
\end{cases}
\end{align*}
\end{document}

Also, you can use equation* instead of align*.

Here is the output.

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.