我在回忆录文档中使用了两列,当我使用 bibtex 放置参考书目时,由于某种原因,它最终会出现在下一页的右页上。我正在写一本有多个章节的书,我希望每一章都有自己的参考书目。是否可以像设置任何其他章节一样设置这样的参考书目,并使其适合文本的一般两列流,而不会在新页面上显示出来?
答案1
(以下最小示例对我来说很好用:)编辑:是的,可以在书籍章节内创建章节书目。为了方便起见,我切换到biblatex
与该类配合良好的包memoir
。请注意,在编译我的示例时,除非使用 makefile(例如 latexmk),否则您必须运行 BibTeX 多次。有关参考部分,请参阅第 3.5.4 节,有关多次运行 BibTeX,请参阅手册的第 3.10.1 节biblatex
。
\documentclass[twocolumn]{memoir}
\usepackage[refsection=chapter]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
\chapter{bla}
\section{blubb}
Some text \autocite{B02}.
\printbibliography[heading=subbibliography]
\chapter{foo}
\section{bar}
Some text \autocite{A01,B02}.
\printbibliography[heading=subbibliography]
\end{document}
(filecontents 环境仅用于将一些外部文件直接包含到示例中,以便进行编译。对于解决方案来说,它不是必需的。)