Initial version

This commit is contained in:
Kumi 2023-05-08 19:13:21 +00:00
commit 8ebf649795
Signed by: kumi
GPG key ID: ECBCC9082395383F
9 changed files with 101 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
*.aux
*.fdb_latexmk
*.fls
*.log
*.nav
*.out
*.pdf
*.snm
*.synctex.gz
*.toc

45
main.tex Normal file
View file

@ -0,0 +1,45 @@
\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}
\include{slides/main}
\end{document}

BIN
media/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 672 KiB

8
slides/Conclusion.tex Normal file
View file

@ -0,0 +1,8 @@
\section{Conclusion}
\begin{frame}{Conclusion}
\begin{itemize}
\item Summarize the main points of your presentation.
\item Provide any final thoughts or recommendations.
\end{itemize}
\end{frame}

9
slides/Example.tex Normal file
View file

@ -0,0 +1,9 @@
\section{Section Title}
\begin{frame}{Slide Title}
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}

9
slides/Introduction.tex Normal file
View file

@ -0,0 +1,9 @@
\section{Introduction}
\begin{frame}{Introduction}
\begin{itemize}
\item Introduce your topic here.
\item Explain the importance of the topic.
\item Set the context for the rest of the presentation.
\end{itemize}
\end{frame}

4
slides/TOC.tex Normal file
View file

@ -0,0 +1,4 @@
% Table of contents
\begin{frame}{Outline}
\tableofcontents
\end{frame}

9
slides/Title.tex Normal file
View file

@ -0,0 +1,9 @@
% Title page
\begin{frame}[plain]
\vspace{0.5cm}
\begin{center}
\includegraphics[height=1.5cm,keepaspectratio]{media/logo.png}
\end{center}
\vspace{-1cm}
\titlepage
\end{frame}

7
slides/main.tex Normal file
View file

@ -0,0 +1,7 @@
\begin{document}
\include{slides/Title}
\include{slides/TOC}
\include{slides/Introduction}
\include{slides/Example}
\include{slides/Conclusion}