枚举项的多个标签

枚举项的多个标签

在枚举环境中,我合并了两个之前内容过于相似的独立项目。在我的文本中,我引用了这两个项目,即使用两个不同的标签。现在它们合并了,这是一个问题:我能否以某种方式为该项目添加两个标签?

前:

\begin{enumerate}
\item bla bla \label{first} 
\item blu blu \label{second}
\item something
\item some other thing
\end{enumerate}

想要的结果:

\begin{enumerate}
\item bla bla blu \label{first} \label{second}
\item something
\item some other thing
\end{enumerate}

(但上述方法不起作用)

答案1

为了参考,没有特别的理由说明为什么不能对一个项目标签使用多个标签。

最小工作示例:

\documentclass{article}
\usepackage[textwidth=45mm]{geometry}

\begin{document}

\begin{enumerate}
\item bla bla blu \label{first} \label{second}
\item something
\item some other thing
\end{enumerate}

\noindent
Item~\ref{first} is the same as item~\ref{second} (as indeed it should be!).

\end{document}

结果:

带有重复标签的文档

相关内容