证明步骤,方程混淆

证明步骤,方程混淆

因此,如果我想在多个位置列出证明步骤,如果我使用

 \begin{align} 
 fdsfdsf \\
 dsfds \\
 \end{align}

  blah blah 

 \begin{align}
 dsfdsf \\
 dsfds \\
 \end{align}

或者甚至使用公式而不是对齐,数字怎么会继续?所以我第一次使用它时我的步骤将是 1-3,然后下次我使用对齐或公式时它会从步骤 4 开始?

我怎样才能让它重新开始步骤中的数字?

谢谢!

答案1

将其设置在a中\vbox并保存。

\documentclass{article}
\usepackage{amsmath}
\newsavebox{\myproof}
\begin{document}
\savebox{\myproof}{\vbox{%
 \begin{align}
 dsfdsf \\
 dsfds \\
 \end{align}}}
Here is my proof:

\noindent\usebox{\myproof}

and here is other stuff

 \begin{align}
 other \\
 stuff \\
 \end{align}

and here it the proof again

\noindent\usebox{\myproof}
\end{document}

在此处输入图片描述

相关内容