以 itemize 结尾的 \textquote 存在问题

以 itemize 结尾的 \textquote 存在问题

\textquote如果引用的句子以逐项列表结尾,如何使用?

\documentclass{book}
\usepackage[autopunct=true]{csquotes}

\begin{document}
Ducks quack \textquote{something:
\begin{itemize}
\item blah 
\item blah.
\end{itemize}}\footnote{A note}
\end{document}

在此处输入图片描述

答案1

对于这种特殊情况,您可能应该使用直接引用命令:

\documentclass{book}
\usepackage[autopunct=true]{csquotes}

\begin{document}
Ducks quack \textooquote something:
\begin{itemize}
\item blah
\item blah.\textcoquote\footnote{A note}
\end{itemize}
\end{document}

在此处输入图片描述

另一种方法是使用内联列表:

\documentclass{book}
\usepackage[autopunct=true]{csquotes}
\usepackage[inline]{enumitem}
\begin{document}
Ducks quack \textquote{something:
\begin{itemize*}
\item blah
\item blah.
\end{itemize*}}\footnote{A note}
\end{document}

在此处输入图片描述

相关内容