如何在没有 pstpicture 的情况下将 \psplot 移动到自定义位置?
\psset{yunit=28pt,xunit=28pt}
\psplot[algebraic=true,linewidth=1pt,plotpoints=500]{0}{4.7}{(-x/5)*cos(4*x)}
\psplot[linestyle=dashed,linewidth=1pt]{0}{4.7}{x 5 div}
\psplot[linewidth=1pt,linestyle=dashed]{0}{4.7}{x -5 div}
答案1
\documentclass{article}
\usepackage{pst-plot}
\begin{document}
\psdot(0,0)% Toi see where we are
\rput(3,-3){%
\psplot[algebraic=true,linewidth=1pt,plotpoints=500]{0}{4.7}{(-x/5)*cos(4*x)}%
\psplot[linestyle=dashed,linewidth=1pt]{0}{4.7}{x 5 div}%
\psplot[linewidth=1pt,linestyle=dashed]{0}{4.7}{x -5 div}%
}
\end{document}