96 lines
2.5 KiB
TeX
96 lines
2.5 KiB
TeX
%% 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}
|