latex-presentation-template/main.tex

48 lines
1.1 KiB
TeX

\documentclass{beamer}
\usepackage{graphicx}
% Use the metropolis theme
\usetheme{metropolis}
% Define custom colors
\definecolor{mainGreen}{HTML}{58d062}
% Set the main colors of the theme
\setbeamercolor{background canvas}{bg=white}
\setbeamercolor{frametitle}{bg=mainGreen, fg=white}
\setbeamercolor{normal text}{fg=black}
\setbeamercolor{structure}{fg=mainGreen}
\setbeamercolor{alerted text}{fg=mainGreen}
\setbeamercolor{button}{bg=mainGreen, fg=white}
% Set other theme properties
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
\setbeamertemplate{footline}{
\begin{columns}
\column{0.1\textwidth}
\column{0.2\textwidth}
\hfill\insertshorttitle
\column{0.2\textwidth}
\includegraphics[height=1.0cm,keepaspectratio]{media/logo.png}
\end{columns}
\vspace{0.3cm}
}
\setbeamerfont{frametitle}{size=\Large, series=\bfseries}
\title{Your Presentation Title}
\subtitle{Your Presentation Subtitle}
\author{Your Name}
\institute{Kumi Systems e.U.}
\date{\today}
\begin{document}
\include{slides/main}
\end{document}