我想要文章中的 apa 参考样式。有谁能在这方面帮助我吗?我正在使用 kile 在 UBUNTU 平台上编译 LaTex 文件。
答案1
此答案改编自包含 @inbook、@article 等的两列表格书目和如何在 LaTeX 中使用 APA 6th?它还使用http://jeromyanglim.blogspot.fr/2010/03/apa-style-references-in-latex.html为您提供此 MWE:
\documentclass[a4paper]{article}
\usepackage{inputenc}
\usepackage[english,french]{babel}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{csquotes}
\usepackage{apacite}
\begin{filecontents}{\jobname.bib}
@ARTICLE{mwe2012,
author = {Smith, A. and Johnson, B. and Willians, C.},
title = {The three most common surnames in the United States of America},
journal = {Review of Useless Knowledge},
year = {2012},
volume = {8},
number = {1},
pages = {290--290}
}
@ARTICLE{mwe2011,
author = {Miller, J. and Brown, D.},
title = {Most used surnames in fake passports},
journal = {Journal of Nosense Ranks},
year = {2011},
volume = {5},
number = {3},
pages = {1--130},
pmid = {1234567},
url = {http://www.mwe.com/mwe2011},
doi = {http://dx.doi.org/10.1016/jnr.2011.01.01},
}
\end{filecontents}
\begin{document}
You can cite \cite{mwe2012} or \citeA{mwe2012} or also \citeyear{mwe2012}
You can cite \cite{mwe2011} or \citeA{mwe2011} or also \citeyear{mwe2011}
\bibliographystyle{apacite}
\bibliography{test}
\end{document}
你可以在 ubuntu 中使用以下命令进行编译:
latexmk test.tex