我需要方程 (1),然后是方程 (1.a)、(1.b) 等。但我得到的是方程 (1),然后是 (2.a) (2.b) 等。
\documentclass{llncs}
\usepackage{amsmath}
\usepackage{placeins}
\begin{document}
\begin{equation}
Result = X + \sum\limits_{i=0}^{n}Y
\end{equation}
\begin{subequations}
\begin{align}
X &= ab \\ Y &= cd
\end{align}
\end{subequations}
\end{document}
答案1
您可以使用\ref
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{subequations}\label{whatever}
\begin{gather}\tag{\ref{whatever}}
\mathrm{Result} = X + \sum\limits_{i=0}^{n}Y
\\
\begin{align}
X &= ab \\ Y &= cd
\end{align}
\end{gather}
\end{subequations}
\end{document}
请注意如何获得正确的垂直间距,而不是使用equation
和align
嵌套align
的gather
。
和 也一样llncs
。