如何在章节编号上添加超链接?

如何在章节编号上添加超链接?

我想在我的工作中添加一个章节编号的超链接。但是 Latex 告诉我errordescription

这是我的代码

\vspace{1.5pc}
\hyperlink{page.1}{\subsection{ }}
\vspace{0.5pc}

有没有办法在章节编号上添加链接,以便我只需单击它即可返回到第一页?

谢谢 :)

答案1

这确实有效,但我强烈不建议这样做。没有人希望在点击章节编号时跳转到第一页。

% arara: pdflatex

\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\Large\bfseries}{\hyperlink{page.1}{\thesection}}{1em}{}
\usepackage{blindtext}
\usepackage{hyperref}

\begin{document}
\section{Test}
\Blindtext
\section{More Testing}
\Blindtext
\section{Yet Another Test}
\Blindtext
\end{document}

相关内容