附注书目

附注书目

我正在尝试创建带注释的参考书目。这是我的.tex文档:

\documentclass[12pt]{article}
\title{Annotated Bibliography}

\begin{document}

\nocite{*}

\bibliography{annotatedbib}

\end{document}

相关文档如下.bib

@Misc{hacker,
    AUTHOR = `{Andrew Hacker'},
    TITLE = {Is Algebra Necessary?},
    HOWPUBLISHED = {New York Times},
    MONTH = {July 31},
    YEAR = {2012},
    ANNOTE = {This article was published in the New York Times.},
}

无论我将.tex文档编辑成哪种格式,注释都不会显示!我是不是遗漏了什么?

答案1

您应该使用带有注释的参考书目样式;例如annotate.bst

\begin{filecontents*}{\jobname.bib}
@Misc{hacker,
    AUTHOR = {Andrew Hacker},
    TITLE = {Is Algebra Necessary?},
    HOWPUBLISHED = {New York Times},
    MONTH = {July 31},
    YEAR = {2012},
    ANNOTATE = {This article was published in the New York Times.},
}
\end{filecontents*}
\documentclass[12pt]{article}
\title{Annotated Bibliography}

\begin{document}

\nocite{*}

\bibliographystyle{annotate}
\bibliography{\jobname}

\end{document}

请注意,字段应称为annotate,而不是annote;这是输出。filecontents*环境只是为了保持示例的独立性,您可以继续使用外部文件。

在此处输入图片描述

进行注释(使用字段annote)的另一种风格是chicago-annote需要\usepackage[authoryear]{natbib}

相关内容