正确对齐多行文本中的两行非常长的行

正确对齐多行文本中的两行非常长的行

如何消除第二行的缩进?我希望两行彼此对齐。我曾以为两者都具有最大宽度,第一行左对齐,第二行右对齐,它们是相互对齐的,但事实并非如此:

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation*}%
\begin{multlined}%
\framebox[\linewidth]{LONG}\\%
\framebox[\linewidth]{LONG}%
\end{multlined}%
\end{equation*}
\end{document}

编辑:是的,我需要multlined

答案1

设置\multlinegap0pt(但坦率地说,我不明白为什么要这样做而不是使用其他环境(aligngather)):

\documentclass{article}
\usepackage{mathtools}

\setlength\multlinegap{0pt}

\begin{document}
\begin{equation*}%
\begin{multlined}%
\framebox[\dimexpr\linewidth-2\fboxsep\relax]{LONG} \\
\framebox[\dimexpr\linewidth-2\fboxsep\relax]{LONG}
\end{multlined}%
\end{equation*}
\end{document}

在此处输入图片描述

答案2

如果希望它们彼此对齐,请使用alignedgathered而不是multlined。或者,可能是,仅align*gather*而不是equation*与内部环境对齐。

相关内容