隐藏的方程式引用

隐藏的方程式引用

如何对方程式进行隐藏引用,以便\mathtoolsset{showonlyrefs=true}被覆盖(假设它处于活动状态)?

或者,如何暂时关闭showonlyrefs(无论是否设置)?

答案1

您可以使用命令\noeqref{<label>}。这可以确保无论 的值如何,相应的方程式都有一个数字showonlyrefs

梅威瑟:

\documentclass[a4paper,12pt]{report}

\usepackage{mathtools}
\mathtoolsset{showonlyrefs=true}

\begin{document}

\begin{equation}\label{eq:ab}\noeqref{eq:ab}
  a=b
\end{equation}
%
Some text follows
%
\begin{equation}\label{eq:bc}
  b=c
\end{equation}
%
Some text follows again
%
\begin{equation}\label{eq:dc}
  d=c
\end{equation}

\end{document} 

输出:

在此处输入图片描述

相关内容