Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- \documentclass{article}
- \usepackage{booktabs}
- \usepackage{multirow}
- \begin{document}
- \begin{table}[h]
- \centering
- \caption{My caption}
- \label{my-label}
- \begin{tabular}{@{}lcccc@{}}
- \toprule
- & Column & Column & Column & Column \\ \midrule
- Row & 1 & 2 & 3 & 4 \\
- Row & 5 & \multicolumn{2}{c}{\multirow{2}{*}{Because why not}} & 8 \\
- Row & 9 & \multicolumn{2}{c}{} & 12 \\
- Row & 13 & 14 & 15 & 16 \\ \bottomrule
- \end{tabular}
- \end{table}
- \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement