我正在尝试 pgfplots:
\documentclass[]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xmin=0,xmax=2,ymin=0,ymax=1.25, samples=50, /pgfplots/trig format=rad]
\addplot[blue, thick] ({x},{sin(x)});
\end{axis}
\end{tikzpicture}
\end{document}
但是,该/pgfplots/trig format
键似乎不起作用;我必须改变我的表达式才能{sin(deg(x))}
用弧度来计算 x,并且我希望我的三角函数默认以弧度为单位进行运算。
我究竟做错了什么?