有没有简单的方法可以旋转整个 tikzpicture 环境?
如果我应用 tikzpicture 选项 [rotate=ang] 节点似乎不受影响。
换句话说,我想做
\begin{tikzpicture}[rotate=ang]
"stuff to be rotated"
\end{tikzpicture}
并且整个图片都应该旋转;包括所有节点。
答案1
我已经使用rotating
过
\usepackage{rotating}
\begin{turn}{ang}
"stuff to be rotated"
\end{turn}
这对我有用。
transform shape
正如 percusse 所提到的,只需添加,就可以完美运行。