Skip to content

Instantly share code, notes, and snippets.

@barryirwin
Created March 19, 2019 12:37
Show Gist options
  • Save barryirwin/d6d0adc1a95def747c76ae0afb809c9d to your computer and use it in GitHub Desktop.
Save barryirwin/d6d0adc1a95def747c76ae0afb809c9d to your computer and use it in GitHub Desktop.
Font sizes in tables LATEX
There's no \medium font size between \small and \large; you have \normalsize (which is the default font size).
The standard font size switches are:
\tiny, \scriptsize, \footnotesize, \small, \normalsize, \large, \Large, \LARGE, \huge, and \Huge.
You only need one font switch command inside the table and braces are not required since table forms a group, so you can simply say something like this:
\begin{table}
\small
\begin{tabular}{p{3.5cm}p{8cm}p{5cm}}
text & text & text
\end{tabular}
\end{table}
@kaustubhcs
Copy link

This is perfect!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment