AMSTeX 目录

AMSTeX 目录

我正在使用 documentumentclass amsart。有两件事我不喜欢:

  1. 目录 (TOC) 看起来有点糟糕,有没有什么简单的方法可以改变它?我越来越喜欢它了article

  2. 如果我使用\section*{bla}它,它仍然会出现,但没有编号在目录中。我如何才能创建一个不出现在目录中的部分?

答案1

  1. 您可以使用包来定制目录,例如tocloft或者titletoc

  2. 由 Carsten 回答。如果您仍需要信息,请告诉我们。

答案2

与此同时,我解决了这个问题(在其他地方找到的

\makeatletter
\def\@tocline#1#2#3#4#5#6#7{\relax
\ifnum #1>\c@tocdepth % then omit
  \else 
    \par \addpenalty\@secpenalty\addvspace{#2}% 
\begingroup \hyphenpenalty\@M
    \@ifempty{#4}{%
      \@tempdima\csname r@tocindent\number#1\endcsname\relax
 }{%
   \@tempdima#4\relax
 }%
 \parindent\z@ \leftskip#3\relax \advance\leftskip\@tempdima\relax
 \rightskip\@pnumwidth plus4em \parfillskip-\@pnumwidth
 #5\leavevmode\hskip-\@tempdima #6\nobreak\relax
 \ifnum#1<0\hfill\else\dotfill\fi\hbox to\@pnumwidth{\@tocpagenum{#7}}\par
 \nobreak
 \endgroup
  \fi}
\makeatother

相关内容