這是我的問題的後續這裡並使用相同的設定。
MWE ( 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
有其他人注意到這個問題並且有解決辦法嗎?
謝謝。