-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix subtitle footer presentation (#81)
Add | and correct ordering + spacing
- Loading branch information
Showing
4 changed files
with
42 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
\documentclass[aspectratio=169]{beamer} | ||
\usepackage[utf8]{inputenc} | ||
\usepackage[T1]{fontenc} | ||
\usetheme[darkmode]{pureminimalistic} | ||
|
||
\title[Short title]{Long title} | ||
\subtitle[Short subtitle]{Long subtitle} | ||
\author{Kai Norman Clasen} | ||
\institute{} | ||
\date{\today} | ||
|
||
\begin{document} | ||
\maketitle | ||
|
||
\begin{frame}{Subtitle Behavior} | ||
\begin{itemize} | ||
\item Long subtitle has bigger font and is on its own line on \emph{titlepage} | ||
\item Short subtitle comes after short title in footer before \emph{author} | ||
\end{itemize} | ||
\end{frame} | ||
\end{document} |