-
-
Save sbalci/35e054c174fdb6e515c8ca9c82dab980 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