In creating a table with a footnote, I've produced a working example that looks exactly like what I need, except for the horizontal position of the table's footnote. I'd like the footnote to be aligned with the table's bottom-rule. Any suggestions are welcome.
Code: Select all
\documentclass[12pt,letterpaper]{report}
\usepackage{booktabs}
\usepackage[top=1.0in, bottom=1.0in, left=1.0in, right=1.0in]{geometry}
\begin{document}
\begin{table}[h!]
\centering
\begin{minipage}{6.5in}
\centering
\caption{Ratio of immature skeletons, $_{15}P_{5}$, and paleodemographic estimates for HK43.}
\begin{tabular}{lccccc}
\toprule
Sample & $n_{5-19}$ & $N_{\mathrm{total}}$\footnote{Minus small children (0-4 years old)} & $_{15}P_{5}}$ & Birth rate & Growth rate\\
\midrule
Early & 28 & 126 & 0.2222 & 0.0493 & 0.0073\\
Late & 67 & 247 & 0.2713 & 0.0517 & 0.0134\\
Total & 95 & 373 & 0.2547 & 0.0491 & 0.0114\\
\bottomrule
\end{tabular}
\vspace{-7pt}\renewcommand{\footnoterule}{}
\end{minipage}
\end{table}
\end{document}
Thanks in advance.
-Trey