如何在 tikz 中旋转符号?

如何在 tikz 中旋转符号?

在我的一些 tikz 图片中,我使用了fontawesome包中的符号。

截屏

在此处输入图片描述

问题

我怎样才能旋转 tikz 中的符号?

平均能量损失

\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usepackage{fontawesome}

\begin{document}

\begin{tikzpicture}

    % Rocket
    \draw (0,0) node {\faRocket};
    % Rectangle
    \node [draw, thick, shape=rectangle, minimum width=3cm, minimum height=2cm, anchor=center] at (0,0) {};

\end{tikzpicture}

\end{document}

我迄今为止尝试过

\draw[rotate=45] (0,0) node {\faRocket};不起作用。

答案1

要旋转火箭符号,您可以尝试以下操作:

\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usepackage{fontawesome}

\begin{document}

\begin{tikzpicture}

    % Rocket
    \draw (0,0) node[rotate=45] {\faRocket};
    % Rectangle
    \node [draw, thick, shape=rectangle, minimum width=3cm, minimum height=2cm, anchor=center] at (0,0) {};

\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容