I use XeLaTeX to compile my documents. Now, I want to typeset diacritics both in the main document text and the bibliography. The problem is that LaTeX simply leaves out every character with a diacritic in the bibliography. Below, you find a minimal example of my problem.
Any help appreciated!
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\bibliography{Literature}
\begin{document}
S\={a}\d{m}khya \autocite{bibentry}.
\printbibliography
\end{document}
My Literature.bib:
@incollection{bibentry,
author = {Keith Boone},
editor = {Milton Malone {\"{u}}{\"{a}}},
title = {S{\={a}}{\d{m}}khya},
year = {2020}
}
inputenc, usefontspec's facilities instead Frequently loaded packages: Differences between pdfLaTeX and XeLaTeX. I will have a look at your MWE shortly, but maybe Input encoding error after upgrading from Biber 1.9 to Biber 2.1 can help you. – moewe Jan 11 '16 at 10:36\usepackage[utf8]{inputenc}with\usepackage{fontspec}everything works as it should. – moewe Jan 11 '16 at 10:47babelyou could loadpolyglossia, even though for Latin scriptsbabelcould still work. – Alenanno Jan 11 '16 at 10:50