脚注内的脚注未出现(使用 Manyfoot)

脚注内的脚注未出现(使用 Manyfoot)

我正在使用manyfootwith 包KOMA,并且确实需要在脚注中使用脚注。一切都编译正常,但我的新级别的脚注没有出现!

我的 MWE:

\documentclass{scrbook}

\usepackage[para*, perpage]{manyfoot}
%\usepackage{bigfoot}
\DeclareNewFootnote[para]{A}[roman]

\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.\footnote{here a footnote\footnoteA{where???}} Aenean non neque commodo lectus porta laoreet.\footnote{here a footnote\footnoteA{where???}}  Donec eget vestibulum erat, ut semper felis. Sed faucibus, nisi vitae tincidunt mollis, augue nulla laoreet nibh, vel auctor mauris\footnote{here a footnote\footnoteA{where???}}  risus consequat tellus. Vestibulum\footnote{here a footnote\footnoteA{where???}}  sed felis vestibulum eros faucibus lacinia quis ac\footnote{here a footnote\footnoteA{where???}}  lorem. Pellentesque pulvinar\footnote{here a footnote\footnoteA{where???}}  rutrum risus quis accumsan. Nullam interdum hendrerit\footnote{here a footnote\footnoteA{where???}}  erat vel porttitor.\footnote{here a footnote\footnoteA{where???}}  Suspendisse venenatis laoreet venenatis. Quisque luctus erat at lorem malesuada,\footnote{here a footnote\footnoteA{where???}}  nec dapibus est tincidunt. Fusce a arcu nibh. Donec pretium massa sit amet\footnote{here a footnote\footnoteA{where???}}  ultricies rhoncus.\footnote{here a footnote\footnoteA{where???}}  Nulla vestibulum lacinia nisl, bibendum tincidunt neque viverra non. Mauris\footnote{here a footnote\footnoteA{where???}}  viverra tellus et metus convallis suscipit id in nisi. Mauris\footnote{here a footnote\footnoteA{where???}}  nec libero ac\footnote{here a footnote\footnoteA{where???}}  leo pharetra varius. Vestibulum suscipit, enim sed\footnote{here a footnote\footnoteA{where???}}  molestie consectetur, libero\footnote{here a footnote\footnoteA{where???}}  metus\footnote{here a footnote\footnoteA{where???}}  finibus nulla,\footnote{here a footnote\footnoteA{where???}}  pellentesque semper sapien orci id tortor. Morbi dignissim sem velit\footnote{here a footnote\footnoteA{where???}} , non convallis odio\footnote{here a footnote\footnoteA{where???}}  tincidunt vitae.\footnote{here a footnote\footnoteA{where???}}  Nullam vitae\footnote{here a footnote\footnoteA{where???}}  justo posuere, sagittis purus eu, blandit tellus.
\end{document}

我的输出:

在此处输入图片描述

答案1

我认为 manyfoot 不支持嵌套。使用 bigfoot 可以:

\documentclass{scrbook}

\usepackage{bigfoot}
\DeclareNewFootnote{default}
\DeclareNewFootnote[para]{A}[roman]

\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.\footnote{here a 
footnote\footnoteA{where???}} Aenean non neque commodo lectus porta 
laoreet.\footnote{here a footnote\footnoteA{where???}}  Donec eget vestibulum 
erat, ut semper felis. Sed faucibus, nisi vitae tincidunt mollis, augue nulla 
laoreet nibh, vel auctor mauris\footnote{here a footnote\footnoteA{where???}}  
risus consequat tellus. Vestibulum\footnote{here a 
footnote\footnoteA{where???}}  sed felis vestibulum eros faucibus lacinia 
quis ac\footnote{here a footnote\footnoteA{where???}}  lorem. Pellentesque 
pulvinar\footnote{here a footnote\footnoteA{where???}}  rutrum risus quis 
accumsan. Nullam interdum hendrerit\footnote{here a 
footnote\footnoteA{where???}}  erat vel porttitor.\footnote{here a 
footnote\footnoteA{where???}}  Suspendisse venenatis laoreet venenatis. 
Quisque luctus erat at lorem malesuada,\footnote{here a 
footnote\footnoteA{where???}}  nec dapibus est tincidunt. Fusce a arcu nibh. 
Donec pretium massa sit amet\footnote{here a footnote\footnoteA{where???}}  
ultricies rhoncus.\footnote{here a footnote\footnoteA{where???}}  Nulla 
vestibulum lacinia nisl, bibendum tincidunt neque viverra non. 
Mauris\footnote{here a footnote\footnoteA{where???}}  viverra tellus et metus 
convallis suscipit id in nisi. Mauris\footnote{here a 
footnote\footnoteA{where???}}  nec libero ac\footnote{here a 
footnote\footnoteA{where???}}  leo pharetra varius. Vestibulum suscipit, enim 
sed\footnote{here a footnote\footnoteA{where???}}  molestie consectetur, 
libero\footnote{here a footnote\footnoteA{where???}}  metus\footnote{here a 
footnote\footnoteA{where???}}  finibus nulla,\footnote{here a 
footnote\footnoteA{where???}}  pellentesque semper sapien orci id tortor. 
Morbi dignissim sem velit\footnote{here a footnote\footnoteA{where???}} , non 
convallis odio\footnote{here a footnote\footnoteA{where???}}  tincidunt 
vitae.\footnote{here a footnote\footnoteA{where???}}  Nullam 
vitae\footnote{here a footnote\footnoteA{where???}}  justo posuere, sagittis 
purus eu, blandit tellus. 
\end{document}

在此处输入图片描述

答案2

\footnotemarkA您可以在脚注内使用,但不能\footnotetextA

\documentclass{scrbook}

\usepackage[para*, perpage]{manyfoot}
\DeclareNewFootnote[para]{A}[roman]

\begin{document}
Token sentence\footnote{here a footnote\footnotemarkA}\footnotetextA{where??}.
Token sentence\footnote{here a footnote\footnotemarkA}\footnotetextA{where??}.
\end{document}

相关内容