Last active
March 4, 2024 19:37
-
-
Save cnicolai/15c40173ae081756077a71609a2a563d to your computer and use it in GitHub Desktop.
A TikZ Fullpage Document in A5 size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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