如何生成带有 52 度倾斜虚线的横格纸

如何生成带有 52 度倾斜虚线的横格纸

我看到很多关于生成横格纸的问题的回答。我想添加一条 52 度倾斜虚线,用于草书练习。有没有什么软件包可以帮忙?线高应为 5 毫米,倾斜线应为 52 度。

样本文件

谢谢

答案1

你可能需要 TiZ. 此代码仅在一页上绘制网格,但您可以使用一些包在每一页上绘制网格。

\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}

相关内容