消える矢じり

Dec 28 2020

半径が0.7以下の場合にうまく機能する曲線矢印があります。しかし、半径を0.8に増やすと、矢じりが消えます。さまざまなパラメータを変更しても効果がないようです。何が起こっているのか、どうすればより大きな半径を使用できるのかを理解したいと思います。

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows, decorations.markings}
\begin{document}

\begin{tikzpicture}

    % https://tex.stackexchange.com/a/169115/2737
    \tikzset{
    curveArrow/.style={
      thick,
      decoration={markings,mark=at position
       1 with {\arrow[scale=1.5,semithick]{open triangle 60[fill=white]}}},
      double distance=3.5pt, shorten >= 8pt,
      preaction = {decorate},
      postaction = {draw,line width=1.4pt, white,shorten >= 8.5pt}
      }
    }
    % changing radius from 0.7 to 0.8 makes the arrow head disappear
    \draw[curveArrow] (0,0) arc (90:270:0.7); 

\end{tikzpicture}

\end{document}

半径= 0.7

半径= 0.8

回答

4 hpekristiansen Dec 30 2020 at 04:52

Tikzライブラリarrowsは非推奨です。markingsパスの最後に何かを配置するためだけに使用するのは少し奇妙だと思います。おそらくそれは私だけです。これは、元のコードからのアーティファクトと問題のない代替バージョンです。アイデアは、最初に三角形の矢印を描画し、次に垂直の矢印線の一部を描画するのに十分な長さの二重線を正確にすることです。

\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}[
  curveArrow/.style={
    draw=none,
    preaction={draw, thick, -{Triangle[open, length=8pt 1, width=10pt]}},
    postaction={draw, thick, double distance=3.5pt, shorten >=8pt}
  }]
\draw[curveArrow] (0,0) arc (90:270:0.8); 
\end{tikzpicture}
\end{document}