@@ -0,0 +1,12 @@ | |||||
# Editor related | |||||
*.nav | |||||
*.xml | |||||
*.snm | |||||
*.gz | |||||
# compile | |||||
*.log | |||||
# output | |||||
*.out |
@@ -0,0 +1,402 @@ | |||||
% | |||||
% beamerthemeKenotom.sty | |||||
% | |||||
% A beamer style file to use in a beamer presentation | |||||
% | |||||
% author: Christos Choutouridis <c.choutouridis@kenotom.com> | |||||
% | |||||
\NeedsTeXFormat{LaTeX2e} | |||||
\ProvidesPackage{beamerthemeKenotom} | |||||
% Requirements | |||||
% ===================================================== | |||||
\RequirePackage{xcolor} | |||||
%\RequirePackage{silence} | |||||
%\RequirePackage{etoolbox} | |||||
\RequirePackage{fontspec} | |||||
\RequirePackage{tikz} | |||||
\RequirePackage{graphicx} | |||||
%\RequirePackage{enumitem} | |||||
\RequirePackage{ifthen} | |||||
% Options | |||||
% ===================================================== | |||||
% aspectratio: {43(default), 169} | |||||
\DeclareOptionBeamer{aspectratio}{\def\beamer@kenotom@aspectratio{#1}} | |||||
% theme: {classic(default), light, dark} | |||||
\DeclareOptionBeamer{theme}{\def\beamer@kenotom@theme{#1}} | |||||
% backround: {none(default), ribon} | |||||
\DeclareOptionBeamer{backround}{\def\beamer@kenotom@backround{#1}} | |||||
% title: {normal(default), small, large} | |||||
\DeclareOptionBeamer{title}{\def\beamer@kenotom@title{#1}} | |||||
% nonavigation | |||||
%\DeclareOptionBeamer{nonavigation}{\setbeamertemplate{navigation symbols}{}} | |||||
% Set default options | |||||
\ExecuteOptionsBeamer{aspectratio=43} | |||||
\ExecuteOptionsBeamer{theme=classic} | |||||
\ExecuteOptionsBeamer{backround=none} | |||||
\ExecuteOptionsBeamer{title=normal} | |||||
\ProcessOptionsBeamer | |||||
%\ProcessOptions\relax | |||||
%\WarningsOff[mathdesign/mdbch] | |||||
% Colors | |||||
% ===================================================== | |||||
% Define some colors | |||||
%\definecolor{KenotomGreen}{RGB}{67,174,158} | |||||
\definecolor{KenotomGreen}{RGB}{57,174,157} | |||||
\definecolor{KenotomGreenDark}{RGB}{39,103,96} | |||||
\definecolor{KenotomGreenGrey}{RGB}{67,91,92} | |||||
\definecolor{KenotomGreyLight}{RGB}{215,216,216} | |||||
\definecolor{KenotomGrey}{RGB}{154,155,157} | |||||
\definecolor{KenotomGreyDark1}{RGB}{108,108,108} | |||||
\definecolor{KenotomGreyDark2}{RGB}{92,96,98} | |||||
\definecolor{KenotomLightBlue1}{RGB}{207,226,234} | |||||
\definecolor{KenotomLightBlue2}{RGB}{232,241,245} | |||||
\definecolor{KenotomBlack}{RGB}{0,0,0} | |||||
\definecolor{KenotomWhite}{RGB}{255,255,255} | |||||
% Define kenotom logos | |||||
\pgfdeclareimage[height=0.075\paperheight]{Logo1}{media/kenotomLogo1.png} | |||||
\pgfdeclareimage[height=0.075\paperheight]{Logo2}{media/kenotomLogo2.png} | |||||
\pgfdeclareimage[height=0.04\paperheight]{Logo3}{media/kenotomLogo3.png} | |||||
\pgfdeclareimage[height=0.04\paperheight]{Logo4}{media/kenotomLogo4.png} | |||||
\pgfdeclareimage[height=0.06\paperheight]{Logo5}{media/kenotomLogo5.png} | |||||
%\pgfdeclareimage[height=0.04\paperheight]{Banner}{media/kenotomBanner.png} | |||||
% Local commands | |||||
% ===================================================== | |||||
\newcommand{\Vfill}{\vskip0pt plus 1filll} | |||||
% Define a string equality test | |||||
\newcommand{\isequal}[2]{ \pdf@strcmp{#1}{#2} } | |||||
\newcommand{\SetItemize}[1]{% | |||||
\setbeamertemplate{itemize item}{\small{#1}} | |||||
\setbeamertemplate{itemize subitem}{\scriptsize{#1}} | |||||
\setbeamertemplate{itemize subsubitem}{\tiny{#1}} | |||||
} | |||||
\newcommand{\SetGraphItemize}[2]{ | |||||
\setbeamertemplate{itemize item}{\small\includegraphics[height=#1]{#2}} | |||||
\setbeamertemplate{itemize subitem}{\scriptsize\includegraphics[height=#1]{#2}} | |||||
\setbeamertemplate{itemize subsubitem}{\tiny\includegraphics[height=#1]{#2}} | |||||
} | |||||
\newcommand{\SetBackroundImage}[1]{ | |||||
\setbeamertemplate{background}{% | |||||
\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{#1} | |||||
} | |||||
} | |||||
% | |||||
% [1]: Color | |||||
% [2]: Text | |||||
%\newcommand{\InsertBackroundToText}[2]{% | |||||
%% \colorbox{#1}{% | |||||
%% \parbox{\dimexpr\textwidth-2\fboxsep\relax}{#2} | |||||
% \colorbox{#1}{#2} | |||||
% | |||||
% } | |||||
%} | |||||
%\newcommand{\InsertNavigation}{% | |||||
% \insertslidenavigationsymbol% | |||||
% \insertframenavigationsymbol% | |||||
% \insertsubsectionnavigationsymbol% | |||||
% \insertsectionnavigationsymbol% | |||||
% \insertdocnavigationsymbol% | |||||
% \insertbackfindforwardnavigationsymbol% | |||||
%} | |||||
% | |||||
% Theme | |||||
% ===================================================== | |||||
\ifnum \isequal{\beamer@kenotom@theme}{dark}=0 | |||||
\colorlet{BackroundCanvasColor}{KenotomBlack} | |||||
\colorlet{TitleColor}{KenotomGrey} | |||||
\colorlet{TitleColorAux}{KenotomGreen} | |||||
\colorlet{FrameTitleColor}{KenotomGreyDark1} | |||||
\colorlet{BlockTitleColor}{KenotomGreyDark1} | |||||
\colorlet{TextColor}{KenotomGreenGrey} | |||||
\colorlet{StructureColor}{KenotomGreen} | |||||
\colorlet{NavigationColor}{KenotomGreen} | |||||
\colorlet{NavigationArrowsColor}{KenotomWhite} | |||||
\colorlet{TableCaptionColor}{KenotomGreyDark1} | |||||
\colorlet{TableCaptionTextColor}{KenotomWhite} | |||||
\colorlet{TableRowColor1}{KenotomLightBlue1} | |||||
\colorlet{TableRowColor2}{KenotomLightBlue2} | |||||
\else \ifnum \isequal{\beamer@kenotom@theme}{light}=0 | |||||
\colorlet{BackroundCanvasColor}{KenotomWhite} | |||||
\colorlet{TitleColor}{KenotomGrey} | |||||
\colorlet{TitleColorAux}{KenotomGreen} | |||||
\colorlet{FrameTitleColor}{KenotomGrey} | |||||
\colorlet{BlockTitleColor}{KenotomGrey} | |||||
\colorlet{TextColor}{KenotomGrey} | |||||
\colorlet{StructureColor}{KenotomGreen} | |||||
\colorlet{NavigationColor}{KenotomGreen} | |||||
\colorlet{NavigationArrowsColor}{KenotomGrey} | |||||
\colorlet{TableCaptionColor}{KenotomGrey} | |||||
\colorlet{TableCaptionTextColor}{KenotomWhite} | |||||
\colorlet{TableRowColor1}{KenotomLightBlue1} | |||||
\colorlet{TableRowColor2}{KenotomLightBlue2} | |||||
\else % clasic | |||||
\colorlet{BackroundCanvasColor}{KenotomWhite} | |||||
\colorlet{TitleColor}{KenotomGreyDark1} | |||||
\colorlet{TitleColorAux}{KenotomGreen} | |||||
\colorlet{FrameTitleColor}{KenotomGreyDark2} | |||||
\colorlet{BlockTitleColor}{KenotomGreyDark2} | |||||
\colorlet{TextColor}{KenotomGreenGrey} | |||||
\colorlet{StructureColor}{KenotomGreen} | |||||
\colorlet{NavigationColor}{KenotomGreen} | |||||
\colorlet{NavigationArrowsColor}{KenotomGreyDark1} | |||||
\colorlet{TableCaptionColor}{KenotomGreyDark1} | |||||
\colorlet{TableCaptionTextColor}{KenotomWhite} | |||||
\colorlet{TableRowColor1}{KenotomLightBlue1} | |||||
\colorlet{TableRowColor2}{KenotomLightBlue2} | |||||
\fi\fi | |||||
% Apply theme colors | |||||
\setbeamercolor{background canvas}{bg=BackroundCanvasColor} | |||||
\setbeamercolor{titlelike}{fg=FrameTitleColor} | |||||
\setbeamercolor{block title}{fg=BlockTitleColor} | |||||
\setbeamercolor{normal text}{fg=TextColor} | |||||
\setbeamercolor{structure}{fg=StructureColor} | |||||
\setbeamercolor{navigation symbols}{fg=NavigationColor, bg=NavigationArrowsColor} | |||||
% | |||||
% Layout and global settings | |||||
% ===================================================== | |||||
% Frame layout | |||||
\setbeamersize{ | |||||
text margin left=2em, | |||||
text margin right=2em | |||||
} | |||||
\setlength{\leftmargini}{1.25em} | |||||
\setlength{\leftmarginii}{1em} | |||||
\setlength{\leftmarginiii}{1em} | |||||
%#+LaTeX_HEADER:\addtobeamertemplate{footnote}{}{\vspace{2ex}} | |||||
\addtobeamertemplate{footnote}{}{\vspace{2ex}} | |||||
% Default backround (We overwrite it with kenotom environments) | |||||
%\ifnum \isequal{\beamer@kenotom@backround}{ribon}=0 | |||||
% \ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0 | |||||
% \SetBackround{media/backroundRibon169.png} | |||||
% \else | |||||
% \SetBackround{media/backroundRibon43.png} | |||||
% \fi | |||||
%\else %None | |||||
% \ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0 | |||||
% \SetBackround{media/backroundNone169.png} | |||||
% \else | |||||
% \SetBackround{media/backroundNone43.png} | |||||
% \fi | |||||
%\fi% | |||||
% Default backround (We overwrite it with kenotom environments) | |||||
% [1]: Baner image | |||||
% [2]: backround image | |||||
% [3]: Opacity | |||||
%\newcommand{\SetBackround}[3]{% | |||||
\setbeamertemplate{background}{% | |||||
\begin{tikzpicture}[overlay,remember picture] | |||||
% Banner | |||||
\node[anchor=north east, inner sep=0pt, yshift=-0.06\paperheight] at (current page.north east) {% | |||||
\includegraphics[width=0.2\paperwidth]{media/kenotomBannerRight.png} | |||||
};% | |||||
% \ifnum \isnotempty{#2} | |||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight, opacity=0.1] at (current page.center) {% | |||||
\includegraphics[width=\paperwidth]{media/ribon.png} | |||||
};% | |||||
\node[anchor=center, inner sep=0pt, yshift=0.04\paperheight, opacity=1] at (current page.center) {% | |||||
\includegraphics[width=\paperwidth]{media/kenotomLogoDetails.png} | |||||
};% | |||||
% \fi | |||||
\end{tikzpicture}% | |||||
} | |||||
%} | |||||
%\SetBackround{media/kenotomBannerRight.png}{media/ribon.png}{0.15} | |||||
% Fonts | |||||
\setromanfont{Georgia} | |||||
\setsansfont[Scale=MatchLowercase]{Open Sans} | |||||
% General | |||||
%\setbeamertemplate{navigation symbols}{} | |||||
\setbeamertemplate{caption}[numbered] | |||||
% Default itemize symbols (We overwrite them with kenotom environments) | |||||
\SetItemize{\textbullet} | |||||
% Content style | |||||
% ===================================================== | |||||
% Title page style | |||||
\setbeamertemplate{title page}[default][left] | |||||
\setbeamerfont{title}{family=\rmfamily,size=\Huge} | |||||
\setbeamerfont{author}{size=\Large} | |||||
\setbeamerfont{institute}{size=\normalsize} | |||||
% Delay headline format | |||||
%\newcommand{\SetHeadline}{% | |||||
% \setbeamertemplate{headline}{% | |||||
% \leavevmode | |||||
% \hfill \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}} | |||||
%% \hfill \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}} | |||||
% } | |||||
% \setbeamertemplate{navigation symbols}{\vspace{-1em}} | |||||
% \addtobeamertemplate{navigation symbols}{\vspace{-1em}}{} | |||||
%} | |||||
% footline | |||||
%\setbeamertemplate{navigation symbols}{} | |||||
%\setbeamertemplate{footlline}{\hfill \insertnavigation{0.3\textwidth}} | |||||
\newcommand{\BeginCountingFrames}{% | |||||
\addtobeamertemplate{navigation symbols}{}{% | |||||
% \hspace{1em} \usebeamerfont{footline} \textrm{ \footnotesize{\insertframenumber/\inserttotalframenumber}} | |||||
\hspace{2em} \usebeamerfont{footline} \texttt{ \footnotesize{\insertframenumber}} | |||||
} | |||||
\setcounter{framenumber}{0} | |||||
} | |||||
% Frame title style | |||||
\ifnum \isequal{\beamer@kenotom@title}{small}=0 | |||||
\setbeamerfont{frametitle}{family=\rmfamily,size=\large,series=\bfseries} | |||||
\else\ifnum \isequal{\beamer@kenotom@title}{normal}=0 | |||||
\setbeamerfont{frametitle}{family=\rmfamily,size=\Large,series=\bfseries} | |||||
\else\ifnum \isequal{\beamer@kenotom@title}{large}=0 | |||||
\setbeamerfont{frametitle}{family=\rmfamily,size=\huge,series=\bfseries} | |||||
\else % default = normal | |||||
\setbeamerfont{frametitle}{size=\Large,series=\bfseries} | |||||
\fi\fi\fi% | |||||
\setbeamertemplate{frametitle}{ | |||||
\vskip0.05\paperheight | |||||
\insertframetitle | |||||
} | |||||
% Block style | |||||
\setbeamerfont{block title}{family=\rmfamily,size=\large} | |||||
% Table style | |||||
\renewcommand{\arraystretch}{1.2} | |||||
\newcommand{\tableheadrow}{\rowcolor{TableCaptionColor}} | |||||
\newcommand{\tableheadcol}[1]{{\bfseries\color{TableCaptionTextColor}#1}} | |||||
\rowcolors{2}{TableRowColor1}{TableRowColor2} | |||||
%\AtBeginEnvironment{tabular}{\color{black}} | |||||
% Kenotom environments | |||||
% ===================================================== | |||||
% Kenotom CoverFrame | |||||
\newcommand{\CoverFrame}{{% | |||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0 | |||||
\SetBackroundImage{media/backroundCover169.png} | |||||
\else | |||||
\SetBackroundImage{media/backroundCover43.png} | |||||
\fi | |||||
\begin{frame} | |||||
\end{frame} | |||||
} | |||||
} | |||||
\newcommand{\TitleFrame}{{% | |||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0 | |||||
\SetBackroundImage{media/backroundTitlePage169.png} | |||||
\else | |||||
\SetBackroundImage{media/backroundTitlePage43.png} | |||||
\fi | |||||
\begin{frame} | |||||
\vspace{0.15\textheight} | |||||
\textcolor{TitleColor}{ | |||||
\rmfamily \Huge | |||||
\Title \\[0.5ex] | |||||
\normalsize | |||||
\SubTitle \\[10ex] | |||||
} | |||||
\textcolor{TextColor}{ | |||||
\Large | |||||
\AuthorName \\[1.5ex] | |||||
\normalsize | |||||
\Date | |||||
} | |||||
\end{frame} | |||||
} | |||||
} | |||||
\newcommand{\BackCoverFrame}{{% | |||||
\ifnum \isequal{\beamer@kenotom@aspectratio}{169}=0 | |||||
\SetBackroundImage{media/backroundBackCover169.png} | |||||
\else | |||||
\SetBackroundImage{media/backroundBackCover43.png} | |||||
\fi | |||||
\begin{frame} | |||||
\Vfill | |||||
\AuthorName \\ | |||||
\AuthorMail \\ | |||||
\textcolor{StructureColor}{% | |||||
\Address \\ | |||||
\Telephone | |||||
} | |||||
\vspace{0.125\paperheight} | |||||
\end{frame} | |||||
} | |||||
} | |||||
\newenvironment{tickmarks}{% | |||||
\SetGraphItemize{1.6ex}{media/tickmark1.png} | |||||
\begin{itemize} | |||||
}{% | |||||
\end{itemize} | |||||
} | |||||
\newenvironment{bullets}{% | |||||
\SetGraphItemize{1.3em}{media/bullet.png} | |||||
\begin{itemize} | |||||
}{% | |||||
\end{itemize} | |||||
} | |||||
@@ -0,0 +1,60 @@ | |||||
\relax | |||||
\providecommand\hyper@newdestlabel[2]{} | |||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} | |||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined | |||||
\global\let\oldnewlabel\newlabel | |||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2} | |||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} | |||||
\AtEndDocument{\ifx\hyper@anchor\@undefined | |||||
\let\newlabel\oldnewlabel | |||||
\fi} | |||||
\fi} | |||||
\global\let\hyper@last\relax | |||||
\gdef\HyperFirstAtBeginDocument#1{#1} | |||||
\providecommand\HyField@AuxAddToFields[1]{} | |||||
\providecommand\HyField@AuxAddToCoFields[2]{} | |||||
\pgfsyspdfmark {pgfid1}{0}{17900937} | |||||
\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}} | |||||
\pgfsyspdfmark {pgfid8}{0}{17900937} | |||||
\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}} | |||||
\pgfsyspdfmark {pgfid15}{0}{17900937} | |||||
\@writefile{toc}{\beamer@sectionintoc {1}{Introduction}{3}{0}{1}} | |||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}} | |||||
\@writefile{nav}{\headcommand {\sectionentry {1}{Introduction}{3}{Introduction}{0}}} | |||||
\@writefile{nav}{\headcommand {\slideentry {1}{0}{1}{3/3}{}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {3}{3}}} | |||||
\pgfsyspdfmark {pgfid22}{0}{17900937} | |||||
\@writefile{toc}{\beamer@sectionintoc {2}{Some \LaTeX {} Examples}{4}{0}{2}} | |||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {3}{3}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {3}{3}}} | |||||
\@writefile{nav}{\headcommand {\sectionentry {2}{Some \LaTeX {} Examples}{4}{Some \LaTeX {} Examples}{0}}} | |||||
\@writefile{toc}{\beamer@subsectionintoc {2}{1}{Mathematics}{4}{0}{2}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {4}{3}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{1}{4}{Mathematics}}} | |||||
\@writefile{nav}{\headcommand {\slideentry {2}{1}{1}{4/4}{Mathematics}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {4}{4}}} | |||||
\pgfsyspdfmark {pgfid29}{0}{17900937} | |||||
\@writefile{toc}{\beamer@subsectionintoc {2}{2}{Tables}{5}{0}{2}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {4}{4}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{2}{5}{Tables}}} | |||||
\newlabel{tab:widgets}{{1}{5}{Tables}{Doc-Start}{}} | |||||
\@writefile{snm}{\beamer@slide {tab:widgets}{5}} | |||||
\@writefile{nav}{\headcommand {\slideentry {2}{2}{1}{5/5}{Tables}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {5}{5}}} | |||||
\pgfsyspdfmark {pgfid36}{0}{17900937} | |||||
\@writefile{toc}{\beamer@subsectionintoc {2}{3}{Figures}{6}{0}{2}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {5}{5}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{2}{3}{6}{Figures}}} | |||||
\newlabel{fig:your-figure}{{1}{6}{Figures}{Doc-Start}{}} | |||||
\@writefile{snm}{\beamer@slide {fig:your-figure}{6}} | |||||
\@writefile{nav}{\headcommand {\slideentry {2}{3}{1}{6/6}{Figures}{0}}} | |||||
\@writefile{nav}{\headcommand {\beamer@framepages {6}{6}}} | |||||
\@writefile{nav}{\headcommand {\beamer@partpages {1}{6}}} | |||||
\@writefile{nav}{\headcommand {\beamer@subsectionpages {6}{6}}} | |||||
\@writefile{nav}{\headcommand {\beamer@sectionpages {4}{6}}} | |||||
\@writefile{nav}{\headcommand {\beamer@documentpages {6}}} | |||||
\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {6}}} | |||||
\gdef \@abspage@last{6} |
@@ -0,0 +1,95 @@ | |||||
%% Requires compilation with XeLaTeX or LuaLaTeX | |||||
% | |||||
% A kenotom presentation template using the beamer kenotom theme | |||||
% | |||||
% author: Christos Choutouridis <c.choutouridis@kenotom.com> | |||||
% | |||||
\documentclass[10pt,xcolor={table,dvipsnames},t]{beamer} | |||||
\usetheme{Kenotom} | |||||
\title{Your Presentation} | |||||
\subtitle{Your subtitle (if there's one)} | |||||
\author{Your Name} | |||||
\institute{kenotom\textcolor{KenotomGreen}{.com}} | |||||
\date{\today} % or use \today | |||||
% \normalframetitle | |||||
% \smallframetitle | |||||
\begin{document} | |||||
% Title frame | |||||
\begin{frame} | |||||
\titlepage | |||||
\end{frame} | |||||
% Uncomment the following lines for an automatically generated outline. | |||||
\begin{frame}{Outline} | |||||
\tableofcontents | |||||
\end{frame} | |||||
\section{Introduction} | |||||
\begin{frame}{Introduction} | |||||
\begin{itemize} | |||||
\item Your introduction goes here! | |||||
\item Use \texttt{itemize} to organize your main points. | |||||
\end{itemize} | |||||
\begin{block}{Examples} | |||||
Some examples of commonly used commands and features are included, to help you get started. | |||||
\end{block} | |||||
\end{frame} | |||||
\section{Some \LaTeX{} Examples} | |||||
\subsection{Mathematics} | |||||
\begin{frame}{Readable Mathematics 42} | |||||
Let $X_1, X_2, \ldots, X_n$ be a sequence of independent and identically distributed random variables with $\text{E}[X_i] = \mu$ and $\text{Var}[X_i] = \sigma^2 < \infty$, and let | |||||
$$S_n = \frac{X_1 + X_2 + \cdots + X_n}{n} | |||||
= \frac{1}{n}\sum_{i}^{n} X_i$$ | |||||
denote their mean. Then as $n$ approaches infinity, the random variables $\sqrt{n}(S_n - \mu)$ converge in distribution to a normal $\mathcal{N}(0, \sigma^2)$. | |||||
\end{frame} | |||||
\subsection{Tables} | |||||
\smallframetitle | |||||
\begin{frame}{Tables} | |||||
\begin{itemize} | |||||
\item Use \texttt{tabular} for basic tables --- see Table~\ref{tab:widgets}, for example. | |||||
\item You can upload a figure (JPEG, PNG or PDF) using the files menu. | |||||
\item To include it in your document, use the \texttt{includegraphics} command (see the comment below in the source code). | |||||
\end{itemize} | |||||
\begin{table} | |||||
\centering | |||||
\begin{tabular}{l r} | |||||
\tableheadrow | |||||
\tableheadcol{Item} & \tableheadcol{Quantity} \\ | |||||
Widgets & 42 \\ | |||||
Gadgets & 13 | |||||
\end{tabular} | |||||
\caption{\label{tab:widgets}An example table.} | |||||
\end{table} | |||||
\end{frame} | |||||
\subsection{Figures} | |||||
\begin{frame} | |||||
\frametitle{Figure Example} | |||||
Commands to include a figure: | |||||
\begin{figure} | |||||
\includegraphics[width=0.75\textwidth]{kernel.png} | |||||
\caption{\label{fig:your-figure}Caption goes here.} | |||||
\end{figure} | |||||
\end{frame} | |||||
\end{document} |
@@ -0,0 +1,5 @@ | |||||
\beamer@sectionintoc {1}{Introduction}{3}{0}{1} | |||||
\beamer@sectionintoc {2}{Some \LaTeX {} Examples}{4}{0}{2} | |||||
\beamer@subsectionintoc {2}{1}{Mathematics}{4}{0}{2} | |||||
\beamer@subsectionintoc {2}{2}{Tables}{5}{0}{2} | |||||
\beamer@subsectionintoc {2}{3}{Figures}{6}{0}{2} |
@@ -0,0 +1,133 @@ | |||||
%% Requires compilation with XeLaTeX or LuaLaTeX | |||||
% | |||||
% A kenotom presentation template using the beamer kenotom theme | |||||
% | |||||
% author: Christos Choutouridis <c.choutouridis@kenotom.com> | |||||
% | |||||
\documentclass[10pt,aspectratio=169,xcolor={table,dvipsnames},t]{beamer} | |||||
\usetheme[aspectratio=169,backround=ribon,theme=classic]{Kenotom} | |||||
\newcommand{\Title}{Your Presentation} | |||||
\newcommand{\SubTitle}{Your subtitle (if there's one)} | |||||
\newcommand{\AuthorName}{Christos Choutouridis} | |||||
\newcommand{\AuthorMail}{c.choutouridis@kenotom.com} | |||||
\newcommand{\Company}{Kenotom} | |||||
\newcommand{\Address}{Eth. Antistasis 16 GR-55133, Thessaloniki - Greece} | |||||
\newcommand{\Telephone}{+30 2310 315470} | |||||
\newcommand{\Date}{\today} | |||||
\begin{document} | |||||
% Uncomment the following if you want the fancy kenotom cover page | |||||
%\CoverFrame | |||||
% Title frame | |||||
\TitleFrame | |||||
% Uncomment the following lines for an automatically generated outline. | |||||
\begin{frame}{Outline} | |||||
\vspace{2em} | |||||
\tableofcontents | |||||
\Vfill | |||||
\end{frame} | |||||
\BeginCountingFrames % Exclude first frames from frame counting | |||||
\section{Introduction} | |||||
\begin{frame}{Introduction} | |||||
This theme contains: | |||||
\begin{tickmarks} | |||||
\item beamer style configurations to match kenotom presentation styles | |||||
\item extra kenotom environments \texttt{tickmarks, bullets} | |||||
\item extra kenotom commands like \texttt{\textbackslash CoverFrame, \textbackslash TitleFrame, \textbackslash BackCoverFrame} etc... | |||||
\end{tickmarks} | |||||
\begin{block}{Examples} | |||||
Beside kenotom specific, some basic LaTeX{} examples of commonly used commands and features are included, to help you get started. | |||||
\end{block} | |||||
\end{frame} | |||||
\section{\LaTeX{} Examples} | |||||
\subsection{Mathematics} | |||||
\begin{frame}{Readable Mathematics 42} | |||||
Let $X_1, X_2, \ldots, X_n$ be a sequence of independent and identically distributed random variables with $\text{E}[X_i] = \mu$ and $\text{Var}[X_i] = \sigma^2 < \infty$, and let | |||||
$$S_n = \frac{X_1 + X_2 + \cdots + X_n}{n} | |||||
= \frac{1}{n}\sum_{i}^{n} X_i$$ | |||||
denote their mean. Then as $n$ approaches infinity, the random variables $\sqrt{n}(S_n - \mu)$ converge in distribution to a normal $\mathcal{N}(0, \sigma^2)$. | |||||
\end{frame} | |||||
\subsection{Tables} | |||||
\begin{frame}{Tables} | |||||
\begin{itemize} | |||||
\item Use \texttt{tabular} for basic tables --- see Table~\ref{tab:widgets}, for example. | |||||
\item You can upload a figure (JPEG, PNG or PDF) using the files menu. | |||||
\end{itemize} | |||||
\begin{table} | |||||
\centering | |||||
\begin{tabular}{l r} | |||||
\tableheadrow | |||||
\tableheadcol{Item} & \tableheadcol{Quantity} \\ | |||||
Widgets & 42 \\ | |||||
Gadgets & 13 | |||||
\end{tabular} | |||||
\caption{\label{tab:widgets}An example table.} | |||||
\end{table} | |||||
\end{frame} | |||||
\subsection{Figures} | |||||
\begin{frame} | |||||
\frametitle{Figure Example} | |||||
To include figures in your document, use the \texttt{includegraphics} command (see the comment below in the source code). | |||||
\begin{figure} | |||||
\includegraphics[height=0.6\textheight]{kernel.png} | |||||
\caption{\label{fig:your-figure}Caption goes here.} | |||||
\end{figure} | |||||
\end{frame} | |||||
\begin{frame}{Title} | |||||
Some text \footnote{knuth:ct:a} | |||||
\begin{bullets}[<+->] | |||||
\item First point. | |||||
\item Second | |||||
\end{bullets} | |||||
\end{frame} | |||||
\begin{frame}{Title2} | |||||
Some text | |||||
\begin{itemize}[<+->] | |||||
\item First point. | |||||
\item Second | |||||
\end{itemize} | |||||
\end{frame} | |||||
\begin{frame}{Title3} | |||||
Some text | |||||
\begin{tickmarks}[<+->] | |||||
\item First point. | |||||
\item Second | |||||
\end{tickmarks} | |||||
\end{frame} | |||||
\BackCoverFrame | |||||
\end{document} |
@@ -0,0 +1,8 @@ | |||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"> | |||||
<defs> | |||||
</defs> | |||||
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" > | |||||
<path d="M 83.254 90 H 59.253 c -1.104 0 -2 -0.896 -2 -2 V 54.696 c 0 -1.104 0.896 -2 2 -2 h 9.42 l 1.158 -8.979 H 59.253 c -1.104 0 -2 -0.896 -2 -2 v -8.286 c 0 -3.571 0.874 -8.319 8.432 -8.319 l 4.873 -0.002 v -7.801 c -1.871 -0.154 -4.797 -0.32 -8.015 -0.32 c -9.2 0 -14.693 5.666 -14.693 15.156 v 9.572 c 0 1.104 -0.896 2 -2 2 h -9.208 v 8.979 h 9.208 c 1.104 0 2 0.896 2 2 V 88 c 0 1.104 -0.896 2 -2 2 H 6.747 C 3.027 90 0 86.974 0 83.253 V 6.747 C 0 3.026 3.027 0 6.747 0 h 76.507 C 86.974 0 90 3.026 90 6.747 v 76.506 C 90 86.974 86.974 90 83.254 90 z M 61.253 86 h 22.001 C 84.769 86 86 84.768 86 83.253 V 6.747 C 86 5.232 84.769 4 83.254 4 H 6.747 C 5.232 4 4 5.232 4 6.747 v 76.506 C 4 84.768 5.232 86 6.747 86 H 43.85 V 56.696 h -9.208 c -1.104 0 -2 -0.896 -2 -2 V 41.717 c 0 -1.104 0.896 -2 2 -2 h 9.208 v -7.572 c 0 -11.816 7.163 -19.156 18.693 -19.156 c 4.763 0 8.981 0.356 10.278 0.529 c 0.994 0.132 1.736 0.98 1.736 1.982 v 11.608 c 0 1.104 -0.895 2 -1.999 2 l -6.873 0.003 c -3.995 0 -4.433 1.383 -4.433 4.319 v 6.286 h 10.853 c 0.575 0 1.122 0.248 1.502 0.679 c 0.38 0.432 0.555 1.006 0.481 1.577 l -1.674 12.979 c -0.129 0.997 -0.978 1.744 -1.983 1.744 h -9.179 V 86 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" /> | |||||
</g> | |||||
</svg> |
@@ -0,0 +1,9 @@ | |||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve"> | |||||
<defs> | |||||
</defs> | |||||
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" > | |||||
<path d="M 23.575 89.924 H 1.407 V 28.439 h 22.167 V 89.924 z M 5.835 85.496 h 13.311 v -52.63 H 5.835 V 85.496 z M 12.491 25.072 C 5.603 25.072 0 19.467 0 12.576 c 0 -6.893 5.603 -12.5 12.491 -12.5 c 6.887 0 12.491 5.608 12.491 12.5 C 24.982 19.467 19.379 25.072 12.491 25.072 z M 12.491 4.504 c -4.446 0 -8.063 3.621 -8.063 8.072 c 0 4.448 3.617 8.068 8.063 8.068 c 4.446 0 8.063 -3.619 8.063 -8.068 C 20.554 8.125 16.937 4.504 12.491 4.504 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" /> | |||||
<path d="M 90 89.924 H 67.846 V 59.962 c 0 -8.75 -1.048 -12.915 -7.001 -12.915 c -6.14 0 -8.422 3.371 -8.422 12.439 v 30.438 H 30.269 V 28.439 h 21.439 v 4.046 c 3.376 -3.03 8.363 -5.459 14.806 -5.459 C 87.21 27.025 90 41.883 90 56.417 V 89.924 z M 72.274 85.496 h 13.298 v -29.08 c 0 -15.411 -3.189 -24.963 -19.059 -24.963 c -7.81 0 -12.864 4.328 -14.819 8.035 l -0.623 1.181 h -3.792 v -7.803 H 34.697 v 52.63 h 13.298 v -26.01 c 0 -4.614 0 -16.867 12.85 -16.867 c 11.429 0 11.429 11.282 11.429 17.343 V 85.496 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" /> | |||||
</g> | |||||
</svg> |