我正在绘制以下函数图,我想要向上和向下的箭头。
\begin{tikzpicture}
\begin{axis}[
minor tick num=0,
axis y line=left,
axis x line=middle,
width=\textwidth,
height=0.5*\textwidth,
%xlabel=$x$,ylabel=$\sin x$,
yticklabels=\empty,
xticklabels=\empty,
ymax=7.5,
ymin=-7.5,
y axis line style={stealth}
]
\addplot[smooth,black,mark=none,dotted,
domain=0:31.4159,samples=1000]
{ cos(deg(x))};
\addplot[smooth,blue,mark=none, dotted, domain=0:31.4159,samples=1000]
{ 0.5 * ( (3/8)*x*cos(deg(x)) - (9/32)*sin(deg(x)) - (1/32) * sin(3*deg(x)) )};
\addplot[smooth,red,mark=none, domain=0:31.4159,samples=1000]
{ cos(deg(x)) + 0.5 * ( (3/8)*x*cos(deg(x)) - (9/32)*sin(deg(x)) - (1/32) * sin(3*deg(x)) )};
\end{axis}fasdf
\end{tikzpicture}
给出下面的图片
第 132 页https://www.iro.umontreal.ca/~simardr/pgfplots.pdf它说
y axis line style={〈key-value-list〉}
有默认选项吗?这个问题听起来很蠢,但我在哪里可以找到“键值列表”?我试图在同一手册中搜索它,但我找不到任何关于它的信息。
任何提示或帮助都非常感谢!谢谢!