Minimales Beispiel

Minimales Beispiel

Ich verwende jfe.bstden Bibliografiestil. Ich möchte nur das Notizformat ändern.

Insbesondere möchte ich nach jedem bibliographischen Eintrag (optional) eine Beschreibung des Papiers hinzufügen, z. B.

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

um etwas zu drucken wie


Arrow, KJ, Debreu, G., 1954. Existenz eines Gleichgewichts für eine wettbewerbsorientierte Wirtschaft. Econometrica: Journal of the Econometric Society, S. 265-290.

In diesem Artikel machen Arrow und Debrue bla bla bla …


Wobei die Beschreibung die gleiche Größe wie die Fußnoten hat. Gibt es eine einfache Möglichkeit, dies zu tun? Ich habe versucht, die .bstDatei zu ändern, aber es hat nicht funktioniert.

Minimales Beispiel

Angenommen, die Tex-Datei ist die folgende

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

Die bst-Datei finden SieHierDie Datei temp.bib enthält nur einen Eintrag

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

Die erstellte .bbl-Datei ist

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

Ich möchte die Datei jfe.bst so ändern, dass die erzeugte .bbl-Datei

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

verwandte Informationen