我有一个使用 metropolis 主题的 Beamer 演示文稿的自定义标题页。尝试设置两列会导致右列的行距不均匀。
这是MWE:
\documentclass[aspectratio=43,9pt]{beamer}
\usetheme[numbering=fraction,titleformat section=allsmallcaps]{metropolis}
\setlength{\leftmargini}{2ex}
\setbeamertemplate{itemize items}[circle]
\newcommand{\detail}[1]{%
{\usebeamercolor[fg]{institute}#1}
}
\title[April 2020]{Terraform}
\subtitle{Module Architecture Proposition}
\date{Thursday, June 11th}
\author{Joey Dumont}
\institute[\textsc{Group}]{Group\\%
Branch\\%
Org%
}
\begin{document}
\begin{frame}[plain,noframenumbering,fragile]
\begin{columns}[t]
\column{0.45\textwidth}
\insertauthor\par
\vspace{-0.25em}{\scriptsize\detail{\texttt{<[email protected]>}}}\\
\vspace{1em}
\usebeamertemplate*{date}
\column{0.45\textwidth}
\usebeamertemplate*{institute}
\end{columns}
\end{frame}
\end{document}
知道为什么会发生这种情况吗?我该如何解决?