我正在用 latex 写一些方程式
\begin{dmath}
equation
\end{dmath}
默认情况下,方程式居中。我想将方程式从页面左侧开始对齐。我该怎么做?
答案1
您需要将其传递fleqn
给文档类。您也可以选择使用它\mathindent
来调整缩进。
\documentclass[preview,border=12pt,fleqn]{standalone}% change this line back to your own document class (article).
\setlength{\mathindent}{2cm}% you can set it back to 0cm (the default).
\begin{document}
Don't be a lukewarm. If you cannot be the best,
\[
E\ne mc^2
\]
be the worst!
\end{document}