最小限の例

最小限の例

私は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. 競争経済における均衡の存在。Econometrica: Journal of the Econometric Society、pp. 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ファイルにはエントリが1つだけ含まれています

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

関連情報