以下 tiKz 代码为您提供了 100x10 的帮助线网格。
\draw [help lines, dashed] (0,0) grid(100,10);
如果您只想要 100 条垂直热线而不是 10 条水平热线,那么代码是什么?
答案1
您可以使用ystep
来固定水平线的数量。例如,如果您使用ystep=10
网10 X 10
格:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [help lines, dashed,ystep=10] (0,0) grid(10,10);
\end{tikzpicture}
\end{document}
你得到
而且总是有蛮力:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \x in {0,...,9}{
\draw [help lines, dashed] (\x,0) -- (\x,10);
}
\end{tikzpicture}
\end{document}