I use biblatex with the csquotes and the babel package. Sometimes words in titles are set in qoutation marks. Normally I use \enquote for quotation marks. I want the style of the quotation marks in the bibliogaphy depent on the langid field. How can I achieve that?
Minimal example
\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english, ngerman]{babel}
\usepackage[autostyle=true]{csquotes}
\usepackage[style=apa, autolang=hyphen]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Book{Maximini2018,
author = {Dominik Maximini},
title = {Scrum -- Einführung in der Unternehmenspraxis: Von \enquote{starren} Strukturen zu agilen Kulturen},
year = {2018},
publisher = {Springer},
address = {Berlin},
langid = {ngerman},
}
@Book{SchwaberSutherland2017,
author = {Schwaber, Ken and Sutherland, Jeff},
title = {The Scrum Guide\textsuperscript{TM}: The \enquote{Definitive} Guide to Scrum: The Rules of the Game},
year = {2017},
langid = {english},
url = {https://www.scrumguides.org/docs/scrumguide/v2017/2017-Scrum-Guide-US.pdf},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}



landidtolangid– julianre Oct 11 '18 at 08:22