在 csquote 中标记不平衡的引号

在 csquote 中标记不平衡的引号

我习惯使用csquotes来输入普通引号\MakeOuterQuotes
每当遇到不平衡的引号时,它都会抛出一条错误消息(这是正确的!)

\documentclass{article}
\usepackage[autostyle=true]{csquotes} %autostyle=true important for biblatex-chicago
     \MakeOuterQuote{"}

\begin{document}
A balanced "quote" 
and an unbalanced" one. 
\end{document}

但是,有没有办法,不停止排版让我立即解决问题,而是让它在 PDF 中打印警告?比如一个超大的红色感叹号之类的?

我更愿意在校对时就发现打印稿上的问题,而不是每次都坐着等待然后回到源头去修复它。

相关内容