blog/todo-recipes/latex.md
2021-03-09 03:40:32 -08:00

14 lines
205 B
Markdown

# LaTeX
## Enable/disable page numbering
```latex
% disable numbering on this page
\thispagestyle{empty}
% turn it off entirely 🦃
\pagenumbering{gobble}
% turn it back on
\pagenumbering{arabic}
```