I use biblatex with a biber backend and the \usepackage[utf8]{inputenc} package. For some reason, references in my .bib file that contain special characters are printed in all-caps in my bibliography.
I tried replicating the effect with a MWE, however every version I tried printed the bibliography in a correct way. Does anyone know of a combination of packages that could cause this behavior?
EDIT: MWE replicating the effect
\RequirePackage{filecontents}
\begin{filecontents*}{mybib.bib}
@book{test1,
address = {City},
title = {{Öffentlichkeit}},
publisher = {Doe, Jane},
author = {Doe, Jane},
year = {1937}
}
\end{filecontents*}
\documentclass[
12pt
]{book} % The class file specifying the document structure
% Set the values for the bibliography
\usepackage[
style=apa,
backend=biber,
isbn=false,
url=true,
doi=true,
natbib=true,
eprint=false,
hyperref=true,
backref=false,
firstinits=false
]{biblatex}
\usepackage[utf8]{inputenc}
\usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography
\usepackage{xpatch}
% Set language
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{mybib.bib}
\addbibresource{mybib.bib}
\begin{document}
\textcite{test1}
\printbibliography
\end{document}

biblatexthere should not be a need to protect non-ASCII chars with curly braces, but with BibTeX (where you officially can't use non-ASCII chars) you have to surround the macros-escapes with braces (https://tex.stackexchange.com/q/57743/35864). – moewe May 14 '21 at 13:38