
@article
エントリ タイプ、natbib
引用管理パッケージ、および参考文献スタイルを使用すると、出版社がリストされませんplainnat
。どうすれば解決できますか?
以下は MWE です。タイプセットされた書誌エントリに「Elsevier」が含まれていないことに注意してください。
\documentclass{article}
\usepackage{natbib}
\usepackage{filecontents}
\begin{filecontents}{sample.bib}
@article{woodford1990optimum,
title={The optimum quantity of money},
author={Woodford, Michael},
journal={Handbook of monetary economics},
volume={2},
pages={1067--1152},
year={1990},
publisher={Elsevier}
}
\end{filecontents}
\begin{document}
\citet{woodford1990optimum}
\bibliographystyle{plainnat}
\bibliography{sample}
\end{document}
答え1
それは間違い@article
手元のエントリのエントリ タイプを使用します。@article
エントリは、学術雑誌に掲載された記事にのみ使用する必要があります。これは明らかに当てはまりません。「Handbook of Monetary Economics」は、これまでも、そしてこれからも、雑誌ではありません。
では、どうすればよいでしょうか。@incollection
エントリ タイプを に@incollection
、journal
フィールドを に変更し、不足しているフィールド ( 、、 など)booktitle
を埋め戻すと、次のようになります。editor
chapter
address
\RequirePackage{filecontents}
\begin{filecontents}{sample.bib}
@incollection{woodford1990optimum,
title = {The optimum quantity of money},
author = {Woodford, Michael},
booktitle = {Handbook of Monetary Economics, Volume~2},
editor = {Benjamin M. Friedman and Frank H. Hahn},
chapter = 20,
pages = {1067--1152},
year = {1990},
publisher = {Elsevier},
address = {Amsterdam},
}
\end{filecontents}
\documentclass{article}
\usepackage{geometry} % optional
\usepackage[authoryear]{natbib} % or, if desired, use 'numbers' option
\bibliographystyle{plainnat}
\begin{document}
\nocite{*}
\bibliography{sample}
\end{document}