Latex table with notes continued.
06 Jan 2024I tried getting a table with notes going in latex again. I tried threeparttable, which I talked about in a prior post. However, I was running into some problems. Using this StackExchange answer, I finally got to something that worked well by creating two tabular entries, one on top of another. A latex MWE!
\documentclass[twocolumn]{article}
\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
\usepackage[english]{babel}
\begin{document}
\begin{table}
\caption{Great caption}
\begin{tabular}{|c | c | c | c | c | c |}
\hline
Col0 & Col1 & Col2 & Col3 & Col4 & Col5\\
\hline
\hline
A & B & C$^\dagger$ & D & E$^\dagger$ & F \\
\hline
G & H$^\ddagger$ & I & J & K & L \\
\hline
\end{tabular}
\bigskip
\begin{tabular}{ll}
$\dagger$ & Note about this item.\\
$\ddagger$ & Another note.
\end{tabular}
\label{table:great-table}
\end{table}
\end{document}
