From c1c5b85c301e0cd54213e15de8d5c606d0336059 Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Mon, 15 Jan 2024 10:40:30 +0100 Subject: [PATCH] fix: avoid overflow warnings from titlepage definition --- src/beamerinnerthememoloch.dtx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beamerinnerthememoloch.dtx b/src/beamerinnerthememoloch.dtx index 463cd92..5d7e47c 100644 --- a/src/beamerinnerthememoloch.dtx +++ b/src/beamerinnerthememoloch.dtx @@ -98,7 +98,7 @@ % space on the title slide. % \begin{macrocode} \setbeamertemplate{title page}{ - \begin{minipage}[b][\paperheight]{\textwidth} + \begin{minipage}[b]{\textwidth}% \ifx\inserttitlegraphic\@empty\else\usebeamertemplate*{title graphic}\fi \vfill% \ifx\inserttitle\@empty\else\usebeamertemplate*{title}\fi @@ -116,7 +116,7 @@ \ifx\beamer@shortauthor\@empty\else\usebeamertemplate*{author}\fi \ifx\insertinstitute\@empty\else\usebeamertemplate*{institute}\fi \ifx\insertdate\@empty\else\usebeamertemplate*{date}\fi - \vfill + \vfill% \null \end{minipage} }