I'm pretty new to LaTeX, but will try to be as clear as possible.
I'm writing a thesis in humanities, so quoting is quite significant for me - both in-text quotes and block quotes.
Therefore I'm using \csquotes package. But it manages to mess up my bibliography, as it shows question marks instead of quotation marks ("") for articles. Example:
The result I get with csquotes loaded : Peebles, Gustav (2010). ? The anthropology of credit and debt ? In: Annual Review of Anthropology 39.1, p. 225.
The result I get with csquotes not loaded (the result I need) : Peebles, Gustav (2010). " The anthropology of credit and debt " In: Annual Review of Anthropology 39.1, p. 225.
What I would like to know, is there an option to get the result I need with csquotes loaded as I need that functionality for my thesis.
My head of file (I need latvian as secondary language for some of the references):
\usepackage{csquotes}
\usepackage[UKenglish,latvian]{babel}
\usepackage[backend=bibtex,style=authoryear-ibid,ibidtracker=context]{biblatex}
\addbibresource{Bibliography}
Later in document I print bibliography (I load main chapters with input):
\cleardoublepage
\phantomsection
\label{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\lhead{\emph{Bibliography}}
\printbibliography
\clearpage
Any help appreciated.
csquotes, you should load it after loadingbabel. Just in case: you are writing in Latvian as your main language, right? – jon Mar 19 '15 at 00:14csquotesis polyglot but not panglot, it doesn't speak Latvian (in that it does not know how Latvian quotation marks are supposed to look like). You will have to teach it quotation mark (quotation sign) xelatex + polyglossia + csquotes, or you can set the style manually Question marks instead of quotation marks in references. – moewe Mar 19 '15 at 06:02babelmakes the language loaded last the main language of your document.biblatexdoes not support Latvian either, so if you want localisation there, you will have to provide it yourself as well, see What is the most appropriate way to configure biblatex for use with an unsupported language?. – moewe Mar 19 '15 at 06:44