Math & Science ⇒ Proper aligning of equations
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Re: Proper aligning of equations
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
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Proper aligning of equations
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Proper aligning of equations
But if you're happy typing the numbers manually, and you don't need the first equation to be on the same line as the number, you could also write something like
Code: Select all
\documentclass[fleqn]{report}
\usepackage{amsmath}
% \allowdisplaybreaks % allows for pagebreaks within an align-environment
\begin{document}
\noindent 1.
\begin{align*}
a &= b \\
c &= d
\end{align*}
2.
\begin{align*}
f(x) &= ax^2 + bx + c \\
g(x) &= 2ax + b
\end{align*}
\end{document}
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am