'@article' エントリ タイプを使用する場合、発行者はリストされません

'@article' エントリ タイプを使用する場合、発行者はリストされません

@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エントリ タイプを に@incollectionjournalフィールドを に変更し、不足しているフィールド ( 、、 など)booktitleを埋め戻すと、次のようになります。editorchapteraddress

ここに画像の説明を入力してください

\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}

関連情報