例如,我有一本书的部分标签为“基地”。
我想每次在文本中输入“Bases”时创建一个超链接,而不需要输入类似的命令~\ref{}
。
答案1
为什么不简单地使用新命令?
\documentclass{article}
\usepackage{hyperref}
\usepackage{xspace}
\newcommand{\Bases}{Section~\ref{Bases}\xspace}
\begin{document}
\section{Just for example}\label{Bases}
This is the reference \Bases to the section.
This is another reference \Bases.
\end{document}
图像中未显示超链接,但其中有.pdf
:
如果你使用fancyref
包,最好sec:
在引用名称前面加上“Bases”,参见LaTeX/标签和交叉引用了解更多信息。