我希望 \eqref 显示 (1.1),而不是 (公式 1.1)

我希望 \eqref 显示 (1.1),而不是 (公式 1.1)

我对 LaTeX 不太熟悉,而且我曾在几个不同的模板文件之间徘徊。

我以前喜欢的模板

\documentclass[12pt]{amsart} 
\usepackage{amscd,amssymb,epsfig}

但我需要使用这个论文模板,据我所知,它并不是为数学而设置的,所以我添加了上面提到的包,以及amsmath

因此,当我想要显示公式引用(使用\eqref)时,文档就会显示,例如。(Equation 1.1)(1.1)

答案1

重新定义\p@equation如下应该可以解决您的问题。

\makeatletter
\renewcommand*{\p@equation}{}
\makeatother

这是一个 MWE。

\documentclass{uicthesi} 

\usepackage{amsmath}

\makeatletter
\renewcommand*{\p@equation}{}
\makeatother

\begin{document}

\begin{equation}\label{eq: myeq}
F(x) = x^2
\end{equation}

\eqref{eq: myeq}
\end{document}

在添加这些行之前:

在此处输入图片描述

后:

在此处输入图片描述

相关内容