可以引用句子中的一个单词吗?
例如:嗨,我喜欢\label{Word: Love}
学习,所以我问了很多问题。
我想引用上面这句话中的“爱”这个词。例如:
“我 `ref{Word: Love}` 你” 将会读作“我爱你”,但其中的“爱”是可点击的,等等。
这可能吗?
(我知道这里有一些相关的问题,但它们太复杂了,与现在的问题不同。我相信我有一个简单而切中要点的问题。)
答案1
你必须以某种方式标记你想要引用的单词:
\documentclass{article}
\usepackage[a6paper]{geometry}
\usepackage[colorlinks]{hyperref}
\makeatletter
\newcommand{\setword}[2]{%
\phantomsection
#1\def\@currentlabel{\unexpanded{#1}}\label{#2}%
}
\makeatother
\begin{document}
Some text just to see where the link will point to
Hi, I \setword{l\'ove}{Word:Love} learning so I ask a lot of questions.
\newpage
"I \ref{Word:Love} you"
\end{document}
请注意重音符号的使用,以表明它即使对于特殊字符也能起作用。