方程式数字显示问题

方程式数字显示问题

我曾经\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}

相关内容