Eu costumava \eqref
fazer referência a duas equações diferentes ( \eqref{eq1}
e \eqref{eq2}
), mas ela exibe a mesma forma estranha mostrada abaixo na imagem. Os números das equações são 1 e 2, alguma ajuda?
Responder1
Você deve definir o rótulodentro deo equation
(ou align
) ambiente, não fora:
\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}