假设你有
\documentclass{article}
\begin{document}
\section*{Methods}
Please, see Section \ref{section:lorem} for the evaluation of this topic.
\section*{Evaluation}
\label{section:lorem}
\end{document}
你会得到
Please, see Section for the evaluation of this topic.
|
two spaces so wrong and without the number
我不知道官方文件中引用文本上下文的政策是什么,因为你不能为章节提供编号。
在出版物中引用文本其他部分的格式是什么?
答案1
您可以使用\phantomsection
(from hyperref
) 在适当的位置设置锚点,并且由于没有数字可供引用,因此您可以使用\nameref
而不是\ref
:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\section*{Methods}
Please, see Section \nameref{section:lorem} for the evaluation of this topic.
\phantomsection
\section*{Evaluation}
\label{section:lorem}
\end{document}