
Я использую 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}
для того, чтобы напечатать что-то вроде
Эрроу, К. Дж., Дебре, Г., 1954. Существование равновесия для конкурентной экономики. Econometrica: Журнал эконометрического общества, стр. 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}