今天,我在对包中的一个方程进行交叉引用时遇到了问题empheq
。
我使用方程gather
中的环境empheq
,并希望标记两个方程并获得方程的交叉引用(2)
。通常的方法label
不起作用,并且包文档也没有提供令人满意的答案。是否可以实现这种交叉引用?
\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage{empheq}
\usepackage{xcolor}
\newcommand*{\p}{\partial}
\begin{document}
\begin{empheq}[box = \fcolorbox{black}{white}]{gather}\label{eq:CE1}
\frac{\p}{\p t}\int\limits_{V(t)} \rho \,\mathrm{d}V + \int\limits_{\p V(t)}\rho \mathbf{u} \cdot \mathrm{d}\mathbf{S} = 0 \\
\frac{\p \rho}{\p t} + \nabla \cdot \left(\rho \mathbf{u}\right) = 0
\end{empheq}
For incompressible flows, the equation \eqref{eq:CE1} simplifies to
\begin{equation}\label{eq:CE2}
\mathbf{\nabla} \cdot \mathbf{u} = 0
\end{equation}
\end{document}