\bibliography(使用 BibTeX)和 \end{document} 之间的部分

\bibliography(使用 BibTeX)和 \end{document} 之间的部分

我需要在 \bibliography{name.bib} 之后和 \end{document} 之前包含三个部分

我如何显示:目录中的参考书目及其后的三个部分没有章节號?

达维德

您可以在这里找到 MWE:

\documentclass[a4paper,12pt,openright,twoside,titlepage]{book}
\usepackage[dutch,english]{babel}
\begin{document}
\tableofcontents
\include{chap1.tex}
....
\include{chapN.tex}
\appendix
\include{AppA}
\include{AppB}
\bibliographystyle{unsrt}
\bibliography{Davide.bib}
\include{Summary}
\include{Aknow}
\include{CV}
\end{document}

而不是不显示(参考书目)或显示为进一步的附录? 在此处输入图片描述

答案1

使用\backmattertocbibind。请注意,您必须使用\chapter而不是\chapter*\include当然可以使用 ,但为了让示例自成体系,我在这里没有这样做。

\documentclass[a4paper,12pt,openright,twoside,titlepage]{book}
\usepackage[nottoc]{tocbibind}

\usepackage{kantlipsum} % for dummy content

\begin{document}

\frontmatter
\tableofcontents

\mainmatter

\chapter{One}
\nocite{*} % to fill a bibliography
\kant[1-12]

\chapter{Two}
\kant[1-12]

\appendix
\chapter{App One}
\kant[1-5]

\chapter{App Two}
\kant[1-5]

\backmatter
\bibliographystyle{unsrt}
\bibliography{valient} % one I have here

\chapter{Summary}
\kant[1-2]

\chapter{Acknowledgment}
\kant[1]

\end{document}

在此处输入图片描述

相关内容