调整 Beamer 中两行标题的间距

调整 Beamer 中两行标题的间距

我使用的是自定义的 Beamer 模板。这个模板有一个问题,就是两行标题看起来很丑:

丑陋的标题

现在,我试图增加标题的垂直间距和第二行的水平间距。我只是在标题中添加了以下注释:

\title{This is a title which is too long to fit in one line and this \vspace{.5cm} \hspace{.25cm} template makes the title look ugly when not fitting within one line}

这种简单的方法只适用于垂直间距或水平间距,而不适用于两者。

在第二步中,我查看了 .cls 文件:此文件定义了一个新命令\comnetstitle,该命令将在 .tex 文件中用于创建标题页。它如下:

\newcommand{\comnetstitle}{{\usebackgroundtemplate{\includegraphics[width=\paperwidth,height=\paperheight]{imgs/logos/logo.png}}\begin{frame}[plain]\titlepage\end{frame}}\addtocounter{framenumber}{-1}}

这里是我对 TeX 了解不够的地方:是不是\titlepage需要扩展命令?

我知道我应该提供 MWE。因此,首先,您需要 .cls 文件: 这里

然后您需要创建一个这样的 .tex 文件:

\documentclass[table]{tuhh_comnets_presentation}

\author{My Name}
\title{Estimation of Distance in Autonomous Vehicular Platoons \vspace{.5cm} Using Kalman Filters}
\date{August 21, 2019}

\begin{document}
    \comnetstitle
\end{document}

除此之外,标题页上还插入了两个徽标和一个背景图像。不过我认为这应该不是太重要。但是,这意味着您无法直接运行此代码,因为缺少徽标。也许您可以用自己拥有的图形替换它们?

相关内容