我如何才能更好地对齐下面的文本?

我如何才能更好地对齐下面的文本?

我几乎总是使用

\begin{equation} 
\begin{split} 
your equation here // equation in next line
\end{split} 
\end{equation}

对齐效果非常差,文本超出了右侧边框。我该如何修复?

在此处输入图片描述

答案1

如果我正确理解了你的问题,你正在寻找的对齐显示在第二个等式中:

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{equation}
\begin{split}
\text{your equation here} \\ 
\text{equation in the next line}
\end{split}
\end{equation}

\begin{equation}
\begin{gathered}
\text{your equation here} \\
\text{equation in the next line}
\end{gathered}
\end{equation}
\end{document}

如果我理解正确的话,你的使用split就是错误的。它旨在用于类似以下的情况:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{equation}
\begin{split}
y & = \text{your equation here} \\      % observe ampersands
  & = \text{equation in the next line}  % <---
\end{split}
\end{equation}
\end{document}

在此处输入图片描述

相关内容