[Tex/LaTex] Citations in small caps using Biblatex in french (APA style)

apa-stylebiblatexfrench

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!

Best Answer

If you want to change the style only for in-text citations use

\AtEveryCite{\restorecommand\mkbibnamefamily}