我正在绘制图表,其中需要大量不同的箭头来指示不同类型的方向性。目前,我正在使用一组混合库,这些库是我主要通过以下方式找到的
解纤。结果是我使用 mathmode 箭头,例如\leftrightarrow
,或\leftrightarrows
来自amsmath
包。如果我找不到箭头尖,我会自己制作,例如:
\newcommand{\dentedarrowicon}{
\begin{tikzpicture}[scale=0.50]
\draw [-] (1,1) -- (2,1);
\draw [-] (2,1) -- (1.7,0.7) -- (2.5,1) -- (1.7, 1.3) -- (2,1) ;
\fill (2,1) -- (1.7,0.7) -- (2.5,1) -- (1.7, 1.3) -- (2,1) ;
\end{tikzpicture}
}
这将吸引
我希望有一个可以应用的统一库,而不是到处寻找不同的箭头尖。更重要的是,我需要一个箭头尖的命名约定。“dentedarrowicon”是我编造的一个术语,在我看来,它还是有点描述性的。然而,当我开始描述为open arrow with tbar
\newcommand{\openarrowwithtbaricon}{
\begin{tikzpicture}[scale=0.50]
\node (datanode2)[regular polygon,regular polygon sides=3, shape border rotate=270,scale=0.5] at (2,1) [draw,thick, fill=white] {};
\draw [-] (1,1) -- (datanode2);
\draw [-] (1.7,0.7) -- (1.7,1.3);
\end{tikzpicture}
}
有没有一个包含箭头提示的广泛库可供我使用,并且具有标准化和描述性的命名约定?我知道一个相关答案,其中提到了 TikZ 库。这是一个很好的答案,但我仍然需要更多类型的箭头,而且我不确定是否open triangle 60
是一个描述性名称。
有谁知道一个广泛的箭头库或一个标准命名约定,我可以用来起草自己的箭头库吗?