如何显示占位符而不是等式?

如何显示占位符而不是等式?

我正在寻找类似于 endfloat 包的功能,但用于方程式。我不想显示方程式,而是想显示占位符,例如

[equation 1 here]

有人知道这样的包吗?

答案1

以下内容适用于标准equation环境,但不适用于其他数学环境:

\documentclass[a4paper]{article}
\let\oldequation\equation
\let\oldendequation\endequation
\renewenvironment{equation}
  {\setbox0=\vbox\bgroup\oldequation}
  {\oldendequation\egroup\[\hbox{[Equation \theequation\ here]}\]}
\begin{document}
\begin{equation}
x=y
\end{equation}
\end{document}

我想不出任何应用。

答案2

不确定这是否是您的意思,但您想在文档中添加提醒以便返回并在那里实际添加方程式,然后该todonotes包就会有用。

\documentclass{article}
\usepackage{todonotes}

\begin{document}
\todo[inline]{equation 1 here}
\end{document}

相关内容