73 lines
1.9 KiB
TeX
73 lines
1.9 KiB
TeX
%
|
|
% 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}
|