Skip to content

Instantly share code, notes, and snippets.

@chrisma
Last active December 4, 2017 11:27
Show Gist options
  • Save chrisma/5385c5e5311bd10d4b54 to your computer and use it in GitHub Desktop.
Save chrisma/5385c5e5311bd10d4b54 to your computer and use it in GitHub Desktop.
Easy forced line break in a table cell in Latex
\begin{table}
\centering
\caption{Your caption.}
\begin{tabular}{|p{2cm}|l|} \hline %Within a 'p' column \newline is defined
A long \newline text & Another text\\ \hline
\end{tabular}
\end{table}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment