在我的文档中,我有一个尾注,以引文开头。我的最小工作示例如下:
\documentclass[12pt,a4paper,twoside]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{csquotes}
%Endnotes:
\usepackage{endnotes}
\usepackage{ragged2e}
%Left allign endnotes:
\renewcommand\enoteformat{%
\justify
\leftskip=1.8em
\makebox[0pt][r]{\theenmark. \rule{0pt}{\dimexpr\ht\strutbox}}%
}
\begin{document}
This is the main text\footnote{\begin{displayquote}
This is a nice quote
\end{displayquote}
This is the description of the quote}.
The main text continues.
\theendnotes
\end{document}
现在,在输出中,尾注的编号和引文之间有一个垂直空格,如下所示:
有没有好的方法可以删除这个空格?当然,我可以手动在 \begin{displayquote} 前添加合适的 \vspace{-some measure},但如果我能以更系统的方式删除这个空格就更好了。