奇怪的问题,但我想知道是否可以只渲染目录而不渲染下面的相关正文。是否有一个抑制命令,表示处理了某个部分但不绘制?
答案1
printtoc.tex
您可以通过准备一个文件来完成
\documentclass{book} % use the same class
\usepackage[italian]{babel} % if you use babel (same options!)
%% Add other packages that act on the page shape
%% you load in the main file
\begin{document}
\frontmatter % if you use book or similar class
%\setcounter{page}{3} % if the original toc starts page iii
\chapter{\contentsname}
\makeatletter
\input{thesis.toc}
\makeatother
\end{document}
我猜想这thesis.tex
就是你的主文件的名字。
答案2
如果您将文本放在单独的文件中,并将\include
它们放在主文件中,那么您可以使用\includeonly
它来生成目录。