我正在使用该包csquotes
:
\usepackage{csquotes}
当我使用 时\enquote{my text here}
,我得到了双引号。如何使用 来获得单引号 \enquote{}
?
答案1
csquotes
根据语言设置预定义了样式。如果您的语言是british
,那么您将获得单引号。否则,您可以手动定义它们。您可以\DeclareQuoteStyle
按照手册第 14-15 页(texdoc csquotes
)中的说明更改它们。
\documentclass{article}
\usepackage[british]{babel}
\usepackage{csquotes}
\begin{document}
He said, \enquote{This is a quote that references \enquote{another quote}}.
\end{document}