答案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}