逐一显示方程分量而不改变其在一般方程中的原始位置

逐一显示方程分量而不改变其在一般方程中的原始位置

我只是想知道是否有一种方法可以逐个显示方程式分量,而无需改变它们在 Latex 中的一般方程式中的原始位置。如果不清楚我的意思,我附上了一个简单的示例,希望它能展示我正在尝试做的事情。所以当我在页面之间移动时,$m cosy$ 的位置不会改变。

在此处输入图片描述

答案1

这是一个起点。

\documentclass{article}
\usepackage{amsmath}

% Important: Have a look at https://tex.meta.stackexchange.com/questions/228/.

\begin{document}

\begin{equation}
      \sin x + m \cdot \cos y + t \tan x = 1
      \label{eq:NiceEquation}
\end{equation}

I need to show the equation, \eqref{eq:NiceEquation}, in the following order.

\begin{align}
     &+ m \cdot \cos y\\
     &+ m \cdot \cos y + z \tan x = 1
\end{align}

\end{document}

在此处输入图片描述

相关内容