如何制作 \footnotetext{} 和 \footnotemark{} 以便脚注位于页面末尾

如何制作 \footnotetext{} 和 \footnotemark{} 以便脚注位于页面末尾

我正在使用下面的方法在表格内制作脚注。但我的脚注不在页面末尾。相反,它们粘在文本后的页面空白处。

\documentclass[a4paper,2pt]{article}
\usepackage[headheight=2pt,margin=1.5cm]{geometry}
\usepackage{manyfoot}
\usepackage{hyperref}

%==========================auto counter for textboxes
\newcounter{textfieldCount}
\newcommand{\ATextField}[2][]{%
    \stepcounter{textfieldCount}%
    \fbox{\TextField[name={textfield\thetextfieldCount},width=#2,#1]{}}
}

\begin{document}

\begin{tabular}{ p{4cm}  c p{4cm} c }

PCB 1 input Voltage (No load)\footnotemark{} & \ATextField[width=4cm]{0cm} & PCB 2 input voltage (No load) & \ATextField[width=4cm]{0cm} \\

\end{tabular}

\footnotetext{Measure voltage on the input of the PCB, not the output of the power supply.}

\break


\end{document}

脚注不在正文末尾

我怎样才能使脚注位于页面末尾?

笔记:使用\footnote在表格中不起作用所以我不能使用\footnote

相关内容