Created
May 8, 2017 17:56
-
-
Save rocarvaj/fdaaeb6bc4d4bede676554e4274ec6be to your computer and use it in GitHub Desktop.
Dot graph paper in LaTeX
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
\documentclass{article} | |
\pagenumbering{gobble} | |
\usepackage[a4paper,hmargin={0mm,3mm},vmargin=5mm]{geometry} | |
\usepackage{tikz} | |
\begin{document} | |
\begin{tikzpicture}[scale=.5] | |
\foreach \x in {0,...,41} | |
\foreach \y in {0,...,57} | |
{ | |
\fill[gray!75] (\x,\y) circle (0.06cm); | |
} | |
\end{tikzpicture} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment