tikz 中的闪电?

tikz 中的闪电?

我想在我拥有的 tikz 图表中添加一个小闪电。现有的 tikz 库中是否有我可以使用的东西?我在 tikz 手册中找不到任何东西。

我正在使用 IEEEtran 软件包并提交给 IEEE 出版物,因此我不确定如果我使用此列表。我喜欢 marvosym 包中的风格。

实际上,我正在寻找一个符号来插入,而不是下图中的圆圈:

\documentclass[conference]{IEEEtran}

\usepackage{tikz}
\usetikzlibrary{arrows}
\begin{document}
  \begin{figure}
    \begin{tikzpicture}
      \draw[very thick] (1.0, 2) -- (4.5,2);
      \draw (5,2) circle[x radius=0.5, y radius=0.5];
      \draw[very thick] (5.5, 2) -- (8.5,2);
      \draw[thick,->] (5,1) -- (5,2) node[below, pos=0] {Insert bolt symbol here};
    \end{tikzpicture}
  \end{figure}
\end{document}

编辑:澄清:我并不是在寻找某人来帮助我绘制这样的符号drawpath我总是可以这样做),我更感兴趣的是了解在这种情况下有用的库。

答案1

抱歉,但我还是不明白这有什么问题:

\documentclass[conference]{IEEEtran}

\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{marvosym}

\begin{document}
  \begin{figure}
    \begin{tikzpicture}
      \draw[very thick] (1.0, 2) -- (4.5,2);
      \node at (5,2) {\Huge\Lightning};
      \draw[very thick] (5.5, 2) -- (8.5,2);
    \end{tikzpicture}
  \end{figure}
\end{document}

在此处输入图片描述

Document Properties-FontsPDF-XChange Viewer 中我们可以看到:

在此处输入图片描述

因此我认为您将其提交给 IEEE 不会有任何问题。

答案2

像这样吗?

在此处输入图片描述

\documentclass[conference]{IEEEtran}
\usepackage{tikz}
\usetikzlibrary{arrows}
\begin{document}
  \begin{figure}
    \begin{tikzpicture}
      \draw[very thick] (1.0, 2) -- (4.5,2);
%     \draw (5,2) circle[x radius=0.5, y radius=0.5];
      \draw[thick, ->] (5,2) +(0.05,0.5) -- +(-0.1,-0.1) -- +(0.1,0.1) -- +(0,-0.5);
      \draw[very thick] (5.5, 2) -- (8.5,2);
    \end{tikzpicture}
  \end{figure}
\end{document}

相关内容