使用 tocbibind 在目录中包含摘要和参考资料页面

使用 tocbibind 在目录中包含摘要和参考资料页面

下面的代码将打印一个目录,其中列出了目录页、章节和子章节。目录页本身位于第 ii 页,摘要应该位于它之前,但它没有出现在目录中。另外,我如何才能将参考书目也添加到目录中?鉴于我没有使用专用的 \section{Bibliography}

\documentclass[a4paper,12pt]{scrartcl}

\usepackage{tocbibind}

\begin{document}

\newpage
\pagenumbering{roman}
\newpage
\section*{Abstract}
\newpage
\tableofcontents
\newpage

\pagenumbering{arabic}
\setcounter{page}{1}
\section{Section 1}

\subsection{Subection of Section 1}

\newpage
\printbibliography

\end{document}

答案1

当您使用KOMA-Script类时,只需替换\section*{Abstract}\addsec{Abstract}\addsec生成一个未编号的部分,该部分被添加到目录中并正确更改标题)。

要将参考书目(大概是用 生成的biblatex)包含在目录中,请使用\printbibliography[heading=bibintoc]

相关内容