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 335 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}