如何在 pgfplots 中的向量底部绘制弧?

如何在 pgfplots 中的向量底部绘制弧?

我想要使​​用 pgfplots 来表示一组以扇区为基础的 5 个向量,如下图所示。在此处输入图片描述

答案1

这是一个普通的 TiZ 方式。

\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}[pics/wedge arrow/.style={code={
\tikzset{wedge arrow/.cd,#1}
\def\pv##1{\pgfkeysvalueof{/tikz/wedge arrow/##1}} 
 \draw[dashed,thick,fill=\pv{fill},fill opacity=0.5]
  (0,0) -- (\pv{alpha}-\pv{beta}/2:\pv{r}*\pv{R})
  arc[start angle=\pv{alpha}-\pv{beta}/2,end angle=\pv{alpha}+\pv{beta}/2,
    radius=\pv{r}*\pv{R}] -- cycle;
 \draw[-latex,thick,blue] (0,0) -- (\pv{alpha}:\pv{R});
 \fill (\pv{alpha}:\pv{R}) circle[radius=2pt];
}},wedge arrow/.cd,alpha/.initial=90,beta/.initial=60,
    R/.initial=2cm,r/.initial=0.5,fill/.initial=gray!30]
\path pic {wedge arrow={alpha=15,r=0.4}}
 pic {wedge arrow={alpha=40,beta=50,r=0.6}}
 pic {wedge arrow={alpha=65,beta=60,r=0.5}};
\end{tikzpicture}
\end{document}

在此处输入图片描述

该图wedge arrow接受几个参数:箭头的角度、、alpha楔子的张角、、beta半径、R以及楔子半径与的比率Rr

相关内容