表格出现在参考文献之后

表格出现在参考文献之后

目前我正在用 latex 写论文。现在我遇到了一个有趣的问题。

我使用\footcite文本中的命令通过 biblatex 获取脚注。在浮动环境中,我在同一侧也有一个表格。即使页面上有足够的空间,表格最终也会位于脚注下方。如果表格四处浮动(我的意思是浮动环境就是为此而设的),那就没问题了,但我猜它们需要一些屏障。我在软件包中设置了一个屏障placeins,但它只能确保浮动元素不会离开章节。我查看了其他一些帖子,但它们一般讨论的是表格中的脚注或表格的浮动。

这里有一些最简单的代码来检查我做了什么,我希望你能帮助我。

\documentclass[english, 12pt]{scrartcl}
\KOMAoption{
titlepage=firstiscover,
sectionentrydots=true,
captions=tableheading,
bibliography=totoc
}
\usepackage{blindtext}
\usepackage[section]{placeins}
\usepackage{setspace}
\usepackage[backend=biber,style=nature,uniquename=init]{biblatex}
\addbibresource{test.bib}

\begin{document}
\pagenumbering{arabic}
\onehalfspacing

    \section{chapter 1}
This Text includes a Footnote\footcite{eins}, a table and some blindtext to fill the Page. \blindtext

\begin{table}
\captionbelow{This is an example}
\begin{tabular}{llll}
Dies & ist & ein & Beispiel.\\\hline
Bitte & lassen & Sie & den \\
Inhalt & dieser & Tabelle & unbeachtet.
\end{tabular}
\end{table}

\printbibliography

\end{document}

答案1

正如 Mirco 在评论中所说,强制使用脚注的一个简单方法是使用包\footmisc

您需要包含的代码是\usepackage[bottom]{footmisc}

它并不完美,因为我不喜欢每次遇到问题时都包含不同的包,但它可以快速解决问题,而且到目前为止它似乎不会干扰 KOMA 脚本或 biblatex。

相关内容