Graphics, Figures & TablesSeveral Alignments in a Table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
casperyc
Posts: 50
Joined: Thu Oct 15, 2009 11:23 pm

Several Alignments in a Table

Post by casperyc »

Hi all,

I am trying to reproduce a table, as much as I can to keep the original format.

Code: Select all

\documentclass[a4paper,10pt]{article}

\usepackage{amsmath,setspace}
\usepackage{threeparttable}
\usepackage{multirow}

\begin{document}

\begin{threeparttable}[!htb]
	\centering
	\begin{tabular}{ccccccc}
	\multirow{2}{*}{Freq}
	&
	\multirow{2}{*}{Obs}
	&
	\multirow{2}{*}{Schnabel MLE}
	&
	\multirow{2}{*}{Schumacher \& Eschmeyer}
	&
	\multicolumn{2}{c}{Geometric Model}
	&
	Poisson Model\\
	& & & & Regression & MLE & MLE \\
	(1) & (2) & (3) & (4) & (5) & (6) & (7) \\
	\hline
	0 & 55.1\tnote{$\dagger$} & 1.9 & 1.7 & 25.4 & 34.4 & 4.0 \\
	1 & 23 & 8.7(23.50) & 7.5(32.03) & 19.2(0.75) & 23.3(0.004) & 11.9(10.35) \\
	2 & 14 & 16.6 (0.41) & 15.3 (0.11) & 14.6 (0.02) & 15.8 (0.21) & 17.4 (0.66) \\
	3 & 9 & 19.1 (5.34) & 18.4 (4.80) & 11.0 (0.36) & 10.7 (0.27) & 17.2 (3.91) \\
	4 & 6 & 14.7 (5.15) & 14.7 (5.15) & 8.3 (0.64) & 7.2 (0.20) & 12.6 (3.46) \\
	5 & 8 & 7.9 (0.001) & 8.4 (0.02) & 6.3 (0.46) & 4.9 (1.96) & 7.4 (0.05) \\
	6 & 7 
		& \multirow{4}{*}{ $\Biggl \rbrace$ 4.1(15.22)}
		& \multirow{4}{*}{ 4.6(11.90)}
		& \multirow{4}{*}{ 12.6(0.03)}
		& \multirow{4}{*}{ 10.1(0.36)}
		& \multirow{4}{*}{ 5.5(7.68) } \\
	7 & 3 & \\
	8 & 0 & \\
	9 & 2 \\
	$\hat{N}$ & 127.1$\pm$40.6 & 73.0 & 70.6 & 97.4 & 106.4 & 76.0 \\
	\hline
	\end{tabular}
	%
	\begin{tablenotes}
		\item[$*$]
			Chi--square criteria were computed by fitting the observed values to distributions derived for the models, using the individual population estimates. Criteria were not computed for the estimated numbers in the zero class because suitable criteria were not available. Chi--square criteria were computed as $(O-E)^2/E$.
		\item[$\dagger$]
			Derived using population estimate obtained using the Lincoln Index (Davis 1963:107) method based on the occurrence of marked squirrels taken by hunters.
	\end{tablenotes}
\end{threeparttable}

\end{document}
Mainly two issues. Firstly, how do I get the decimal alignment as shown in the picture ( original table ). Secondly, the footnotes seem to be to big. Lastly, the 'multirow' brace.

Among with other details if you can help.

Thanks.

casper
Attachments
Original table (target format).
Original table (target format).
squirrels.png (66.91 KiB) Viewed 1882 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply