I have some old files which I haven't used for a long time. They now produce different vertical layouts in beamer.
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}
Workflow:
latex test
dvips -P pdf test
ps2pdf test.ps
Running this using an old Miktex from late 2014 gives the following.
Running this using the current Miktex gives the following.
The vertical spacing is different for the two runs. Does anyone know what's changed to cause this? Thanks.
Update
Links to log files:
Miktex 2014 - https://1drv.ms/u/s!AuihY7Zd3CrNee0RytQa2zBX5qw
Miktex 2019 - https://1drv.ms/u/s!AuihY7Zd3CrNeh9xWI_j5BVIHgg


\listfilesinto your document and then show us the list of packages from the .log file for both installations? – samcarter_is_at_topanswers.xyz Feb 01 '19 at 00:06\begin{pspicture} ... \end{pspicture}instead of\pspicture ... \endpspicture? – Feb 01 '19 at 01:45centeruse a single\centering. Does it help? – Feb 01 '19 at 05:29xelatexand without the optional argument[dvips]?? – Feb 01 '19 at 09:49[H]in beamer, as beamer does not have a foating mechanism – samcarter_is_at_topanswers.xyz Feb 01 '19 at 11:36