
脚注の問題について質問があります。私のLaTeX文書は次のようになります
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{bigfoot}
\usepackage[margin=3cm]{geometry}
\usepackage[citestyle=authortitle-ibid,backend=bibtex]{biblatex}
\bibliography{literature.bib}
\usepackage{csquotes}
\renewcommand{\mkbegdispquote}[2]{\itshape}
\usepackage[bottom,para]{footmisc}
\title{Title}
\author{Author}
\date{}
\interfootnotelinepenalty=10000
\begin{document}
\maketitle
\tableofcontents
\end{document}
そして、最初の段落では、脚注の引用として
\footcite[Some text][page]{Citation}
pdflatex+biblatex+pdflatex を実行すると、最初の段落が 2 ページ目に分割されますが、脚注は 1 ページ目に残ります。どうすればこれを修正できますか?
ありがとう!