放大边缘上的箭头

放大边缘上的箭头

我为有向图编写了以下代码,但箭头的尺寸太小。我的问题是如何放大箭头的尺寸

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}

\begin{document}
\begin{tikzpicture}
    [x=1.3cm, y=1cm,
        every edge/.style={
            draw,
            postaction={decorate,
                        decoration={markings,mark=at position 0.5 with {{\arrow{>}}}}
                       }
            }
    ]

    \draw (0,1) node [circle,fill, inner sep=2pt] {};
    \draw (2,1) node [circle,fill, inner sep=2pt] {};
    \draw (0,0) node [circle,fill, inner sep=2pt] {};
    \draw (2,0) node [circle,fill, inner sep=2pt] {};
    \draw (0,-1) node [circle,fill, inner sep=2pt] {};
    \draw (2,-1) node [circle,fill, inner sep=2pt] {};
    \path

        (0,1)edge(2,1)
        (2,0)  edge (0,0) 
        (0,-1) edge (2,-1) 

        ;
\end{tikzpicture}
\end{document}

答案1

您可以向 中添加选项\arrow{>}。例如,\arrow[scale=2]{>}将使箭头的大小(和线宽)加倍。如果您想要不同的线宽,也可以添加line width选项。

例如:

结果

相关内容