Skip to content

Instantly share code, notes, and snippets.

@cnicolai
Last active March 4, 2024 19:37
Show Gist options
  • Save cnicolai/15c40173ae081756077a71609a2a563d to your computer and use it in GitHub Desktop.
Save cnicolai/15c40173ae081756077a71609a2a563d to your computer and use it in GitHub Desktop.
A TikZ Fullpage Document in A5 size
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[a5paper, margin=0mm]{geometry}
\usepackage{tikz}
\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}[remember picture, overlay, shift={(current page.south west)}]
\fill[white] (current page.south west) rectangle (current page.north east);
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment