从词典到文本的链接(词汇表)

从词典到文本的链接(词汇表)

我正在写一份报告。在这份报告的最后,我制作了一个词典,其中列出了我使用过的每个复杂单词。每当这些单词中的一个出现在文本中时,我都会创建一个,\hyperlink以将该单词链接到词典中的某个部分*并附上一些解释。

这些词可以在文本中出现多次,所以我希望有一些东西可以让你回到你之前阅读的地方(或者用箭头返回到你之前阅读的地方,或者显示页码,就像 backref 在参考书目中所做的那样)。

这是我想要的一个例子。

\documentclass[12pt,UKenglish]{article}
\usepackage{babel}
\usepackage{hyperref}
\usepackage{blindtext}

\begin{document}


\section{Intro}
\blindtext
\hyperlink{sec:FirstComplexWord}{first complex word}


\blindtext
\hyperlink{sec:SecondComplexWord}{second complex word}

\newpage

\blindtext
\hyperlink{sec:SecondComplexWord}{second complex word}


\blindtext
\hyperlink{sec:FirstComplexWord}{first complex word}


\newpage
%every section, subsection, ... doesn't have numbers
\section*{Lexicon}
\phantomsection
\addcontentsline{toc}{section}{Lexicon}


\subsection*{First complex word}\hypertarget{sec:FirstComplexWord}{}
\phantomsection
\addcontentsline{toc}{subsection}{First complex word}

Blabla bla

Something here to go back 

\subsection*{Second complex word}\hypertarget{sec:SecondComplexWord}{}
\phantomsection
\addcontentsline{toc}{subsection}{Second complex word}

Blabla bla

Something here to go back 

\end{document}

相关内容