我对 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}
在添加这些行之前:
后: