为什么脚注没有显示在文中?

为什么脚注没有显示在文中?

我在文本中有下表,其中脚注的索引发生了位移,但页面末尾的注释没有位移:

在此处输入图片描述

代码块:

\begin{table}[ht]
\caption{Configuration of SANDIA research VAWTs} % title of Table
\centering % used for centering table
\begin{tabular}{c c c c c} % centered columns (4 columns)
\hline\hline %inserts double horizontal lines
& Sandia 5-m & Simulation & Sandia 17-m & Simulation\\ [0.5ex]  
\hline % inserts single horizontal line
Rotor Diameter[m] & 5  &  5  & 17 & 17 \\ % inserting body of the table
Rotor Height[m] & ~7.3 & 7.3 & 25.1  & 25.1  \\
Number of Blades & 3 & 3 & 2 & 2 \\
Blade Length[m] & N/A  & FIND & 30.92 & FIND  \\
Swept area[m$^2$] & N/A & FIND & 284 & FIND \\
Airfoil & NACA 0012 & NACA 0012 & NACA 0015 & NACA 0015 \\
Chord[m] & 0.19/0.1 \footnotemark\footnotetext{the curved part of each blade is a NACA 0012 with a 19-cm chord while each straight section is simply steel of chord of   10-cm.In 1980 the blades where replaced with NACA 0015 airfoil\cite{sandia17}\cite{sandia5m}.} & 0.19 & 0.616/0.610 & 0.615 \\[1ex]
 % [1ex] adds vertical space
\hline %inserts single line
\end{tabular}
\label{table:nonlin} 
\end{table}

我也使用了以下方法但没有得到预期的结果:

\footnote{}\footnotetext{blablabla}

或者这个

 \footnote{blablabla}

提前致谢。

答案1

您可以使用该threeparttable包及其同名环境来排版此表及其相关脚注。我进一步建议您使用该包的规则绘制宏booktabs来获得间距合适的水平线,而无需进行任何视觉格式化。

在此处输入图片描述

\documentclass{article}
\usepackage[flushleft]{threeparttable}
\usepackage{caption,booktabs}
\begin{document}
\begin{table}[ht]
\begin{threeparttable}
\centering
\caption{Configuration of SANDIA research VAWTs}  \label{table:nonlin} 
\begin{tabular}{@{}l c c c c@{}} % centered columns (4 columns)
\toprule
& Sandia 5-m & Simulation & Sandia 17-m & Simulation\\  
\midrule
Rotor Diameter[m] & 5  &  5  & 17 & 17 \\ % inserting body of the table
Rotor Height[m] & ~7.3 & 7.3 & 25.1  & 25.1  \\
Number of Blades & 3 & 3 & 2 & 2 \\
Blade Length[m] & N/A  & FIND & 30.92 & FIND  \\
Swept area[m$^2$] & N/A & FIND & 284 & FIND \\
Airfoil & NACA 0012 & NACA 0012 & NACA 0015 & NACA 0015 \\
Chord[m] & 0.19/0.1\tnote{1} & 0.19 & 0.616/0.610 & 0.615\\ \bottomrule 
\end{tabular}
\begin{tablenotes}
\item [1] The curved part of each blade is a NACA 0012 with a 19-cm chord while each straight section is simply steel of chord of   10-cm.In 1980 the blades where replaced with NACA 0015 airfoil \cite{sandia17,sandia5m}.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document} 

答案2

尝试将\footnotetext命令放在环境之外table。例如:

\begin{document}
... 
\begin{table}
\begin{tabular}{c c c c c}
 entry1 & entry2 & entry3 & entry4\footnotemark & entry5\\
 ...
\end{tabular}
\end{table}
\footnotetext{This should show up fine now}

相关内容