使用 pdflatex、bibtex、tufte-handout 类的参考书目奇异性

使用 pdflatex、bibtex、tufte-handout 类的参考书目奇异性

我使用的是 TeXLive 2017 和 tufte-handout 包。如果没有 nobib 选项,我会像往常一样在页边空白处看到引文,而且奇怪的是,在文档前面的参考资料部分中也能看到。

按照这里的建议,如果我添加 nobib 选项,我会得到第一页,其中有一个格式正确的参考文献部分,但文档内容从第 2 页开始(并且页边空白处没有参考书目条目)。我如何确保参考文献部分出现在文档的末尾?我做错了什么?

这是一个简单的例子:

\documentclass[nols,nobib,letterpaper]{tufte-handout}
\title{Radiation and risk}
\author{D. M. Wood}
\date{}
\begin{document}
\bibliographystyle{unsrt}
\bibliography{samp}
\maketitle% this prints the handout title, author, and date
Blah blah.
See \cite{Charles2007} for more details.
\end{document}

samp.bib 包含

@article{Charles2007,
author = {Charles, M W and Harrison, J D},
doi = {10.1088/0952-4746/27/3A/S11},
journal = {Journal of radiological protection : official journal of the Society for Radiological Protection},
number = {3A},
pages = {A97--109},
pmid = {17768323},
title = {{Hot particle dosimetry and radiobiology--past and present.}},
volume = {27},
year = {2007}
}

非常感谢!

答案1

\bibliography在文档开头发出了命令,它将按照您指示的位置运行。您可以尝试:

\documentclass[nols,nobib,letterpaper]{tufte-handout}
\title{Radiation and risk}
\author{D. M. Wood}
\date{}
\begin{document}
\maketitle% this prints the handout title, author, and date
Blah blah.
See \cite{Charles2007} for more details.
\bibliographystyle{unsrt}
\bibliography{samp}
\end{document}

结果:

在此处输入图片描述

相关内容