Kenotom beamer presentation style and template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
3.4 KiB

  1. %% Requires compilation with XeLaTeX or LuaLaTeX
  2. %
  3. % A kenotom presentation template using the beamer kenotom theme
  4. %
  5. % author: Christos Choutouridis <c.choutouridis@kenotom.com>
  6. %
  7. \documentclass[10pt,aspectratio=169,xcolor={table,dvipsnames},t]{beamer}
  8. \usetheme[aspectratio=169,backround=ribon,theme=classic]{Kenotom}
  9. \newcommand{\Title}{Your Presentation}
  10. \newcommand{\SubTitle}{Your subtitle (if there's one)}
  11. \newcommand{\AuthorName}{Christos Choutouridis}
  12. \newcommand{\AuthorMail}{c.choutouridis@kenotom.com}
  13. \newcommand{\Company}{Kenotom}
  14. \newcommand{\Address}{Eth. Antistasis 16 GR-55133, Thessaloniki - Greece}
  15. \newcommand{\Telephone}{+30 2310 315470}
  16. \newcommand{\Date}{\today}
  17. \begin{document}
  18. % Uncomment the following if you want the fancy kenotom cover page
  19. %\CoverFrame
  20. % Title frame
  21. \TitleFrame
  22. % Uncomment the following lines for an automatically generated outline.
  23. \begin{frame}{Outline}
  24. \vspace{2em}
  25. \tableofcontents
  26. \Vfill
  27. \end{frame}
  28. \BeginCountingFrames % Exclude first frames from frame counting
  29. \section{Introduction}
  30. \begin{frame}{Introduction}
  31. This theme contains:
  32. \begin{tickmarks}
  33. \item beamer style configurations to match kenotom presentation styles
  34. \item extra kenotom environments \texttt{tickmarks, bullets}
  35. \item extra kenotom commands like \texttt{\textbackslash CoverFrame, \textbackslash TitleFrame, \textbackslash BackCoverFrame} etc...
  36. \end{tickmarks}
  37. \begin{block}{Examples}
  38. Beside kenotom specific, some basic LaTeX{} examples of commonly used commands and features are included, to help you get started.
  39. \end{block}
  40. \end{frame}
  41. \section{\LaTeX{} Examples}
  42. \subsection{Mathematics}
  43. \begin{frame}{Readable Mathematics 42}
  44. 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
  45. $$S_n = \frac{X_1 + X_2 + \cdots + X_n}{n}
  46. = \frac{1}{n}\sum_{i}^{n} X_i$$
  47. 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)$.
  48. \end{frame}
  49. \subsection{Tables}
  50. \begin{frame}{Tables}
  51. \begin{itemize}
  52. \item Use \texttt{tabular} for basic tables --- see Table~\ref{tab:widgets}, for example.
  53. \item You can upload a figure (JPEG, PNG or PDF) using the files menu.
  54. \end{itemize}
  55. \begin{table}
  56. \centering
  57. \begin{tabular}{l r}
  58. \tableheadrow
  59. \tableheadcol{Item} & \tableheadcol{Quantity} \\
  60. Widgets & 42 \\
  61. Gadgets & 13
  62. \end{tabular}
  63. \caption{\label{tab:widgets}An example table.}
  64. \end{table}
  65. \end{frame}
  66. \subsection{Figures}
  67. \begin{frame}
  68. \frametitle{Figure Example}
  69. To include figures in your document, use the \texttt{includegraphics} command (see the comment below in the source code).
  70. \begin{figure}
  71. \includegraphics[height=0.6\textheight]{kernel.png}
  72. \caption{\label{fig:your-figure}Caption goes here.}
  73. \end{figure}
  74. \end{frame}
  75. \begin{frame}{Title}
  76. Some text \footnote{knuth:ct:a}
  77. \begin{bullets}[<+->]
  78. \item First point.
  79. \item Second
  80. \end{bullets}
  81. \end{frame}
  82. \begin{frame}{Title2}
  83. Some text
  84. \begin{itemize}[<+->]
  85. \item First point.
  86. \item Second
  87. \end{itemize}
  88. \end{frame}
  89. \begin{frame}{Title3}
  90. Some text
  91. \begin{tickmarks}[<+->]
  92. \item First point.
  93. \item Second
  94. \end{tickmarks}
  95. \end{frame}
  96. \BackCoverFrame
  97. \end{document}