最小的例子

最小的例子

我正在使用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 頁。

在這篇論文中,阿羅和德布魯做了等等等等...


說明的大小與腳註的大小相同。是否有捷徑可尋?我嘗試更改該.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}

相關內容