With csquotes in the Norwegian language, quotes at the inner level will be displayed with single angle brackets, and with guillemets at the outer level.
\documentclass{article}
\usepackage[nynorsk]{babel}
\usepackage{csquotes}
\begin{document}
\enquote{Guillemets at the outer level, but \enquote{single quotation marks} at the inner level}.
\end{document}
This is a very unusual choice, and I'd like to know where the authors of csquotes got this from. I have never seen it in any Norwegian text (although it does apparently exist).
The most common way of displaying inner quotes in Norwegian, and the ones mentioned in style handbooks, is either:
- Use guillemets.
- Use singe quotation marks (as in American English).
As indicated in me MWE, I'd like to go with option 2 here. This means I need to make csquotes use guillemets for the outer level, but quotes for the inner level. How can I do that?



csquotesalso sets two levels as the max by default). – Sverre Sep 12 '15 at 14:59\DeclareQuoteStyle[sverre]{norwegian} {\guillemotleft} {\guillemotright} [0.025em] {\textquoteleft} {\textquoteright}and\ExecuteQuoteOptions{norwegian=sverre}. – moewe Sep 12 '15 at 15:04