目标是使所有跨行的文本与等号对齐。如果我使用
\usepackage{amsmath}
在我的序言中,然后使用
align*
它将与等号对齐,但有一个我不想要的左缩进(我希望我的文本左对齐)。我发现
flalign*
(再次使用
\usepackage{amsmath}
在序言中),但它不起作用,因为我发现的示例可以工作 - 文本没有左对齐。我想知道这是否与 \text 有关?
这是我发现的有效示例:
\documentclass{article}
\usepackage{showframe}
\usepackage{amsmath}
\begin{document}
\begin{flalign*}
\cos\theta_1 \cos\theta_2-\sin\theta_1\sin\theta_2 &= \cos(\theta_1 +\theta_2) &\\
\sin\theta_1 \cos\theta_2 + \cos\theta_1 \sin\theta_2 &= \sin(\theta_1+\theta_2) &
\end{flalign*}
\end{document}
现在,我真正想要的是左对齐,但却不起作用:
\documentclass{article}
\usepackage{showframe}
\usepackage{amsmath}
\begin{document}
\begin{flalign*}
C_C = &\text{ those indices from the set of $k$ where $V$ and $W$ are both observed (i.e.} \\
&\text{ ``completers")}
\end{flalign*}
\end{document}
再次重申,我无法发布我的结果图片。
我希望C_C
完全左对齐。这是否与我的表达式有关\text
,我发现有效的示例中没有使用该表达式?
答案1
工作示例在每行末尾都有 & 符号,而您的示例没有。要获得C_C
左对齐,请尝试此操作。
\documentclass{article}
\usepackage[a4paper]{geometry}
\usepackage{amsmath}
\begin{document}
\noindent The quick brown fox jumps over the lazy dog.
\begin{flalign*}
C_C = &\text{ those indices from the set of $k$ for which $V$ and $W$ are both observed (i.e.} &\\
&\text{``completers'')}&
\end{flalign*}
\end{document}
答案2
使用
\usepackage[fleqn]{amsmath}
\mathindent=0pt