参考文献リストの書き方

参考文献リストの書き方

- ueki ichiro の投稿
返信数: 1

私はHOPOS というjournalに投稿するために2023年版のTEXで論文を書いています。
HOPOS の投稿規定には参考文献リストの例としてとして次のように書かれています。

Example references 
......

Journal Article

Burian, Richard M. 1977. “More than a Marriage of Convenience.” Philosophy of Science 44:1–42.

Browne, Janet. 2010. “Making Darwin: Biography and the Changing Representations of Charles Darwin.” Journal of Interdisciplinary History 40 (3): 347–73.

一方私は論文のtexファイルのプリアンブルと末尾に次のように書きました。

\documentclass[12pt,fleqn,a4paper]{article}
\setlength{\textwidth}{16cm}
\setlength{\oddsidemargin}{0cm}
\setlength{\evensidemargin}{0cm}
\setlength{\topmargin}{-1cm}
\setlength{\textheight}{24cm}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{setspace}
\begin{document}
......

\bibliographystyle{plain}
\bibliography{inf48}
\end{document}

ーーーーー

上記 \bibliography のinf48.bibでは文献を次のように書きました。
........

@article{Bohr1,
  author  = {Bohr, Niels},
  year    = {1913},
  title   = {On the constitution of atoms and molecules},
  journal = {\textit{Philosophical Magazine}},
  volume  = {26},
  pages   = {1-26}
}
.........

なお \bibliographystyle は、美文書作成入門第8版184ページの例では jplain ですが、英文の style が不明なのでとりあえず plain としました。

ーーーーー

texファイルを pLaTeX とBIBTEX でコンパイルして得た PDF の参考文献リストは次のようになり、
投稿規定の例では著者名のすぐ後に書くべき発行年が末尾に書かれています。
.........

References
..........

[4] Niels Bohr. On the constitution of atoms and molecules. Philosophical Magazine, 26:1–26, 1913.
.........

投稿規定のように著者名のすぐ後に発行年が来るようにコンパイルするにはどうしたらいいのでしょうか。

  植木

ueki ichiro への返信

Re: 参考文献リストの書き方

- 和田 勇 の投稿

ご質問の内容を Google Chrome ブラウザの AI-モードにて問いかけ、その解答案を参考にして検討しました。

AI モードからの抜粋した回答は以下の通り。

  • natbibパッケージで chicago を利用
  • biblatex-chicago パッケージ利用

natbibパッケージで chicago を利用

pLaTeX(or pdflatex) とBIBTEX を利用する場合の概略のコーディングは以下の通り。 ( case-1-use-natbib-with-chicago.tex 参照)

\documentclass[12pt,a4paper]{article}
\usepackage{natbib} % 著者・年(Author-Date)形式用の設定
\begin{document}
...
% 参考文献リストの出力
\bibliographystyle{chicago}
\bibliography{inf48}
\end{document}

この方法では、参考文献リストの 発行年(刊行年) 情報に (1913) のように規定とは若干異なる様式になるので 気になるのであれば、以下の差分のように cicago.bst を改造した my-chicago.bst を利用した case-2-use-natbib-with-my-chicago.tex を参考にしてください。

  --- C:/texlive/2026/texmf-dist/bibtex/bst/chicago/chicago.bst 2007-12-26 09:34:49.000000000 +0900
  +++ my-chicago.bst    2026-07-20 19:43:35.505602834 +0900
  @@ -265,12 +265,12 @@
  FUNCTION {output.year.check}
  { year empty$
        { "empty year in " cite$ * warning$ }
        { write$
  -        " (" year * extra.label *
  +        " " year * extra.label *
          month empty$
  -          { ")" * }
  -          { ", " * month * ")" * }
  +          { }
  +          { ", " * month * }
          if$
          mid.sentence 'output.state :=
        }
    if$

biblatex-chicago パッケージ利用

case-3-use-biblatex-chicago.tex を参考にしてください。

  • この方法での参考文献情報作成は bibtex ではなく biber を使います。

  • プリアンブルに \usepackage[authordate, backend=biber]{biblatex-chicago} を追加

    • (従来の \bibliographystyle や \bibliography は削除)
  • \addbibresource{inf48.bib} % 拡張子 .bib まで書く

  • 参考文献を出力したい場所に \printbibliography を記述

  • 発行年(刊行年)情報は、投稿規定通り

  • なお引用方法も場合によっては若干変更になる可能性があります。

    •  \autocite{...} でも良いかもしれません