I'm trying to help a friend who needs to use the apa-style for his dissertation. Two things should be modified since he uses the \footcite command:
1 - the title (of the book) should appear in the footnote (which is not the case by default)
2 - the authors' first names should be printed in the full bibliography at the end of the document.
Does it make sense to modify the apa-style this way? If yes, how can it be achieved?
So far here is what I have (quite basic code):
\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}
plus whatever report reference in mem.bib. Should I have a look in the bbx files (or equivalent) to customize? Thanks
