答え1
TeXとLaTeXでは、この^
記号は数式モードで指数を表すためにのみ使用されます。しかし、実際には「14,573.000」を1つの「第 2 の累乗」ですよね?
ブルートフォースの解決策は、 を入力することです。ただし、このアプローチでは、脚注マーカーとなるはず
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}