我的问题是。如何制作链接的 latex 代码,例如标题在左侧,内容显示在右侧,就像您将链接的 html 样式一样,只需单击它即可轻松访问。谢谢。我找不到任何在线 pdf 到 latex 代码的转换器。
希望得到您的回复。谢谢!
答案1
这是一个如何使用hyperref
书签/大纲的简单示例
- 如果希望在打开文档时打开书签,请使用选项
bookmarksopened=true
- 如果要将所有书签打开到 级别
subsubsection
,请使用选项bookmarkopenlevel=4
,否则使用更小甚至更大的数字。您tocdepth
还需要设置计数器。
如果\usepackage{bookmark}
使用另外的,将有一些可能性来控制书签的外观。在这种情况下,书签在第一次pdflatex
运行时就已经生成,但是 ToC 仍然需要两次运行。
\documentclass{book}
\usepackage{tocbibind} % If the ToC should be in ToC and bookmarks
\usepackage[bookmarksopen=true,bookmarksopenlevel=4]{hyperref}
\usepackage{bookmark}%
% For subsubsections to appear in ToC/bookmarks(if needed!)
\setcounter{tocdepth}{4}
\begin{document}
\phantomsection
\tableofcontents%
\chapter{First Chapter - Where it begins}
\section{Introduction}
\section{More stuff}
\subsection{Even more minor stuff}
\subsection{Other minor stuff}
\subsubsection{Going really deep}
\subsubsection{Going sideways}
\chapter{Repeating it over and over}
\section[Something different]{And now for something completely different}
\end{document}