LaTeX snippets
-
stopping hyphenation
\hyphenpenalty 10000 \exhyphenpenalty 5000
-
line break in a table cell
\shortstack
, in the corresponding cell,\shortstack{a \\ b}
or
makecell
package.more:
https://tex.stackexchange.com/questions/2441/how-to-add-a-forced-line-break-inside-a-table-cell
https://tex.stackexchange.com/questions/331716/newline-in-multirow-environment
-
figure/table occupying two columns
use
\begin{figure*}
environment rather than\begin{figure}
.more:
https://stackoverflow.com/questions/1856189/fullpage-picture-in-two-column-layout
-
line numbers missing for paragraph with equations followed
wrap the math environment by
\begin{linenomath}
and\end{linenomath}
, uselinenomath*
if the math equations also need to be line numberedmore:
-
registered trademark symbol (encircled R)
\usepackage[T1]{fontenc}
then use it as
\textsuperscript{\textregistered}
.