包 csquote 编辑 enquote 以获取单引号

包 csquote 编辑 enquote 以获取单引号

我正在使用该包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}

在此处输入图片描述

相关内容