
有人會幫我使用 APA 款式嗎?我不可能不讓它為我的一生工作。我用谷歌搜尋了一下,但似乎有一百萬個 APA 套件。我只想要一個簡單的 APA 格式,其中內文引用為:(Author, 2007),參考書目按字母順序排列。
[順便說一句,我是 LaTeX 的新手,如果我有困難或缺乏知識,我很抱歉。
這是我到目前為止所擁有的:
\documentclass{article}
\usepackage{apa6}
\usepackage[
backend=bibtex,
style=apalike,
sorting=nyt,
]{biblatex}
\bibliography{wage.bib}
\title{Title}
\author{name}
\date{14 November 2016}
\begin{document}
\nocite{*}
Hello, testing testing\footcite{ninefity}. Let's do another citation.\footcite{realwage}.
\printbibliography
\end{document}
使用相同的工資.bib 檔:
\begin{filecontents}{wage.bib}
@article{realwage,
author = "Orley Ashenfelter",
title = "Comparing Real Wage Rates",
journal = "American Economic Association",
volume = "102",
number = "2",
pages = "891--921",
year = "2012",
}
@article{ninefity,
author = "Joseph Sabia and RIchard Burkenhauser",
title = "Minimum Wages and Poverty: Will a 9.50 Federal Minimum IWage Really Help the Working Poor?",
journal = "Southern Economic Journal",
volume = "76",
number = "3",
pages = "891--921",
year = "2010",
}
@article{politics,
author = "Russell Sobel",
title = "Theory and Evidence on the Political Economy of the Minimum Wage",
journal = "Journal of Political Economy",
volume = "107",
number = "4",
pages = "891--921",
year = "1999",
}
問題似乎在於 \bibliographystyle{apalike} 指令。無論我做什麼它都拒絕閱讀。 APA 套件與 biblatex 後端不相容嗎?我需要下載特定的套件嗎?
任何和所有的幫助將不勝感激。
答案1
apa6
是一個類,而不是一個包。它應該是\documentclass{apa6}
。您應該使用\bibliography{wage}
或 \addbibresource{wage.bib}
。該風格apalike
與 biblatex 不太相配,我建議使用真正的 apa 風格與 biber。如果您希望它是兩欄文檔,則APA 6 不允許\footcite
使用一欄文檔。\documentclass[twocolum]{apa6}
這是我的工作修復
\documentclass{apa6}
\usepackage[
backend=biber,
style=apa,
sorting=nyt,
]{biblatex}
\bibliography{wage}
\title{Title}
\author{name}
\date{14 November 2016}
\begin{document}
\nocite{*}
Hello, testing testing \cite{ninefity}. Let's do another citation. \cite{realwage}.
\printbibliography
\end{document}
答案2
如果您在 biblatex 實現 APA 書目格式要求時仍然遇到困難,我建議您轉而加載套件apacite
、使用apacite
書目風格並使用 BibTeX。
你真的、真的也應該認真努力去獲得內容所有書目條目的正確性。例如,其中一本期刊的名稱是不是“美國經濟學會”;這是《美國經濟評論》。其中一位作者的姓氏是不是“伯肯豪澤”;這是「布克豪瑟」。該條目的title
欄位目前包含兩個 [2!] 附加錯誤:缺少$
符號和「iwage」而不僅僅是「wage」。而且,為什麼省略所有作者的中間名首字母?如此草率不會有什麼好結果。
\RequirePackage{filecontents}
\begin{filecontents}{wage.bib}
@article{realwage,
author = "Orley C. Ashenfelter",
title = "Comparing Real Wage Rates",
journal = "American Economic Review",
volume = "102",
number = "2",
pages = "891--921",
year = "2012",
}
@article{ninefity,
author = "Joseph J. Sabia and Richard V. Burkhauser",
title = "Minimum Wages and Poverty: Will a \$9.50 Federal Minimum Wage Really Help the Working Poor?",
journal = "Southern Economic Journal",
volume = "76",
number = "3",
pages = "891--921",
year = "2010",
}
@article{politics,
author = "Russell S. Sobel",
title = "Theory and Evidence on the Political Economy of the Minimum Wage",
journal = "Journal of Political Economy",
volume = "107",
number = "4",
pages = "891--921",
year = "1999",
}
\end{filecontents}
\documentclass{article}
\usepackage[english]{babel}
\usepackage[natbibapa]{apacite}
\bibliographystyle{apacite}
\frenchspacing
\begin{document}
\citep{ninefity}, \citep{realwage}, \citep{politics}
\bibliography{wage}
\end{document}