我怎样才能引用一本“修订版”而不是常见的第十版格式的书?
答案1
我的建议:
edition = {Revised},
这种方法被认为可以“兼容”许多书目样式,而不仅仅是plainnat
下面采用的样式。例如,它还可以与apacite
引文管理包和apacite
书目样式兼容。
natbib
使用引文管理包和bib 样式的完整 MWE(最小工作示例)plainnat
:
\documentclass{article}
\begin{filecontents}[overwrite]{mybib.bib}
@book{aa:99,
author = {Anne Author},
title = {Thoughts},
publisher = {Great Press},
address = {Anytown},
year = 1999,
edition = {Revised},
}
\end{filecontents}
\usepackage{natbib}
\bibliographystyle{plainnat} % select a suitable bib style
\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document}
答案2
一种非正式的方法是将以下字段添加到 Bibtex 条目中:
note = {Revised edition},
另一种非正式的方式是将其附加到标题中
title = {My Book, Revised edition},