Eu tenho uma tabela e parte do número dentro tem algum símbolo como * e ** que deve ser explicado como rodapé (no final da tabela, não na página). Não sei como fazer isso e não quero alterar meu código meu código fica assim
\begin{table}[h]
\caption {\bf Performance at First Doubles Matches} % title name of the table
\centering % centering table
\begin{tabular}{l c c c } % creating 4 columns
\hline
% here is the info
\hline
% I need the foot note here ( I dont know if it is called fotenote or not ??) but I need the related info at the end of the table
\end{tabular}
\label{tab:PPer}
\end{table}
Responder1
Sem alterar o código:
Adicione uma linha extra na parte inferior, mescle as células \multicolumns
e coloque a nota de rodapé manualmente, ou seja, formate-a com texto sobrescrito e nota de rodapé. UM MWE (Atenção! Espaçamento feio):
\documentclass{article}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{lccc} % creating 4 columns
\hline \\
test & test & test & test\textsuperscript{*} \\ % here is the info
\hline
\multicolumn{4}{l}{\textsuperscript{*}\footnotesize{The footnote}}
\end{tabular}
\caption{\textbf{Performance at First Doubles Matches}} % title name of the table
\label{tab:PPer}
\end{table}
\end{document}
Observação!!:Por favor, use o pacoteguias de livrospara obter espaçamentos e linhas melhores.
Um MWE embelezado_
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{@{}lccc@{}} % creating 4 columns
\toprule
\textbf{H1} &\textbf{H2} & \textbf{H3} & \textbf{H4} \\ \midrule
testtest & test & testtest & testtesttesttest\textsuperscript{*} \\ % here is the info
testtest & test & testtest & testtesttesttest\textsuperscript{**} \\
testtest & test & testtest\textsuperscript{***} & testtesttesttest \\\midrule
testtest & test & testtest & testtesttesttest\\
testtest & test & testtest & testtesttesttest\\ \midrule[.5pt]
\multicolumn{4}{l}{\textsuperscript{*}\footnotesize{The first footnote}}\\
\multicolumn{4}{l}{\textsuperscript{**}\footnotesize{The second footnote}}\\
\multicolumn{4}{l}{\textsuperscript{**}\footnotesize{The third footnote}}
\end{tabular}
\caption{\textbf{Performance at First Doubles Matches}} % title name of the table
\label{tab:PPer}
\end{table}
\end{document}
Alterando o código
Use o pacotethreeparttable
, ou use o pacotelongtable
, que oferece suporte a notas de rodapé e pode ser usado mesmo se a tabela não abranger páginas. Você tem que mudar seu código, no entanto.
Responder2
Aqui está um exemplo usandomesa tripartida:
\documentclass{standalone}
\usepackage{mathtools}
\usepackage{threeparttable}
\usepackage{standalone}
\usepackage{booktabs, dcolumn}
\newcommand\mc[1]{\multicolumn{1}{c}{#1}}
\begin{document}
%\begin{table}
\begin{threeparttable}
\caption{Data from the experiment}
\label{tab:data}
\begin{tabular}{c D{.}{.}{2.3} D{-}{{}-{}}{2.2} D{-}{\text{--}}{1.2} }
\toprule
Test & \mc{Number} & \mc{Difference} & \mc{Interval}\\
\midrule
t&12.3 & \beta_3-\beta_2 & 2-6 \\
e&4.567 & \beta_4-\beta_3 & 7-8\tnote{\textdagger} \\
\addlinespace
s&8.90 & \beta_5-\beta_4 & 9-17 \\
\midrule
t&10.11 & \beta_6-\beta_5 & 1-17 \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\item[\textdagger] and all other cyclic permutations
\end{tablenotes}
\end{threeparttable}
%\end{table}
\end{document}
Fiz este exemplo como um lembrete para mim mesmo e ele demonstra mais do que você precisa (bom espaçamento, alinhamento de símbolos, ...), mas deve ser fácil ver o que é relevante para você.
Responder3
Dê uma olhada no pacote ctable. Se você fizer um exemplo completo contendo esses *'s (não vejo nenhum aqui) podemos tentar adaptá-lo. Você obterá algo como:
\documentclass[a6paper]{article}
\usepackage{ctable,geometry}
\begin{document}
\ctable[
caption = {\bf Performance at First Doubles Matches},
label = tab:PPer,
pos = h
]{l c c c}{
\tnote[*]{my first footnote}
\tnote[**]{my second footnote}
}{\FL
123\tmark[*] & 345 &456&567\NN
123 & 345 &456&567\tmark[**]\LL
}
\end{document}
Responder4
Se você não precisa de marcas diferentes dos contadores usuais, um método simples é incluir a tabela em uma minipágina. Por padrão as marcas serão a,b,c ... em vez de 1,2,3... mas o exemplo mostra como mudar para outros contadores, incluindo o contador numérico do texto normal (provavelmente inútil, eu sei. ..)
\documentclass{article}
\begin{document}
Text before a table\footnote{A normal foot page note} \par
\bigskip
\begin{minipage}{1\columnwidth}%
\renewcommand\footnoterule{ \kern -1ex}
\begin{tabular}{lll}
\hline
aaa\footnote{First normal (alphabetic) foot table} & aaa & aaa\\
aaa & aaa & aaa\footnote{Another table note}\\
aaa & \footnote{One more}aaa & aaa\\
aaa\footnote{Last footnote} & aaa & aaa\\
\hline
\end{tabular}\\%
\end{minipage}
\bigskip
\begin{minipage}{1\columnwidth}%
\renewcommand\footnoterule{ \kern -1ex}
\renewcommand{\thempfootnote}{\fnsymbol{mpfootnote}}
\begin{tabular}{lll}
\hline
aaa\footnote{First customized (fnsymbol) foot table} & aaa & aaa\\
aaa & aaa & aaa\footnote{Another table note}\\
aaa & \footnote{One more}aaa & aaa\\
aaa\footnote{Last footnote} & aaa & aaa\\
\hline
\end{tabular}\\%
\end{minipage}
\bigskip
\begin{minipage}{1\columnwidth}%
\renewcommand\footnoterule{ \kern -1ex}
\renewcommand{\thempfootnote}{\Roman{mpfootnote}}
\begin{tabular}{lll}
\hline
aaa\footnote{First customized (Roman) foot table. Try also roman y Alph styles} & aaa & aaa\\
aaa & aaa & aaa\footnote{Another table note}\\
aaa & \footnote{One more}aaa & aaa\\
aaa\footnote{Last footnote} & aaa & aaa\\
\hline
\end{tabular}\\%
\end{minipage}
\bigskip
\begin{minipage}{1\columnwidth}%
\renewcommand\footnoterule{ \kern -1ex}
\renewcommand{\thempfootnote}{\arabic{mpfootnote}}
\begin{tabular}{lll}
\hline
aaa\footnote{Independentlly numbered foot notes. } & aaa & aaa\\
aaa & aaa & aaa\footnote{Another table note}\\
aaa & \footnote{One more}aaa & aaa\\
aaa\footnote{Last footnote} & aaa & aaa\\
\hline
\end{tabular}\\%
\end{minipage}
\bigskip
\bigskip
\begin{minipage}{1\columnwidth}%
\renewcommand\footnoterule{ \kern -1ex}
\begin{tabular}{lll}
\hline
aaa & aaa {\scriptsize\footnotemark} & aaa\\
aaa & aaa & aaa \\
aaa & aaa & aaa{\scriptsize\footnotemark}\\
aaa & aaa & aaa\\
\hline
\end{tabular}\\%
\scriptsize\footnotemark[2]{Foot note numbered as normal page notes} \\
\hspace{2em}\scriptsize\footnotemark[3]{Another note}
\end{minipage}
\bigskip
Text after a table\footnote{Another page note}
\end{document}