I am studying chemistry at master level, and decided last semester to write some articles in LaTeX. This semester I found out I wanted to expand to write all my lab reports in LaTeX. This decision came with hours of hair-ripping

I am trying to make good tables. I have installed the Booktabs package (whose documentation is one of the best I have ever seen). This package is very good, and gets me 90 % there. However, I am not able to get my explaining text under the table. Any table should have it, and so I assume there has to be an easy way to make it! I have tried a multicolumn, but the text just goes on forever on one line and extends outside my borders. My table is a very small one, and so that will be my working example (although it may be slightly more than "minimal").
Code: Select all
\documentclass[12pt]{report}
\usepackage{booktabs}
\usepackage{textgreek}
\begin{document}
\begin{table}
\caption{Shielding of Radiation with Different Materials}
\centering
\begin{tabular}{l r r r } \toprule
\multicolumn{4}{r}{Measured sources [cps]} \\ \cmidrule(l){2-4}
Shielding Device & \textsuperscript{36}Cl & \textsuperscript{22}Na & \textsuperscript{239}Pu \\ \midrule
Unshielded & 320 & 70 & 53 \\
Paper & 70 & 69 & 0.10 \\
Glass & 0.03 & 1.4 & 0.04 \\
Thin Lead Sheet & 0.05 & 1.0 & 0.04 \\
Thick Lead Sheet & 0.05 & 0.15 & 0.04 \\ \midrule
Type of Radiation & \textbeta & \textgamma & \textalpha \\ \bottomrule
\end{tabular}
\label{tab:shielding}
\end{table}
\end{document}
I will appreciate any help on this matter.
Sincerely,
Anders