如果我想引用一个段落,但不对其进行编号,我该怎么做?
目前,我正在做类似的事情:
\subsection{A}
This is where I'm referring to the paragraph, using cref.
For further information, see \cref{par:X}.
\subsection{B}
Bla bla blub
\paragraph{Paragraph header}\label{par:X}
lorem impsum dolor met sit amet whatever I don't know the rest
不幸的是,它本身只能打印出“...,参见小节 [B 的编号]”。
现在,如果我使用:
\setcounter{secnumdepth}{6}
\crefname{paragraph}{paragraph}{paragraphs}
\Crefname{paragraph}{paragraph}{paragraphs}
在序言中,我能引用段落,而不仅仅是(子(子))部分。
但是,我想使用段落作为文本中的强调,而不是实际编号的标题,这就是现在发生的情况 - 它们被编号。
因此我的问题是 - 我该如何引用我的标签,以便它呈现为“参见段落段落标题“(来自上面的例子)并且实际的段落没有分配编号?
答案1
要引用段落的标题,您可以\nameref
从 hyperref
包中使用:
\documentclass{article}
\usepackage{hyperref}
\usepackage{cleveref}
\begin{document}
\subsection{A}
This is where I'm referring to the paragraph, using cref.
For further information, see \nameref{par:X}.
\subsection{B}
Bla bla blub
\paragraph{Paragraph header}\label{par:X}
lorem impsum dolor met sit amet whatever I don't know the rest
\end{document}