是否可以在 Latex 文件中创建内部超引用?

是否可以在 Latex 文件中创建内部超引用?

我想创建一个链接,点击后会转到指定位置的特定行或标记点。例如,我想在第一页引用第 12 页的第 5 行。

有可能创造这样的东西吗?

答案1

我认为这种hypperef用法正是您正在寻找的:

\documentclass{article}
\usepackage{hyperref}
\usepackage{lipsum}
\usepackage{xcolor}
\begin{document}
\section{First section}
\lipsum[1-10]

Some text that will occupie one line and go at least to the second. On this second line will me a label that the ref command will point at. Here it is \phantomsection\label{test}{{\color{red}HERE}}

\lipsum[1-10]

Here is the link: \hyperref[test]{Text for the link}

\end{document}

没有截图,因为你必须点击才能查看结果

相关内容