我正在使用jfe.bst
书目样式。我只想更改注释格式。
特别是,在每个书目条目之后,我想添加(可选)论文描述,例如
\bibitem[{Arrow and Debreu(1954)}]{arrow_1954}
Arrow, K.~J., Debreu, G., 1954. Existence of an equilibrium for a competitive
economy. Econometrica: Journal of the Econometric Society pp. 265--290.
\\[5pt] {\footnotesize In this paper Arrow and Debrue do blah blah blah}
为了打印类似
Arrow, KJ, Debreu, G.,1954 年。《竞争经济中均衡的存在性》。《计量经济学:计量经济学会杂志》第 265-290 页。
在本文中 Arrow 和 Debrue 做了一些无聊的事情......
描述与脚注的大小相同。有没有简单的方法可以做到这一点?我尝试更改文件,.bst
但无法使其正常工作。
最小示例
假设 tex 文件如下
\documentclass[10pt, a4paper]{article}
\usepackage{natbib}
\begin{document}
\citet{arrow_1954} does that.
\bibliography{temp} %use a bibtex bibliography file refs.bib
\bibliographystyle{jfe} %use the plain bibliography style
\end{document}
可能会找到 bst 文件这里. temp.bib 文件仅包含一个条目
@article{arrow_1954,
title={Existence of an equilibrium for a competitive economy},
author={Arrow, Kenneth J and Debreu, Gerard},
journal={Econometrica: Journal of the Econometric Society},
pages={265--290},
year={1954},
publisher={JSTOR},
note = {The paper is about that and that and shows that}
}
生成的.bbl 文件是
\begin{thebibliography}{1}
\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi
\bibitem[{Arrow and Debreu(1954)}]{arrow_1954}
Arrow, K.~J., Debreu, G., 1954. Existence of an equilibrium for a competitive
economy. Econometrica: Journal of the Econometric Society pp. 265--290, the
paper is about that and that and shows that.
\end{thebibliography}
我想更改 jfe.bst 文件,以便生成的 .bbl 文件成为
\begin{thebibliography}{1}
\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi
\bibitem[{Arrow and Debreu(1954)}]{arrow_1954}
Arrow, K.~J., Debreu, G., 1954. Existence of an equilibrium for a competitive
economy. Econometrica: Journal of the Econometric Society pp. 265--290.
\\[5pt] \footnote{The paper is about that and that and shows that}
\end{thebibliography}