Math & Science ⇒ Aligning equations to the left
-
- Posts: 4
- Joined: Sun Jun 27, 2010 11:08 am
Aligning equations to the left
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: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Aligning equations to the left
Code: Select all
\documentclass[fleqn]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
E &= mc^2
\end{align}
\end{document}
-
- Posts: 4
- Joined: Sun Jun 27, 2010 11:08 am
Re: Aligning equations to the left
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Aligning equations to the left
you could use flalign, note the & at the end of the line:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{flalign}
E &= mc^2 &
\end{flalign}
\end{document}