Last active
May 12, 2016 04:29
-
-
Save jonaswisplinghoff/2ead2f1f25e6b036f159 to your computer and use it in GitHub Desktop.
LaTeX Beamer class example with the colors of Technische Hochschule Mittelhessen. Output: https://jonaswoc.rigel.uberspace.de/owncloud/index.php/s/1i4yqBj9ZOF7ts7
This file contains hidden or 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
\documentclass{beamer} | |
\usepackage[ngerman]{babel} | |
\usepackage[latin1]{inputenc} | |
\definecolor{thm}{HTML}{8dc24e} | |
\definecolor{thm_grey}{HTML}{6B7982} | |
\definecolor{thm_dark}{HTML}{4A5D66} | |
\usetheme{Warsaw} | |
\setbeamercolor*{palette primary}{use=structure,fg=white,bg=thm} | |
\setbeamercolor*{palette quaternary}{fg=white,bg=thm_dark} | |
\setbeamercolor*{frametitle}{fg=white,bg=thm_grey} | |
\setbeamercolor*{frametitle right}{bg=thm_grey} | |
\author{Max Mustermann} | |
\title{Wichtiges Thema} | |
\subtitle{Witziger Untertitel} | |
\institute{Studiengang Bachelor\\ Technische Hochschule Mittelhessen} | |
\date{\today} | |
\begin{document} | |
\frame{ | |
\titlepage | |
} | |
\section{Kapitel 1} | |
\subsection{Abschnitt 1} | |
\frame{ | |
\frametitle{Titel} | |
\framesubtitle{Untertitel} | |
\begin{columns} | |
\column[c]{5cm} | |
\begin{itemize} | |
\item Erster Punkt | |
\item Zweiter Punkt | |
\item Dritter Punkt | |
\end{itemize} | |
\column[c]{5cm} | |
Lorem ipsum... | |
\end{columns} | |
} | |
\subsection{Abschnitt 2} | |
\frame{ | |
\frametitle{Titel} | |
\framesubtitle{Untertitel} | |
\begin{columns} | |
\column[c]{5cm} | |
\begin{itemize} | |
\item Erster Punkt | |
\item Zweiter Punkt | |
\item Dritter Punkt | |
\end{itemize} | |
\column[c]{5cm} | |
Lorem ipsum... | |
\end{columns} | |
} | |
\section{Kapitel 2} | |
\subsection{Abschnitt 1} | |
\frame{ | |
\frametitle{Titel} | |
\framesubtitle{Untertitel} | |
\begin{columns} | |
\column[c]{5cm} | |
\begin{itemize} | |
\item Erster Punkt | |
\item Zweiter Punkt | |
\item Dritter Punkt | |
\end{itemize} | |
\column[c]{5cm} | |
Lorem ipsum... | |
\end{columns} | |
} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment