使用 csquotes 和 babel 自動標點符號

使用 csquotes 和 babel 自動標點符號

我正在csquotes使用美式英語來管理文件中的引用。我的程式碼基本上如下。

\documentclass{article}

\usepackage[american]{babel}
\usepackage{csquotes}

\begin{document}

This is \enquote{my splendid quote}.

\end{document}

這被渲染為:這是「我的精彩引言」。

我想要的是:這是「我的精彩引言」。

有什麼方法可以在仍在使用的同時自動化嗎\enquote?我認為這個autopunct選項可以解決問題,但顯然不行。

相關內容