Last active
November 25, 2019 16:02
-
-
Save sbrki/2396cd457d38de70e71425a74fdcda38 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
% from http://sethest.dx.am/dot-paper-generator/ | |
% spacing 7mm, size 0.15 pt | |
\documentclass{article} | |
\title{Dot Paper} | |
\usepackage{geometry} | |
\geometry{a4paper, margin=0mm} | |
\usepackage{tikz} | |
\tikzset{x=1mm, y=1mm} | |
\definecolor{DotsColor}{HTML}{C9C9C9} | |
\begin{document} | |
\newsavebox{\frontside} | |
\savebox{\frontside} | |
{ | |
\begin{tikzpicture}[remember picture, overlay] | |
\color{DotsColor} | |
\foreach \x in {0,...,30} | |
\foreach \y in {0,...,42} | |
\filldraw (current page.south west) ++ (0,295.5) ++ (7*\x,-7*\y) circle (0.15); | |
\end{tikzpicture} | |
} | |
\usebox{\frontside} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment