如何在内容表中制作硬代码?

如何在内容表中制作硬代码?

我正在使用该pdfpages软件包将几页 pdf 添加到我的主要 LaTeX 文档中,因此我想自己为这些页面的目录添加几行。我也在使用该titletoc软件包。

我希望类似下面的方法可以起作用:

\addtocontents{toc}{Preface to 2ed \titlerule i}
\addtocontents{toc}{Preface to 1ed \titlerule ii}

用于显示

第二版前言 ................................................ i

第 1 版前言 .............................................. ii

其中“序言”和页码“i/ii”都是我自己输入的,“标题规则”应该与正在使用的一致。

有人可以帮忙吗?

答案1

我认为你的意图是这样的:

\documentclass{book}
\usepackage{pdfpages}
\begin{document}
\tableofcontents
\clearpage
\addcontentsline{toc}{chapter}{Preface to 2ed}
\includepdf{preface1}
\addcontentsline{toc}{chapter}{Preface to 1ed}
\includepdf{preface2}
\chapter{Introduction}
...
\end{document}

对于点,请参阅:更改文章文档类的目录样式

相关内容