答案1
你可能需要 Ti钾Z. 此代码仅在一页上绘制网格,但您可以使用一些包在每一页上绘制网格。
\documentclass{article}
\usepackage{tikz}
\usepackage{lipsum}
\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}[remember picture,overlay]
\newdimen\x
\newdimen\y
\path (current page.south west);
\pgfgetlastxy{\x}{\y}
\foreach \i in {0cm,.5cm,1cm,1.5cm,...,30cm} % Let's draw it to the outside of the paper -
% who cares?
\draw[dotted] (\x,\y+\i) -- ++ (22,0);
\foreach \i in {-30cm,-29.5cm,...,30cm}
\draw[dotted] (\x,\y+\i) -- ++ (52:35);
\end{tikzpicture}
\lipsum[1]
\end{document}