Code: Select all
\documentclass[12pt]{article}
\usepackage{a4wide} %yeah, I know it's obsolete; just until I learn how to use geometry
\usepackage{booktabs} %for top, middle and bottomline
\usepackage{multirow} %multi column and row spanning
\usepackage{rotating} %enables sidewaystable
\begin{document}
\begin{sidewaystable}[h]
\begin{tabular*}{1\textwidth}{l l l l} %notice the asterisk needed to enable manual width-setting
\toprule
\multicolumn{4}{c}{Nutritional Modes}\\
\midrule
Energy source & Reducing equivalent source & Carbon source & Name\\
\cmidrule(r){1-1} \cmidrule(l r){2-2} \cmidrule(l r){3-3} \cmidrule(l){4-4}
\multirow{4}{*}{Light {\it Photo-}} & \multirow{2}{*}{Organic -organo-} & Organic -heterotroph & Photoorganoheterotroph\\
& & Carbon dioxide -autotroph & Photoorganoautotroph \\
\cmidrule(l r){2-4}
& \multirow{2}{*}{Inorganic -litho-} & Organic -heterotroph & Photolithoheterotroph\\
& & Carbon dioxide -autotroph & Photolithoautotroph \\
\midrule
\multirow{4}{*}{Chemical compounds {\it Chemo-}} & \multirow{2}{*}{Organic -organo-} & Organic -heterotroph & Chemoorganoheterotroph\\
& & Carbon dioxide -autotroph & Chemoorganoautotroph \\
\cmidrule(l r){2-4}
& \multirow{2}{*}{Inorganic -litho-} & Organic -heterotroph & Chemolithoheterotroph\\
& & Carbon dioxide -autotroph & Chemolithoautotroph\\
\bottomrule
\end{tabular*}
\end{sidewaystable}
\end{document}