将显示模式向左移动

将显示模式向左移动

可能重复:
左对齐(到页面)显示的数学运算

我有一个文档,我想在其中使用显示模式,但希望表达式左对齐而不是居中。到目前为止,我已经能够使用以下代码做到这一点:

\begin{align*}
\[some display math\]
\end{align*}

这很麻烦。是否有一些设置可用于将所有显示数学公式左对齐?我试过了[fleqn],但这似乎只能左对齐方程和方程块,而不是任何一般的显示数学公式。

答案1

[fleqn]选项将方程式向左对齐。缩进量由长度值控制\mathindent。将其设置为零会导致方程式在左边距对齐。以下是使用的输出align*和标准显示数学方程式\[ \]

在此处输入图片描述

笔记:

代码:

\documentclass[fleqn]{article}
\usepackage{showframe}
\usepackage{amsmath}

\begin{document}
\setlength{\mathindent}{0.0pt}
\noindent
Here is the output of \verb|align|:
\begin{align*}
x &= y &\\
\sin x &\neq y +z
\end{align*}
Here is the output of display math:
\[
    \sin x \neq y +z
\]
\end{document}

相关内容