|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- %
- % template.tex
- %
- % A beamer kenotom presentation template
- %
- % note: Requires compilation with XeLaTeX or LuaLaTeX
- %
- % author: Your name <your-email@kenotom.com>
- % date: {date}
- %
-
- \documentclass[11pt,aspectratio=169]{beamer}
-
- % key-value
- % -----------
- %theme: [light, classic(default), dark]
- %background: [none(default), ribbon]
- %title: [normal(default), small, large]
-
- % options
- % -----------
- %nonavigation: Disables the navigation bar
- %fancy : Creates fancy presentation
- \usetheme[theme=classic, fancy]{Kenotom}
-
- %
- % note: For a presentation “close” to the official use
- %--------------------------------------------------------
- % \documentclass[13pt,aspectratio=169]{beamer}
- % \usetheme[theme=light,fancy,nonavigation]{Kenotom}
-
- % Presentation information
- % =======================================================
- \title{Presentation title}
- \subtitle{Presentation subtitle (if there's one)}
- \author{Your name}
- \institute{Kenotom}
- \date{\today}
-
- \newcommand{\AuthorEmail}{your-email@kenotom.com}
- \newcommand{\Address}{Eth. Antistasis 16 GR-55133, Thessaloniki - Greece}
- \newcommand{\Telephone}{+30 2310 xxxxxx}
-
- % Local command and configurations
- % =======================================================
-
- %\usepackage{pgfpages}
- %\setbeameroption{second mode text on second screen=<location>}
- %\setbeameroption{show notes on second screen=<location>}
- %\setbeameroption{previous slide on second screen=<location>}
-
- \begin{document}
-
- \maketitle
-
- \BeginCountingFrames % Exclude first frames from frame counting
-
- % Uncomment the following lines for an automatically generated outline.
- %\OutlineFrame[subsections]{Presentation}{Outline}
-
-
- \section{Introduction}
-
- \begin{frame}[t]{Introduction}
- \begin{block}{}
- Hello \LaTeX{} world!
- \end{block}
- \end{frame}
-
- \BackFrame
-
- \end{document}
|