How to write equation where all equation are in only opening curly bracket and there is no closing curly bracket and with equation number
Asked
Active
Viewed 245 times
3
1 Answers
10
I suggest you embed a
\left\{ \begin{aligned} ... \end{aligned} \right.
construct in an ordinary equation environment.
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'aligned' environment
\begin{document}
\begin{equation}
\left{
\begin{aligned}
a &= b+c \
d &= e+f \
g &= h+i \
j &= k+l
\end{aligned}
\right.
\end{equation}
\end{document}
Mico
- 506,678


casesenvironment (amsmath package). – John Kormylo Jun 05 '23 at 12:00alignedyou will get a result having them right alighted. If that's an issue, you will want to look at thealignedatenvironment. – Willie Wong Jun 05 '23 at 19:00