如何减少脚注的行距

如何减少脚注的行距

我想将脚注的行距减小到小于单倍行距。

我使用以下内容来启动文档:

\documentclass[12pt,openbib]{article}
\usepackage[singlespacing]{setspace}
\usepackage[flushmargin,multiple]{footmisc}

\begin{document}

我应该添加什么来减少脚注的行距?

答案1

仅仅因为你可以做某事,就没有必要去做。我不能建议任何人做以下事情。请不要这样做。丑陋的本身无法描述结果。

texsxFootnotesLinespread

\documentclass[12pt,openbib]{article}
\usepackage[singlespacing]{setspace}
\usepackage[flushmargin,multiple]{footmisc}
\usepackage{blindtext}
\makeatletter
\def\FN@baselinestretch{.6}
\makeatother
\begin{document}
\blindtext\footnote{\blindtext}
\end{document}

相关内容