Created
January 13, 2015 14:22
-
-
Save dantalus/2f571db27ead7ce08aab to your computer and use it in GitHub Desktop.
Basic LaTeX table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{booktabs} | |
\usepackage{caption} | |
\usepackage{array} | |
\usepackage{float} | |
\usepackage[cm]{fullpage} | |
\begin{document} | |
\begin{tabular}{p{3.0cm}ccccc} | |
\toprule | |
& & Total Sample & Group A & Group B & Test Statistic \\ | |
Variable & Missing & (n = ) & (n = ) & (n = ) & \\ | |
\cmidrule(lr){3-6} | |
\addlinespace[48pt] | |
\bottomrule | |
\end{tabular} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment