仅在添加内容之前的“shorttoc”中添加“\pagebreak”

仅在添加内容之前的“shorttoc”中添加“\pagebreak”

在我的目录中,我添加了一行来将附录与目录的其余部分分开。但是,即使是目录的简短版本(我使用软件包shorttoc— 太长了,我想\pagebreak在附录前添加一个,这样它会更有条理。

以下是我当前的简化代码:

\documentclass[12pt,a4paper]{book}

\usepackage[nottoc,numbib]{tocbibind}
\addto\captionsportuguese{
  \renewcommand{\bibname}{Referências}
  \renewcommand{\contentsname}{Índice}
}
\usepackage{shorttoc}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\pagenumbering{gobble}

\begin{document}
    \maketitle
    \shorttoc{Índice Resumido}{0}
    \tableofcontents

    ...

    \appendix
    % How to add a pagebreak here?
    \addtocontents{toc}{\bigskip\medskip\noindent\textbf{Apêndice}\par}

    ...
\end{document

相关内容