Skip to content

Instantly share code, notes, and snippets.

@colematt
Created June 27, 2024 02:56
Show Gist options
  • Save colematt/a833ea728de5b6b6bfd37745e31e0a3b to your computer and use it in GitHub Desktop.
Save colematt/a833ea728de5b6b6bfd37745e31e0a3b to your computer and use it in GitHub Desktop.
[Lanscape, Full-page Tabular] #latex
% LaTeX tabular which is oriented in landscape and takes the entire page
\begin{landscape}
\begin{table}[h]
\centering
\resizebox{\textwidth}{!}{%
\begin{tabular}{|c|c|c|}
\hline
Header 1 & Header 2 & Header 3 \\ \hline
Item 1 & Item 2 & Item 3 \\ \hline
Item 4 & Item 5 & Item 6 \\ \hline
\end{tabular}%
}
\caption{Your table caption}
\label{tab:your_label}
\end{table}
\end{landscape}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment