commit 8ebf6497958fee0f2c6e1428667353c7ca3305f2 Author: Kumi Date: Mon May 8 19:13:21 2023 +0000 Initial version diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cb83877 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +*.aux +*.fdb_latexmk +*.fls +*.log +*.nav +*.out +*.pdf +*.snm +*.synctex.gz +*.toc \ No newline at end of file diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..3d889f9 --- /dev/null +++ b/main.tex @@ -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} diff --git a/media/logo.png b/media/logo.png new file mode 100644 index 0000000..5d4c0ba Binary files /dev/null and b/media/logo.png differ diff --git a/slides/Conclusion.tex b/slides/Conclusion.tex new file mode 100644 index 0000000..585ff65 --- /dev/null +++ b/slides/Conclusion.tex @@ -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} \ No newline at end of file diff --git a/slides/Example.tex b/slides/Example.tex new file mode 100644 index 0000000..9665277 --- /dev/null +++ b/slides/Example.tex @@ -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} \ No newline at end of file diff --git a/slides/Introduction.tex b/slides/Introduction.tex new file mode 100644 index 0000000..85fb262 --- /dev/null +++ b/slides/Introduction.tex @@ -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} \ No newline at end of file diff --git a/slides/TOC.tex b/slides/TOC.tex new file mode 100644 index 0000000..503a450 --- /dev/null +++ b/slides/TOC.tex @@ -0,0 +1,4 @@ +% Table of contents +\begin{frame}{Outline} + \tableofcontents + \end{frame} \ No newline at end of file diff --git a/slides/Title.tex b/slides/Title.tex new file mode 100644 index 0000000..f29af65 --- /dev/null +++ b/slides/Title.tex @@ -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} \ No newline at end of file diff --git a/slides/main.tex b/slides/main.tex new file mode 100644 index 0000000..3b470e3 --- /dev/null +++ b/slides/main.tex @@ -0,0 +1,7 @@ +\begin{document} + +\include{slides/Title} +\include{slides/TOC} +\include{slides/Introduction} +\include{slides/Example} +\include{slides/Conclusion} \ No newline at end of file