I'm using csquotes and writing in French. I'd like to set the quotation marks as they are in english, and I don't want to use this method ``. I tried changing the variant but it always gives me guillemets.
Here is a MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[french = quotes]{csquotes}
\begin{document}
\enquote{Bonjour}
\end{document}
Expected output :
Actual output :



\usepackage[style=english]{csquotes}should do the trick. – TivV Apr 11 '20 at 14:06frenchstyle use spaced out guillemets as outer marks. The style variantquotesuses double quotes as inner marks.", so I guess both variants look the same on this level... But as long as babel sets the language to French, csquotes will use a French quoting style anyway, so to use an English style the easiest solution that came to mind was to usestyle=english. – TivV Apr 11 '20 at 14:23\usepackage[T1]{fontenc}when typesetting French. – egreg Apr 11 '20 at 14:46