\eqref
2 つの異なる方程式 (\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}