在我的 LaTeX 文档中,\begin{document}
我有\tableofcontents
。但是,在文档的后面,我有\includepdf[pages=-, pagecommand=\thispagestyle{fancy}]{mypdf.pdf}
。我想创建一个新的“不可见部分”,即在目录中作为正常部分出现的部分,但只是重定向到该 的第一页\includepdf
,即第 3 页。
有没有办法将自定义条目添加到目录中并链接到某个页面(如果您想知道,我确实已经hyperref
加载了)。
谢谢你!
这是一个示例文档(几乎是我所拥有的全部):
% preamble stuff
\begin{document}
% \toc command:
\tableofcontents
% more random stuff
% ...
\chapter{sample}
\section{random}
blah blah
% here is where I want a new section to be in the TOC,
% but not actually show up as a section with all of the bold/large font and stuff
% as this is a PDF document foreign to latex:
\includepdf[pages=-, pagecommand=\thispagestyle{fancy}]{mypdf.pdf}
% So the TOC section should point to the first page of mypdf.pdf,
% which would be Page 3.