在 lscape 中使用 footmisc 的 para 选项

在 lscape 中使用 footmisc 的 para 选项

我想使用para软件包的选项footmisc来制作一个紧凑的(简短的)脚注列表。这对于常规页面很有效,但当我切换到横向模式时就会停止工作。有人知道如何在横向模式下做到这一点吗?

\documentclass[12pt]{article} 
\usepackage[german]{babel}

\usepackage{lscape}
\usepackage[para]{footmisc} 

\begin{document}

\begin{landscape} 

At vero\footnote{One.} eos\footnote{Two.} et\footnote{Three.} accusamus\footnote{Four.} et iusto odio ...

\end{landscape}

\end{document}

答案1

更改加载包的顺序:

\usepackage[para]{footmisc}
\usepackage{lscape}

如果你使用 pdflatex,你可以使用pdflscape代替lscape

相关内容