上一页出现脚注,为什么?

上一页出现脚注,为什么?

我的 MWE 部分,

\documentclass[a4paper,11pt,notitlepage]{report}

\usepackage{lipsum}
\usepackage[turkish]{babel}
\usepackage{color}
\usepackage[left=2cm,right=2cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{multicol}
\usepackage{dblfnote}

\renewcommand\thefootnote{\textcolor{red}{\arabic{footnote}}}

\begin{document}
\begin{multicols}{2}

\lipsum

\vfill
\columnbreak

\section{\textit{Project}}
\begin{itemize}
\item W\footnote{Watt}
\item SMPS\footnote{Switch Mode Power Supply}
\item A\footnote{Ampere}
\item Footnote appears on previous page.
\end{itemize}

\end{multicols}
\end{document}

并显示

在此处输入图片描述

我哪里做错了?它如何改变或增加我的 MWE?

答案1

该文件发出警告

Package multicol Warning: I moved some lines to the next page.
(multicol)                Footnotes on page 1 might be wrong on input line 26.

multicol 可以检测到已经发生的情况但无法返回去修复它。

您可以使用正确的脚注强制分页:

\documentclass[a4paper,11pt,notitlepage]{report}

\usepackage{lipsum}
\usepackage[turkish]{babel}
\usepackage{color}
\usepackage[left=2cm,right=2cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{multicol}
\usepackage{dblfnote}

\renewcommand\thefootnote{\textcolor{red}{\arabic{footnote}}}

\begin{document}
\begin{multicols}{2}

\lipsum

\vfill
\end{multicols}
\clearpage
\begin{multicols}{2}
\section{\textit{Project}}
\begin{itemize}
\item W\footnote{Watt}
\item SMPS\footnote{Switch Mode Power Supply}
\item A\footnote{Ampere}
\item Footnote appears on previous page.
\end{itemize}

\end{multicols}
\end{document}

相关内容