使用 TikZ 装饰箭头的一半

使用 TikZ 装饰箭头的一半

我想用 TikZ 定义一个仅装饰箭头一半的装饰,如下例所示:

半装饰箭

以上内容是通过以下“强力”代码获得的:

\begin{tikzpicture}
  \draw[decorate,
  decoration={snake,amplitude=1.5pt,segment length=8pt}]
  (0,0) to (1,0);
  \draw (1,0) to (2,0);
\end{tikzpicture}

答案1

如果您知道直线部分的长度,您可以执行以下操作:

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{decorations,decorations.pathmorphing}

\begin{document}

\begin{tikzpicture}
  \draw[decorate,
  decoration={snake,amplitude=1.5pt,segment length=8pt,post length=1cm}]
  (0,0) to (2,0);
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容