I have a small issue while using Biblatex with the APA style in French. My in-text citations are in small caps and I would like to have them written normally. This issue doesn't happen when I write in English.
Can someone help me?
Here is a small example:
\documentclass[12pt,a4paper]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{csquotes}
\usepackage[T1]{fontenc}
\usepackage[backend=biber,style=apa]{biblatex}
\DeclareLanguageMapping{french}{french-apa}
\DeclareCaseLangs{french}
\addbibresource{biblio.bib}
\begin{document}
Cette référence: \textcite{Kline2016} s'affiche en majuscules.
\end{document}
This will produce "Cette référence: KLINE (2016) s'affiche en majuscules" and I would like to have "Cette référence: Kline (2016) s'affiche en majuscules".
Thanks!
\DefineBibliographyExtras{french}{\restorecommand\mkbibnamefamily}(or with older versions\DefineBibliographyExtras{french}{\restorecommand\mkbibnamelast}) – moewe May 29 '16 at 14:57\mkbibnamelastbecause they were written beforebiblatex3.3 (see Biblatex 3.3 name formatting) – moewe May 29 '16 at 15:01\AtEveryCite{\restorecommand\mkbibnamefamily}would be more appropriate. – moewe May 30 '16 at 06:16