如何减少 beamer 中标题和作者周围的空白?

如何减少 beamer 中标题和作者周围的空白?

我正在 beamer 中创建一张学术海报,但是标题上方和作者部分下方的空白太多了。 大量空白

我在标题命令中添加了 \vspace,但负值只会截断标题的底部。下面是 -1cm。

负厘米

\documentclass[final,t, xcolor=dvipnames]{beamer}
\mode<presentation>{\usetheme{Berlin}}

\usepackage[orientation=landscape,size=a0,scale=1,debug]{beamerposter}
\usepackage{lipsum} % for dummy text
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{tikz}
\newcommand\FontBody{\fontsize{24pt}{28pt}\selectfont}
\newcommand\FontHead{\fontsize{32pt}{28pt}\selectfont}

\title[]{\vspace{1cm}\Huge Molecular Dynamics \textit{in silico} Modelling Simulations Using Amber Software Tools}
\logo{%
    \makebox[1\paperwidth]{%
    \includegraphics[width=15cm, height=15cm, keepaspectratio]{./pictures/logo1.png}
    \hfill%
    \includegraphics[width=12cm, height=12cm, keepaspectratio]{./pictures/logo2.png}
    }%
}
\author[]{\Large \textbf{Author Name}}
\institute[]{\Large The University of Somewhere}

\begin{document}

\begin{frame}[t]
\maketitle
\begin{columns}[T]
\begin{column}{.3\linewidth}

\FontHead
\begin{block}{\textbf{Background}}

答案1

好吧,我通过一些 \vspace{} 实验解决了这个问题

对于标题

我从标题行中删除了所有命令,并添加了一个 \setbeamerfont 变量(如 Campa 在上面所建议的那样)。然后,我在初始框架命令后添加了一个 \vspace{} 命令(我假设这会将整个框架向上移动,从而消除顶部空白。

\setbeamerfont{title}{size=\Huge}
\begin{document}
\begin{frame}[t]\vsapce{-6cm}
\maketitle

对于列

对于每一列,我在 \begin column 行上添加了一个 /vspace 命令。我必须对每一列都这样做。在列块开头使用该命令似乎不起作用。例如)

\begin{columns}[T]
\begin{column}{.3\linewidth}\vspace{-6cm}

希望这对遇到类似问题的人有所帮助。

相关内容