This is my first post and I have some question that I cannot figure out in tabular after some search on the Internet and reference to the article by Mori.
I am going make a table like this:
Code: Select all
\documentclass{report}
\usepackage{booktabs, tabularx, multirow, array}
\setlength{\heavyrulewidth}{0.1em}
\newcommand{\otoprule}{\midrule[\heavyrulewidth]}
\begin{document}
\begin{table}[hb]
\centering
\caption{Table description here\\}%
\begin{tabular}{l c c c}\toprule%
Division & Total cases & Population & Annual rate \\%
& (1991--2004)& $\geq$ 65 yo & (/1,000,000 elderly)\\\otoprule%
New England &1639 &1891629 &61.89\\
Middle Atlantic &4307 &5480653 &56.13\\\bottomrule%
\end{tabular}
\end{table}
\end{document}
Thank you very much for your time and help.