我曾经\eqref
引用过两个不同的方程式(\eqref{eq1}
和\eqref{eq2}
),但它显示出与下图相同的奇怪形状。方程式编号为 1 和 2,有什么帮助吗?
答案1
你应该定义标签之内equation
(或)环境align
,而不是外部:
\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\renewcommand{\thesection}{\Roman{section}}
\begin{document}
\section{A section}
\begin{equation} f(x)=ax^2+bx+c \end{equation}
\label{eqn:first}
See~\eqref{eqn:first} and~\eqref{eqn:second}.
\begin{equation} f(x)=ax^2+bx+c \label{eqn:second} \end{equation}
\end{document}