
¿Puedo usar la punta de la flecha Fast Triangle
(página 212 en el manual 3.0.0) para la ruta completa? (o hacer que se vea así)
lo que tengo hasta ahora
(necesita TikZ 3.0.0)
\documentclass[margin=5]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{bending}
\begin{document}
\begin{tikzpicture}
\node[circle, draw] (a) {a};
\node[circle, draw, right=of a] (b) {b};
\draw [f/.tip = Fast Triangle,
line width=1ex,
{Triangle Cap[reversed] }-{[bend] Triangle Cap[] . ffffff}]
(a) to [bend left] (b);
\end{tikzpicture}
\end{document}
Resultado
Respuesta1
Pude crear algo similar con la decorations
biblioteca. (No es necesario tikz 3.0):
Pero no pude hacer que apunte directamente al nodo.
\documentclass[margin=5]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{shapes}
\begin{document}
\begin{tikzpicture}
\node[circle, draw] (a) {a};
\node[circle, draw, right=of a] (b) {b};
\draw [decoration={
markings,
mark=between positions 0 and 1 step 4pt with {
\node[fill=black,signal from=west, signal to=east,signal, transform shape,minimum width=2pt,minimum height=5pt, inner sep=0]{};}}, decorate]
(a) to [bend left] (b);
\end{tikzpicture}
\end{document}