ref/label 的使用:标签编号前还有链接词

ref/label 的使用:标签编号前还有链接词

我能否通过 \ref 扩展指向我生成的内容的链接,并在 \ref 之前加上 standing 一词作为标签?如果我这样写:

For further information, have a look into chapter \ref{chap:abc} and figure \ref{fig:def}

那么唯一“可点击”的是章节号和图号。是否可以将单词“章节”和“图”也链接到这些对象?

答案1

以下内容至少适用于cleveref

\documentclass{article}

\usepackage{hyperref}
\usepackage{cleveref}
\crefformat{section}{#2section~#1#3}
\Crefformat{section}{#2section~#1#3}

\begin{document}
   \section{Dummy-Section} \label{sec:dummy}
   This is a dummy-section. This is a reference to \cref{sec:dummy}.
\end{document}

答案2

看一下hyperref包裹:https://ctan.org/pkg/hyperref

相关内容