I use french quotation marks (<< and >>) in many documents. Is there any way I can define in the style file to replace all french quotation marks by english ones?
Furthermore I'd like to have english quotation marks no matter if I type <<hello>> or "hello". Is this possible?
EDIT: I read about the package csquotes but did not manage to replace my french marks because it seems like only single characters are allowed.
\documentclass[a4paper]{article}
\usepackage{polyglossia}
\setdefaultlanguage[]{english}
\setsansfont[Ligatures=TeX,Mapping=tex-text]{Open Sans}
\setmainfont[Ligatures=TeX,Mapping=tex-text]{Open Sans}
\setmonofont[]{Consolas}
\usepackage[autostyle=true,english=british]{csquotes}
\MakeOuterQuote{"}
\MakeAutoQuote{<}{>}
\begin{document}
"An example using normal quotes"
< Example >
<<Second Example using french quotes>>
``Should look like this''
\end{document}

If I make < and >as my AutoQuote Delimiters, the original Quotation Marks are treated like nested quotations. Any suggestions to work around this?
