Math & Science ⇒ Systems of equations
Systems of equations
Specifically, I'd like the systems of equations to be numbered and to appear in a row. Is there any easy way to do this? Thanks.
- Attachments
-
- 07Test2a.pdf
- A mathematical test.
- (72.72 KiB) Downloaded 319 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: Systems of equations
or you could make it a 6x3 table if you want the (n)'s to line up at the top.
Systems of equations
you could use a combination of minipage, align and split environmets:
Code: Select all
\documentclass{article}
\usepackage[leqno]{amsmath}
\begin{document}
\begin{minipage}{.3\textwidth}
\begin{align}
\begin{split}
a &= b\\
c &= d\\
e &= f
\end{split}
\end{align}
\end{minipage}
\begin{minipage}{.3\textwidth}
\begin{align}
\begin{split}
g &= h\\
i &= j\\
k &= l
\end{split}
\end{align}
\end{minipage}
\begin{minipage}{.3\textwidth}
\begin{align}
\begin{split}
m &= n\\
o &= p\\
q &= r
\end{split}
\end{align}
\end{minipage}
\end{document}
Code: Select all
\documentclass{article}
\usepackage[leqno]{amsmath}
\begin{document}
\begin{minipage}{.3\textwidth}
\begin{align}
a &= b\\
c &= d\notag\\
e &= f\notag
\end{align}
\end{minipage}
\begin{minipage}{.3\textwidth}
\begin{align}
g &= h\\
i &= j\notag\\
k &= l\notag
\end{align}
\end{minipage}
\begin{minipage}{.3\textwidth}
\begin{align}
m &= n\\
o &= p\notag\\
q &= r\notag
\end{align}
\end{minipage}
\end{document}