我想我更习惯看到这样的编号——[1]。
下面让我可以编译文件,但是
\usepackage[backend=biber,style=apa,babel=other]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\addbibresource{main.bib}
\setlength\bibitemsep{1.5\itemsep}
返回结果如:
根据 Kent 和 Giles (2017) 的一项研究,在课堂上使用科技的学生教师往往会在整个教学生涯中继续使用科技工具。[http://www.citationmachine.net/apa/cite-a-book]
但在我看来,Kent 和 Giles (2017) 会在句号后面跟上,没有任何上下文(因为我打算在末尾引用数字)
这是 APA 引用的常见预期回报格式吗?或者我可以使用其他变体吗?
答案1
您所看到的是预期的。biblatex-apa
实现了美国心理学会出版手册尽可能多地使用biblatex
。
APA 格式将引用放在括号中 ( \autocite
; \parencite
) 或只将年份放在括号中,以引用代替句子的主语 ( \textcite
)。
babel
下面是 MWE 展示的带有和 的完整设置csquotes
。
\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa]{biblatex}
\addbibresource{biblatex-examples.bib}
% For older installations you may need
% \DeclareLanguageMapping{american}{american-apa}
\begin{document}
You can put citations in parentheses with \verb|\parencite|
\parencite{aristotle:poetics}. It's also possible to use \verb|\autocite|
\autocite{aristotle:poetics}.
There is also \verb|\textcite|: \textcite{aristotle:rhetoric} said something
interesting about rhetoric.
\printbibliography
\end{document}