PSTricks,如何移动和调整图片大小

PSTricks,如何移动和调整图片大小

我怎样才能缩放和改变投影仪幻灯片上 PSTricks 图片的位置?

我画了一幅画,并使用 Inkscale 将其保存为 tex 格式。

这是图片开头的一个例子

%LaTeX with PSTricks extensions
%%Creator: inkscape 0.48.2
%%Please note this file requires PSTricks extensions
\psset{xunit=.5pt,yunit=.5pt,runit=.5pt}                                        
\begin{pspicture}(453.54330444,340.1574707)
{
\newrgbcolor{curcolor}{1 1 0}
\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
{
\newpath
\moveto(86.07989999,190.82162153)
\lineto(93

答案1

这个问题目前的形式有点模糊。您可以使用\resizebox来缩放您的pspicture,然后\putpicture环境一起将其放置在精确的位置(我在示例中将图片框起来只是为了方便重复使用它):

\documentclass{beamer}
\usepackage{etex}
\usepackage{pst-all}
\usepackage{multido}

\newsavebox\mybox
\savebox\mybox{%
\begin{pspicture}(6,6)
\psaxes{->}(6,6)
\psplot[linewidth=1.5pt]{0}{6}{x dup mul 6 div}
\multido{\iA=1+1}{5}{%
  \psplot[arrows=->,arrowscale=2.5]{0}{\iA}{x dup mul 6 div}}
\end{pspicture}}

\begin{document}

\begin{frame}
\begin{picture}(100,100)
\put(0,0){\resizebox{2cm}{4cm}{\usebox\mybox}}
\put(100,60){\resizebox{6cm}{2cm}{\usebox\mybox}}
\put(140,-60){\resizebox{3cm}{3cm}{\usebox\mybox}}
\end{picture}
\end{frame}

\end{document}

在此处输入图片描述

相关内容