|
- %% 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}
|