如何在单个文档中交叉引用列表中的章节和项目?

如何在单个文档中交叉引用列表中的章节和项目?

我想交叉引用文档中的部分以及列表中的某些项目。例如: \label帮助我们交叉引用部分。如果我们更新命令以提供项目中的任何项目的交叉引用,则它不适用于部分引用。但是我们如何在一个文档中同时完成这两项操作呢?

答案1

在分段命令或枚举列表方面,使用\label-没有区别。下面是一个示例,说明如何正确使用它:\ref

在此处输入图片描述

\documentclass{article}
\begin{document}
\section{A section}\label{sec:label}
Here is some text.
\begin{enumerate}
  \item An item
  \item Another item \label{enum:label}
\end{enumerate}
Reference to section~\ref{sec:label} and item~\ref{enum:label}.
\end{document}​​​

label对于更高级(甚至自动化)ref的枚举列表标记/引用,您可以enumerate使用enumitem包裹

相关内容