引用文章类别中的枚举项

引用文章类别中的枚举项

我说错了,我的意思是我用的是枚举,而不是案例,抱歉。

可以给个案例参考吗?

我有\begin{enumerate}1 至 4 个案例,每个案例都相当详细。

我希望读者回顾一下案例 2,其中发生了复杂积分的求解,因为案例 2 和 4 中唯一的区别是由于变量 e 的变化而导致的 tan 和 tanh。

我尝试给该案例贴上标签,但没有用。

一个更合理的例子:

\documentclass{article}
\usepackage{amsmath, hyperref}


\begin{document}
\begin{enumerate}
\item[Case 1:]
x
\item[Case 2:]
\label{case2}
xx
\item[Case 4:]
 case~\ref{case2} 

\end{enumerate}

\end{document}

正如您所见,case一词后没有对点击的引用:

在此处输入图片描述

答案1

MWE 发布的产品

在此处输入图片描述

如果您没有收到,请检查您的日志文件是否有任何异常......

使用更新的 MWE,您会看到所有(自动)编号都被抑制,因此没有标记。您永远不应该“手动”编号。只需使用列表并自定义显示,这里我使用的enumerateenumitem较新且功能较多的版本。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath, hyperref,enumerate}

\begin{document}
\begin{enumerate}[{Case} 1:]
\item
x
\item
\label{case2}
xx
\item
 case~\ref{case2} 

\end{enumerate}

\end{document}

答案2

我不确定你对此的看法,但你问的问题可以解决。如果我没有理解你的问题,请原谅。

\documentclass{article}

\begin{document}

\begin{enumerate}
\item A \label{a}
\item B \label{b}
\item C \label{c}
\end{enumerate}

Please refer to Items~\ref{b} \& \ref{c}.

\end{document}

相关内容