The csquotes package does this with
\MakeOuterQuote{}
. It works perfect with \MakeOuterQuote{"}
, but when using \MakeOuterQuote{'}
I get an 'invalid argument' error (as in the example below).Any help would be appreciated
Code: Select all
\documentclass{memoir}
\usepackage{csquotes}
\MakeOuterQuote{'}
\begin{document}
'This is a quotation'
\end{document}