答案1
在 TeX 和 LaTeX 中,该^
符号只能在数学模式下使用,表示指数运算。但是,您实际上并不是想将“14,573.000”排版到A'次方',对吧?
强力解决方案是输入
14,573.300\textsuperscript{a}
。但是,这种方法没有利用a
脚注标记的知识。一个更好的解决方案是加载
threepartable
包并使用其\tnote
宏来排版脚注标记;标记可以是字母、数字、符号或其他任何内容。并且,使用tablenotes
环境后环境的结束tabular
来排版脚注材料本身。后一种方法的一个显著优点是,意志机制
threeparttable
会自动将环境的宽度设置tablenotes
为相关tabular
环境的宽度。
\documentclass{article}
\usepackage{booktabs}
\usepackage[flushleft]{threeparttable}
\renewcommand{\TPTtagStyle}{\itshape} % optional
\usepackage{lipsum} % for filler text
\begin{document}
%% Approach 1: The brute-force method
\begin{table}[ht!]
\caption{A table}
\centering
\begin{tabular}{@{} *{6}{c} @{}}
\toprule
ABS & \ 14,573.300\textsuperscript{a} & 3 & 4,857.767 & 40.297 & .000 \\
\midrule
\end{tabular}
\end{table}
%% Approach 2: The intelligent method
\begin{table}[h!]
\centering
\begin{threeparttable}
\caption{Another table}
\begin{tabular}{@{} *{6}{c} @{}}
\toprule
ABS & \ 14,573.300\tnote{a} & 3 & 4,857.767 & 40.297 & .000 \\
\midrule
\end{tabular}
\footnotesize
\begin{tablenotes}
\item[a]\lipsum*[2] % the footnote itself
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}