私は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.
.........
投稿規定のように著者名のすぐ後に発行年が来るようにコンパイルするにはどうしたらいいのでしょうか。
植木