pstricks 生成的图像不适合页面。

pstricks 生成的图像不适合页面。

我在类似这样的文档中有一个 pstricks 图像

\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{pstricks}
\usepackage{pst-eps}
\usepackage{pstricks-add}
\usepackage{pst-node}
\usepackage{pst-tree}
\begin{document}%
\begin{TeXtoEPS}%
\begin{pspicture}(-1.5,-1.50)(7.5,3)%
\normalsize%

 % tree here, sorry but confidential and big.
\end{pspicture}
\end{TeXtoEPS}
 \end{document}

我使用 生成了 ps latex; dvips to ps。但它太大了,页面放不下,只显示了最左边的部分。如何让它适合???谢谢。

答案1

\resizeboxgraphicx包中使用

\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{pstricks-add}
\usepackage{pst-tree}
\usepackage{graphicx}
\begin{document}%

\resizebox{\linewidth}{!}{%
\begin{pspicture}(-1.5,-1.50)(7.5,3)% not really needed for a tree
\normalsize%

 % tree here, sorry but confidential and big.
\end{pspicture}%
}
 \end{document}

顺便说一句:树不需要pspicture环境

答案2

您可以使用\psset{unit=0.5cm}before 命令\begin{pspicture}通过更改单位值来缩放整个图片。显然上面的 0.5 厘米是随机选择的。您应该稍微尝试一下,找出哪种比例适合您。

相关内容