这是众所周知的:
\section{boring Hello World} \label{bHW}
但在这种情况下呢?:
\section*{boring Hello World with no section} \label{bHW_noSection}
通过上述内容,我引用了文档的最后一节,而不是文档\section*
本身。
欢迎提供提示
答案1
命名引用怎么样,即引用星号部分的名称?如果不需要链接,可以使用\nameref
或来完成!\nameref*
\documentclass{article}
\usepackage{blindtext}
\usepackage{hyperref}
\begin{document}
\section{A section}
In \textbf{\nameref*{abus}} we will see a lot of boring stuff and here's a link to it: \nameref{abus}
\blindtext[10]
\section*{A boring unnumbered section} \label{abus}
Very boring stuff
\end{document}