当脚注中的最后一个元素时避免在引用环境后出现空行

当脚注中的最后一个元素时避免在引用环境后出现空行

有没有办法重新定义quote环境(或list一般环境),以便它不会发出空的新行。我需要在脚注中使用块引用,末尾的额外空行看起来真的很糟糕。

最小示例:

\documentclass[11pt]{article} 
\title{Minimal Usecase}
\author{Canonical Chris}
\begin{document}
\maketitle
\section{First section}
Your text goes here.\footnote{
  As my grandmother used to say:
  \begin{quote}
  Now it is time for all good people to come to the aid of their computer.
  Now it is time for all good people to come to the aid of their computer.
  Now it is time for all good people to come to the aid of their computer.  
  \end{quote}
}
And then more text goes here.\footnote{
   This footnote looks weird because the previous footnote adds that
   extra whitespace.
}
\end{document}

我更喜欢不涉及添加新包等的解决方案,因为这只是 500 页文档中的一个小问题。

相关内容