製作 AER 風格參考

製作 AER 風格參考

對於這個含糊的問題,我很抱歉,並且對此沒有 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}

相關內容