我正在尝试帮助一位需要在论文中使用 APA 格式的朋友。由于他使用了以下\footcite
命令,因此需要修改两件事:
- (书的)标题应该出现在脚注中,但默认情况下并非如此。
- 作者的名字应打印在文档末尾的完整参考书目中。
以这种方式修改 apa-style 是否有意义?如果有意义,如何实现?到目前为止,这是我所拥有的(相当基本的代码):
\documentclass[fleqn,10pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,backend=biber]{biblatex}
\bibliography{mem}
\defbibheading{bibempty}{}
\DeclareLanguageMapping{american}{american-apa}
\begin{document}
\chapter{Chapter}
\section{Section}
some text \footcite{report}
\section{References}
\printbibliography[heading=bibempty]
\end{document}
以及 mem.bib 中的任何报告参考。我是否应该查看 bbx 文件(或等效文件)以进行自定义?
答案1
APA 样式使用作者-年份(或作者-日期)引用格式,而您似乎想要作者-标题格式。所以:不,尝试biblatex-apa
按照您的喜好进行调整可能没有意义。考虑使用authortitle
biblatex 附带的样式,并用作\autocite
主要引用命令。