PSTricks 数据太大

PSTricks 数据太大

我有以下 MWE

\documentclass{article}
\usepackage{pst-plot}
\usepackage{pstricks}
\begin{document}
  \begin{pspicture}(0,0)(5,5)
    \psgrid[gridcolor=red,subgridcolor=green,
      gridlabels=0](0,0)(5,5)
    \psaxes{->}(0,0)(5.5,5.5)
  \end{pspicture}
\end{document}

我使用XeLaTeX它来编译,但是当我查看 PDF 时,它不是二次的,正如我所说的那样pspicture,而是尺寸为 8.5 x 11 英寸。

这是为什么?

我在 ubuntu 上运行 texlive 版本 3.14...。

答案1

使用更大的坐标系pspicture\psframebox你可以让 TeX 海洋可见的区域:

\documentclass{article}
\usepackage{pst-plot}
\begin{document}
\psframebox*[fillcolor=black!20,fillstyle=solid]{%
  \begin{pspicture}(-0.5,-0.5)(5.5,5.5)%%%%%%%%%%
    \psgrid[gridcolor=red,subgridcolor=green,
      gridlabels=0](0,0)(5,5)
    \psaxes{->}(0,0)(5.5,5.5)
  \end{pspicture}}
\end{document}

在此处输入图片描述

如果你只想要图像作为输出使用

\documentclass{standalone}
\usepackage{auto-pst-pdf}
\usepackage{pst-plot}
\begin{document}
...
\end{document}

pdflatex并使用或xelatex序列运行它latex->dvips->ps2pdf

相关内容