很抱歉,这个问题问得含糊不清,而且没有 MWE。我想在 Overleaf 上的论文中加入 AER 样式的参考资料,但我找不到可以逐步完成该过程的资源。我完全是 LaTeX 初学者,完成这项工作非常困难。你能帮忙吗?我将不胜感激。非常感谢!
答案1
我不清楚 OP 遇到的困难是什么——如何在 .bib 文件中设置书目条目、如何指定所需的书目样式、如何执行\cite
命令,以及/或者如何运行一系列latex
命令bibtex
?我希望不是“以上所有”;在这种情况下,OP 应该更具体地说明他们遇到的障碍的性质。
假设主 tex 文件(见下文)被调用main.tex
,bib 文件被调用mybib.bib
,并且假设这两个文件中都没有语法错误,则运行
latex main
bibtex main
latex main
latex main
依次应产生以下输出:
\documentclass{article} % or some other suitable document class
% Create a sample bib file "on the fly":
\begin{filecontents}[overwrite]{mybib.bib}
@misc{ab:3001,
author = "Anne Author and Brenda Butler",
title = "Thoughts",
year = 3001,
}
\end{filecontents}
\usepackage{natbib}
\bibliographystyle{aer} % 'aer.bst' should be part of all TeX distributions
\begin{document}
\cite{ab:3001} % create a citation call-out
\bibliography{mybib} % inform BibTeX which bib file(s) to use
\end{document}