我想继续\usepackage{showlabels}
一会儿
在做一些事情的时候,我发现了这个代码非常方便,但是我看到当我激活时\usepackage{showlabels}
,会出现这些问题。这可能是什么?
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\usepackage{empheq}
\usepackage{showlabels} %%<------
\begin{document}
We refer to the subequation \eqref{eq079.1} end \eqref{eq079.2} and the whole equation (\ref{eq:all}).
\begin{subequations}
\label{eq:all}
\begin{empheq}[left={\empheqlbrace\,}]{align}
&\rho = \rho+\quad \text{con}\quad \tilde{\rho}\ll\rho_{0} \label{eq079.1}
\\ \nonumber \\
&p = p_{0} + \tilde{p} \quad \text{con}\quad p_{_{0}} = \cdots\quad \text{e}\quad \tilde{p}\ll p_{0}\label{eq079.2}
\end{empheq}
\end{subequations}
\end{document}
答案1
你可以showkeys
使用
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\usepackage{empheq}
\usepackage{showkeys} %%<------
\begin{document}
We refer to the subequation \eqref{eq079.1} end \eqref{eq079.2} and the whole equation (\ref{eq:all}).
\begin{subequations}
\label{eq:all}
\begin{empheq}[left={\empheqlbrace\,}]{align}
&\rho = \rho+\quad \text{con}\quad \tilde{\rho}\ll\rho_{0} \label{eq079.1}
\\ \nonumber \\
&p = p_{0} + \tilde{p} \quad \text{con}\quad p_{_{0}} = \cdots\quad \text{e}\quad \tilde{p}\ll p_{0}\label{eq079.2}
\end{empheq}
\end{subequations}
\end{document}
看 带有 showlabels 包的 numcases 环境
:-)