I'm trying to create a 18 x 9 path of grid, because I want to create a periodic table by putting a chemical element on every position of grid.
How can I make the grid to start from the lower left corner of the page?
(It's in the draw phase now. Later I'll make it a path.)
Thank you.
Code: Select all
\documentclass[a4paper,openright,landscape]{book}
\usepackage{tikz}
\usetikzlibrary{shapes,calc,positioning}
\begin{document}
\begin{tikzpicture}
\draw[help lines] (0,0) grid [xstep=1.25cm, ystep=1.5cm] (18,9);
\end{tikzpicture}
\end{document}