表のすぐ下にフットノートをつけるために,minipage を使いました.ほぼ思い通りのできばえなのですが,フットノートのすぐ上の横線を消したいと思います.何か素敵な方法をご存知の方はぜひ教えてください.
\begin{table}
\centering
\begin{minipage}{4.1cm}
\begin{tabular}{c||c|c|c|}
X\footnote{A footnote}& x1 & $x2$ & x3\\ \hline
I & 1& 2& 3\\
& (.46) & &\\
II&1&2&3\\
& (.82) & &\\
\end{tabular}
\end{minipage}
\end{table}
table 環境内で,\footnoterule を再定義すればどうでしょうか。
% pLaTeX2e
\documentclass{jsarticle}
\begin{document}
本文の脚注の横線は消えない\footnote{本文はこのとおり}
\begin{table}
\renewcommand{\footnoterule}{\empty}%% 追加
\centering
\begin{minipage}{4.1cm}
\begin{tabular}{c||c|c|c|}
X\footnote{A footnote}& x1 & $x2$ & x3\\ \hline
I & 1& 2& 3\\
& (.46) & &\\
II&1&2&3\\
& (.82) & &\\
\end{tabular}
\end{minipage}
\end{table}
\end{document}
% pLaTeX2e
\documentclass{jsarticle}
\begin{document}
本文の脚注の横線は消えない\footnote{本文はこのとおり}
\begin{table}
\renewcommand{\footnoterule}{\empty}%% 追加
\centering
\begin{minipage}{4.1cm}
\begin{tabular}{c||c|c|c|}
X\footnote{A footnote}& x1 & $x2$ & x3\\ \hline
I & 1& 2& 3\\
& (.46) & &\\
II&1&2&3\\
& (.82) & &\\
\end{tabular}
\end{minipage}
\end{table}
\end{document}