The default style of quotation marks in the Bibliography provided by biblatex is the US/UK style: “ ”. However, I would like to have the quotation marks in German style: „ “, but maintain my specified language (slovene).
Here is my MWE:
\documentclass[a4paper,12pt]{article}
\usepackage{filecontents}
\begin{filecontents}{bibliography.bib}
@article{article,
year = {2020},
number = {2},
author = {Someone Someone},
publisher = {Unknown University Press},
title = {The Title of the Article},
journal = {Studies of Something}
}
\end{filecontents}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in]{geometry}
\usepackage[slovene]{babel}
\usepackage[backend=biber,style=authoryear,citestyle=numeric-comp]{biblatex}
\setlength{\parindent}{1cm}
\frenchspacing
\bibliography{bibliography}
\begin{document}
\section*{Section}
I want ,,this``, not ``this''. \cite{article}
\printbibliography
\end{document}