我有以下 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