KOMA 脚注样式和 Bigfoot 脚注样式

KOMA 脚注样式和 Bigfoot 脚注样式

我有一个文档,其中包含标准脚注命令,我使用KOMA-Script命令对其进行了更改。问题是,此标准样式会转移到我使用bigfoot包创建的新脚注级别。我不想这样,我只想获得第二级的“正常”段落样式。

这是我的 MWE:

\documentclass{scrbook}

\deffootnote{0em}{1em}{%
    \makebox[1.5em][l]{\thefootnotemark}%
}

\deffootnotemark{%
    \textsuperscript{\thefootnotemark}}

\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}

我明白了:

在此处输入图片描述

如果我把para*选项放进去bigfoot,即,\usepackage[para*]{bigfoot}我得到这个:

在此处输入图片描述

我想要的输出是“简单”段落样式(针对第二级),如下所示:

在此处输入图片描述

相关内容