added a soft pink beamer theme with example pdf

main
Isabell Pflug 2 years ago
parent b5de8842d5
commit 7890b0c511

@ -5,4 +5,8 @@ A collection of empty LaTeX documents for fancy college assignments
For compiling, `LuaLaTeX` is strongly recommended!
## Overview
* [English Template](https://git.floating-in.space/isabell/latex_for_college/src/branch/main/template_assignments_maths%5BEnglish%5D.tex) and [German Template](https://git.floating-in.space/isabell/latex_for_college/src/branch/main/template_assignments_maths%5BGerman%5D.tex) for calculus, linear algebra and similiar math assignments
### scarctl layouts
* [English Template](https://git.floating-in.space/isabell/latex_for_college/src/branch/main/template_assignments_maths%5BEnglish%5D.tex) and [German Template](https://git.floating-in.space/isabell/latex_for_college/src/branch/main/template_assignments_maths%5BGerman%5D.tex) for calculus, linear algebra and similiar math assignments
### beamer layouts
* [English Template]() for soft pink presentation, strongly recommending usage of font [Qtpi](https://github.com/zephyo/5fonts10hours/tree/master/qtpi) by [Angela He](https://github.com/zephyo), published under [Creative Commons Attribution 3.0](https://creativecommons.org/licenses/by/3.0/us/) (if not, adjust the font in the preamble)

@ -0,0 +1,107 @@
\documentclass[20pt]{beamer}
%
% adjusting theme
%
\usetheme{default}
\useinnertheme{circles}
\beamertemplatenavigationsymbolsempty
\usepackage{fontspec}
\setsansfont{Qtpi} % <- change font here! pick whatever is installed and known to your system
\setbeamersize
{
text margin left=1.5cm,
text margin right=1.7cm
}
%
% define custom colors
%
\definecolor{fore}{HTML}{F9F2D7}
\definecolor{back}{HTML}{1E1124}
\definecolor{title}{HTML}{E36F99}
\definecolor{link}{HTML}{DFCC81}
%
% themeing of beamer colors and fonts
%
\setbeamercolor{titlelike}{fg=title}
\setbeamercolor{normal text}{fg=fore,bg=back}
\setbeamercolor{section in toc}{fg=fore}
\setbeamercolor{item}{fg=title}
\setbeamertemplate{frametitle}{%
\vskip0.5cm\hskip-0.5cm\insertframetitle}
%
% define listings
%
\usepackage{listings}
\definecolor{keywords}{RGB}{255,0,90}
\definecolor{comments}{RGB}{60,179,113}
\lstset{basicstyle=\footnotesize\ttfamily}
\lstset{language=Python,
keywordstyle=\color{keywords},
commentstyle=\color{comments}\emph}
%
% hyper refs
%
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=link,
filecolor=link,
citecolor=link,
urlcolor=link,
}
%
% document
%
\title{vewwy pawfessional \\ pawsentation >w<}
\subtitle{by Isabell Pflug}
\begin{document}
%
% title frame
%
\begin{frame}[plain]
\titlepage
\end{frame}
%
% frame toc
%
\begin{frame}{Outline}
\color{fore} \tableofcontents
\end{frame}
%
% frame 42
%
\section{Part 42}
\begin{frame}[fragile]{Part 42}
The answer to everything...
\end{frame}
%
% credits frame
%
\section{Credits}
\begin{frame}[fragile]{Credits}
\begin{itemize}
\item LaTeX beamer default theme customisation by \href{https://git.floating-in.space/isabell}{Isabell Pflug}
\item \href{https://github.com/zephyo/5fonts10hours/tree/master/qtpi}{font (qtpi)} by \href{https://github.com/zephyo}{Angela He}, \href{https://creativecommons.org/licenses/by/3.0/us/}{Creative Commons Attribution 3.0}
\end{itemize}
\end{frame}
\end{document}
Loading…
Cancel
Save