LaTeX \tableofcontents 使用自定义指针添加自定义行

LaTeX \tableofcontents 使用自定义指针添加自定义行

在我的 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.

答案1

基本方法如下:

\documentclass{book}
\usepackage{pdfpages}
\begin{document}
\tableofcontents
\chapter{ch}
\section{sec} text
\clearpage
\addcontentsline{toc}{section}{xsec}
\includepdf{mypages}
\end{document}

附加部分

显然,如果您想要一个编号部分等,则需要指定。但是,这真的没有意义,所以希望这不是您想要的。

相关内容