为参考资料单独设一章,而不是作为上一章的一部分

为参考资料单独设一章,而不是作为上一章的一部分

我真的希望有人能帮助我。我正在书本环境中撰写我的硕士论文。我使用 apacite 作为参考书目样式,效果很好(尽管不是完美)。在整个写作过程中,我并没有太注意它。但现在突然间,参考文献成了我最后一章(结论)的一部分。参考我不明白发生了什么。有人知道该怎么办吗?我不是经验丰富的 Latex 用户,因此非常希望得到详细的解释。

提前致谢。

我的代码:

\chapter{Conclusions}\label{chapter:Conclusions}
\input{chapters/8Conclusion}


\bibliographystyle{apacite}
\bibliography{references}
\nocite{*}

\begin{appendices}
\chapter{The Dutch energy-label}\label{AppxA}
\input{Appendix/AppendixA.tex}

答案1

apacite 包裹(您可能已加载)可以选择nosectionbib使参考书目显示为\chapter

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[nosectionbib]{apacite}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{sigfridsson,
  author       = {Sigfridsson, Emma and Ryde, Ulf},
  title        = {Comparison of methods for deriving atomic charges from the
                  electrostatic potential and moments},
  journal      = {Journal of Computational Chemistry},
  year         = 1998,
  volume       = 19,
  number       = 4,
  pages        = {377-395},
  doi          = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
\end{filecontents}

\begin{document}
\tableofcontents
\chapter{Lorem}
\cite{sigfridsson}
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}

在此处输入图片描述

apacite文档解释

此外,apacite配置为,如果节位于\mainmatter文档的主要内容(用 表示),则默认采用该节。在后记(\backmatter)中,参考书目放在章节中。如果\chapter已定义但\mainmatter未定义,情况也是如此。(这可能吗?也许对于报告?)因此,该sectionbib选项仅在特定情况下有用。nosectionbib如果 已定义,则强制将参考书目作为章节\chapter。(我认为chapterbib选项会有点令人困惑,所以我坚持使用nosectionbib。)

这意味着nosectionbib如果你在\backmatter

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{apacite}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{sigfridsson,
  author       = {Sigfridsson, Emma and Ryde, Ulf},
  title        = {Comparison of methods for deriving atomic charges from the
                  electrostatic potential and moments},
  journal      = {Journal of Computational Chemistry},
  year         = 1998,
  volume       = 19,
  number       = 4,
  pages        = {377-395},
  doi          = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
\end{filecontents}

\begin{document}
\tableofcontents
\chapter{Lorem}
\cite{sigfridsson}
\backmatter
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}

相关内容