[Tex/LaTex] problem using option fleqn in amsmath package

alignamsmathindentation

I'm using the following code. What should I do if I don't want the fixed indent from the left margin of my page?

\documentclass[‎fleqn,oneside‎]{article}‎
‎\usepackage{amsmath}‎
....
\begin{align}
a_1& =b_1+c_1\\
a_2& =b_2+c_2-d_2+e_2
\end{align}

Best Answer

Set the length \mathindent to zero:

\setlength{\mathindent}{0pt}
Related Question