答案1
以下是一段简短的代码pstricks
:
\documentclass[svgnames, border=3pt]{standalone}
\usepackage{pst-plot, pst-math}
\begin{document}
\begin{pspicture*}(-6,-1.5)(6,16.5)
\psset{algebraic, arrowinset=0.125, arrowsize=3pt, linejoin=1, xunit =2,yunit = 0.4}
\psaxes[linecolor=SteelBlue, ticks=all, tickcolor=LightSteelBlue, labels=all, arrows =->, Dy=5 ](0,0)(-2.9,-2.5)(3,40) [$x$,-135] [$y$,-135]
\psset{linewidth=1.5pt, linecolor=Coral, plotpoints=500, plotstyle=curve}
\psplot{-2}{2}{EXP((SIN(x))^3) + x^6 - 2*x^4 - x^3 - 1}
\end{pspicture*}
\end{document}