像素故障刺痛了我的眼睛(pstricks,beamer)

像素故障刺痛了我的眼睛(pstricks,beamer)

使用 pstricks 和 beamer 时,我遇到了一个令人眼花缭乱的像素故障:pspicture 在帧之间“摆动”了 1 个像素左右。不确定我的示例最小化到了什么程度,但下面是它:

在 Ubuntu 上使用 pdflatex --shell-escape 进行编译,使用 texlive

\documentclass{beamer}
\usepackage{auto-pst-pdf}
\usepackage{pst-plot}
\begin{document}
\begin{frame}
\begin{columns}
\column{0.28\textwidth}
\psset{xunit=1.4cm, yunit=1.4cm}
\begin{pspicture}(-1.3,-1.3)(1.3,1.3)%
\psline[linewidth=2pt](-1.25,-1.25)(1.25,1.25)%
\end{pspicture}%
\column{0.72\textwidth}%
\uncover<2>{}%
\end{columns}
\psset{xunit=0.9cm, yunit=0.9cm}
\begin{pspicture}(-4.2, -1.55)(8.1, 1.55)%
\psline(-4,-1.5)(8,1.5)%
\end{pspicture}
\end{frame}
\end{document}

我该如何解决这个问题?发生了什么事?谢谢!

答案1

看起来 auto-pst-pdf 有问题。不使用这个包,使用 xelatex 运行示例,一切都会好起来。问题是,由 创建的包含图形auto-pst-pdf的左下角位于线外,而xelatexlatex-> dvips->ps2pdf则将线的中间作为左下角。

相关内容