带有 bigfoot 和 (pdf)lscape 的段落式脚注

带有 bigfoot 和 (pdf)lscape 的段落式脚注

我正在使用包bigfoot来声明一种自定义类型的脚注:借助选项[para],这种新类型的脚注将被分组为一个段落。这种新类型的脚注可以与通常的类型一起使用。这在常规页面上效果很好,但在landscape模式下则不行。结果是脚注出现在单独的页面上,位置有点奇怪。我该如何让它工作?

(目标是在纵向页面上使用传统的脚注,但在横向页面上使用紧凑的脚注。)

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

\usepackage{bigfoot} 
\usepackage{pdflscape}

\DeclareNewFootnote[para]{B}

\begin{document}

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

\begin{landscape} 

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

\end{landscape}

\end{document}

答案1

错误。将定义中的lscape.sty\let行移到第一行之前。\clearpage\landscape

相关内容