Math & Science ⇒ how to left justify equations
-
- Posts: 17
- Joined: Fri Sep 24, 2010 8:50 pm
how to left justify equations
Somewhere I read how to position equations next to the left margin, rather than centered on the page, with align* but I can't seem to find it. Anyone else remember how? Thanks
Last edited by mikkelstuff on Thu Oct 14, 2010 6:09 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

how to left justify equations
Hi,
use the fleqn option for the amsmath package:
and control the indentation by setting \mathindent. This will affect all the equations. If the left algnment must affect only certain equations, then you'll have to use the fleqn environment provided by the nccmath package.
use the fleqn option for the amsmath package:
Code: Select all
\usepackage[fleqn]{amsmath}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
-
- Posts: 17
- Joined: Fri Sep 24, 2010 8:50 pm
Re: how to left justify equations
That's it gmedina! Many thanks.