我正在尝试绘制没有外层的网格。以下是代码,
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw[step=2cm,color=gray] (.2,.2) grid (10.75,10.75);
\end{tikzpicture}
\end{center}
\end{document}
输出如下。如你所见,外层放置不均匀。有人能指出如何使其均匀吗?提前致谢。