
Estou usando jfe.bst
o estilo bibliográfico. Eu só quero alterar o formato da nota.
Em particular, após cada entrada bibliográfica quero adicionar (opcionalmente) uma descrição do artigo, por exemplo
\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}
para imprimir algo como
Arrow, KJ, Debreu, G., 1954. Existência de equilíbrio para uma economia competitiva. Econometrica: Journal of the Econometric Society pp.
Neste artigo, Arrow e Debrue fazem blá, blá, blá...
Onde a descrição tem o mesmo tamanho das notas de rodapé. Existe uma maneira fácil de fazer isso? Tentei alterar o .bst
arquivo, mas não consegui fazê-lo funcionar.
Exemplo Mínimo
Suponha que o arquivo tex seja o seguinte
\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}
O arquivo bst pode ser encontradoaqui. O arquivo temp.bib contém apenas uma entrada
@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}
}
O arquivo .bbl produzido é
\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}
Quero alterar o arquivo jfe.bst para que o arquivo .bbl produzido seja
\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}