페이지의 Psplot 위치

페이지의 Psplot 위치

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}

관련 정보