최소한의 예

최소한의 예

참고문헌 스타일을 사용하고 있습니다 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: 계량경제학회지 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 파일에는 항목이 하나만 포함되어 있습니다.

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

생성된 .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}

관련 정보