我需要在 \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
使用\backmatter
和tocbibind
。请注意,您必须使用\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}