Skip to content

Instantly share code, notes, and snippets.

@hamaluik
Created August 16, 2012 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamaluik/3372233 to your computer and use it in GitHub Desktop.
Save hamaluik/3372233 to your computer and use it in GitHub Desktop.
Spanning Multiple Rows or Columns in Tables in LaTeX
\usepackage{multirow}
...
\begin{table}[H]
\begin{center}
\caption{Example}
\label{tab:example}
\begin{tabular}{lcc}
Column A & \multicolumn{2}{c}{Columns B and C} \\
x & y & z \\
\end{tabular}
\end{center}
\end{table}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment