beamer、pstricks 和 Texlive 的幻灯片尺寸错误

beamer、pstricks 和 Texlive 的幻灯片尺寸错误

这是我的问题的后续这里并使用相同的设置。

最大能量值(test.tex):

\documentclass[dvips]{beamer}

\usepackage{pstricks}
\psset{unit=1mm}

\begin{document}

\begin{frame}\frametitle{Test}
line 1

line 2

\begin{figure}[h]
\begin{center}
\pspicture(0,0)(60,60)
\psframe(0,0)(60,60)
\endpspicture
\end{center}
\caption{Figure}
\end{figure}

line 3

\end{frame}
\end{document}

工作流程:

latex test
dvips -P pdf test
ps2pdf test.ps

使用 Tex Live 2018 运行此程序时,幻灯片大小错误。问题似乎出在运行 dvips 上。在 Tex Live 下,postscript 文件中的标题是

%!PS-Adobe-2.0
%%Creator: dvips(k) 5.998 Copyright 2018 Radical Eye Software
%%Title: test.dvi
%%CreationDate: Wed Mar 13 00:35:25 2019
%%Pages: 1
%%PageOrder: Ascend
%%Orientation: Landscape
%%BoundingBox: 0 0 273 363
%%DocumentFonts: CMSS12 CMSS10
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -P pdf test

在 MiKTeX 下运行 dvips 会给出正确的幻灯片尺寸:

%!PS-Adobe-2.0
%%Creator: dvips(k) 5.998 Copyright 2018 Radical Eye Software
%%Title: test.dvi
%%CreationDate: Wed Mar 13 00:34:23 2019
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 363 273
%%DocumentFonts: CMSS12 CMSS10
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -P pdf test

还有其他人注意到这个问题吗?有解决办法吗?

谢谢。

相关内容