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}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
amsart overwrites \mathindent. It uses \normalparindent instead. However, setting \normalparindent to zero is not enough. The simplest solution would be to switch to
article and load the amsmath package as shown in the example below. 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}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