Esta é uma continuação da minha perguntaaquie usa a mesma configuração.
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}
Fluxo de trabalho:
latex test
dvips -P pdf test
ps2pdf test.ps
Executar isso com o Tex Live 2018 resulta em um tamanho de slide incorreto. O problema parece estar na execução do dvips. No Tex Live, o cabeçalho do arquivo 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
Executar dvips no MiKTeX fornece o tamanho correto do slide:
%!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
Alguém mais notou esse problema e há uma solução?
Obrigado.