如何使用 \begin{split} 使方程式在最后一个方程式处带有标签

如何使用 \begin{split} 使方程式在最后一个方程式处带有标签

如何在方程式末尾制作方程式的标签?

而不是在方程的中间使用\begin{split}

在此处输入图片描述

我的 MWE:

\begin{equation}
\begin{split}
A =& A+ B \\
  =& A-C \\
  =& d + f -d \\
  =& 1234
\end{split}
\end{equation}


\begin{equation}
A =  1234
\end{equation}

答案1

在(类似于of )环境中DispWithArrows,您可以选择指定仅标记最后一行。witharrowsalignamsmath

您也可以使用 全局修复此选项\WithArrowsOptions{tagged-lines = last}

当然,首要的目的witharrows是在这样的对齐中添加箭头,这就是我添加箭头的原因。

\documentclass[12pt]{book}
\usepackage{witharrows}
\begin{document}
\begin{DispWithArrows}[tagged-lines = last]
A & = A+ B \\
  & = A-C \Arrow{an arrow} \\
  & = d + f -d \\
  & = 1234
\end{DispWithArrows}
\end{document}

上述代码的结果

答案2

在此处输入图片描述

如果整个文档都需要此功能,那么 asmath 的选项tbtags可以解决您的问题:

\documentclass{article}
\usepackage[tbtags]{amsmath}

\begin{document}
\begin{equation}
\begin{split}
A & = A+ B      \\
  & = A-C       \\
  & = d + f -d  \\
  & = 1234
\end{split}
\end{equation}

\begin{equation}
A =  1234
\end{equation}
\end{document}

答案3

尝试这样做:

\documentclass[12pt,twoside,draft]{book}
\usepackage{amsmath}


\begin{document}



\begin{align}\nonumber
A &= A+ B \\\nonumber
  &= A-C \\\nonumber
  &= d + f -d \\
  &= 1234
\end{align}



\begin{equation}
A =  1234
\end{equation}
\end{document}

在此处输入图片描述

相关内容