\documentclass[aspectratio=169]{beamer} \usepackage{minted} \usemintedstyle{borland} \usepackage{listings} \usetheme{veit} \author{Veit Heller} \title{Veit} \subtitle{A personal Beamer theme} \institute{Port Zero} \date{\today} \begin{document} \begin{frame}[plain] \titlepage \end{frame} \begin{frame}{Example Slide} Veit is a Beamer theme for Veit. \begin{itemize} \item Inspired by Saarland Beamer theme. \begin{itemize} \item \textbf{Check it out at}: https://github.com/kailashbuki/beamerthemesaarland \end{itemize} \item Written for my personal use. \end{itemize} \end{frame} \begin{frame}[fragile] \frametitle{Code Slide} \begin{listing}[H] \caption{We can have code!} \begin{minted}{python} # borland works well def hello_world(world="World"): return "Hello, {}!".format(world) \end{minted} \end{listing} \end{frame} \end{document}