I would like to left align all my question. Alignment should match new paragraph. Currently I have this.
Code: Select all
\documentclass[12pt,oneside,reqno,fleqn]{amsart}
\setlength{\mathindent}{0pt}
Any suggestions?
Regards,
august_month
Code: Select all
\documentclass[12pt,oneside,reqno,fleqn]{amsart}
\setlength{\mathindent}{0pt}
NEW: TikZ book now 40% off at Amazon.com for a short time.
\mathindent
. It uses \normalparindent
instead. However, setting \normalparindent
to zero is not enough. The simplest solution would be to switch to Code: Select all
\documentclass[12pt,oneside,reqno,fleqn]{article}
\usepackage{amsmath}
\usepackage{blindtext}
\setlength{\mathindent}{\parindent}
\begin{document}
\begin{align}
y_1=ax_1+b\\
y_2=ax_2+b
\end{align}
\blindtext
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.