答案1
您可以使用其中xslant=<factor>
当然<factor>
是一个以度为单位的数字,它将是的反余切<factor>
:
\documentclass[tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}
\begin{scope}
\clip (0,0) rectangle (3,2);
\draw [help lines,xslant=1] (-5,-5) grid (5,5);
\end{scope}
\draw (0,0) -- (45:1);
\end{tikzpicture}
\end{document}