Kenotom beamer presentation style and template
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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