当页面上的图形标题有脚注时,脚注编号会中断

当页面上的图形标题有脚注时,脚注编号会中断

我注意到脚注编号缺少出现在小页中的脚注。第一页上的脚注显示正确,如图所示1,图页的脚注2显示为字母而不是数字。图页后的脚注不考虑图上的页脚3。如何使脚注编号连续并且始终使用相同的样式?

\NeedsTeXFormat{LaTeX2e}
\documentclass[11pt,a4paper,final]{memoir}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{placeins}
\begin{document}
\chapter{Introduction}
\blindtext

some text
\section{Outline}
\blindtext

some text. some text\footnote{Foot note text 1}. More text

\begin{figure}[p]
    \begin{minipage}{\textwidth}
        \centering
        \includegraphics[scale=1]{red.png}
        \caption[A caption 1]{A caption 1}
        \label{fig:figure1}
        \includegraphics[scale=1]{green.png}          
        \caption[A caption 2]{A caption 2\footnote{reproduced from ... }.}
        \label{fig:figure2}        
   \end{minipage}     
    \end{figure}
\FloatBarrier

\section{Approach} \label{documentclasses}
\blindtext

some text

\begin{itemize}
\item one
\item two  
\item three
\item four 
\end{itemize}
some text\footnote{Foot note text 3}. some text\footnote{Foot note text 4}. More text \footnote{Foot note text 5}. More text
\end{document}

第二页脚注 第三页脚注

答案1

弗兰克·米特尔巴赫和迈克尔·古森斯Latex 指南第二版,Adison Wesley,2004 在第 3.2.1 节中给出了一个例子使用标准脚注作为

\noindent\ldots{} main text \ldots
\begin{center}
\begin{minipage}{.7\linewidth}
  Footnotes in a minipage are numbered using
  lowecase letter.\footnote{Inside minipage}
  \par This text references a footnote at the
  bottom of the the page.\footnotemark{}
  And another\footnote{Inside again} note.
\end{minipage}\footnotetext{At bottom of page}
\end{center}
\ldots{} main text \ldots 

这将在小页面的底部提供两个脚注(a 小页面内和 b 再次内部),并在页面底部提供一条脚注(1 在页面底部)。

基本上,LaTeX 在小页面中使用不同的编号方案和脚注位置,但如上所述,您可以按照常规编号方案将脚注放在页面底部。

无需对基本的 LaTeX 进行大量重新编码,您可以选择在小页面中使用自己的编号方案(小写字母)的脚注,或者在页面底部使用自己的编号方案(数字)的脚注。

相关内容