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.

96 lignes
2.5 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,xcolor={table,dvipsnames},t]{beamer}
  8. \usetheme{Kenotom}
  9. \title{Your Presentation}
  10. \subtitle{Your subtitle (if there's one)}
  11. \author{Your Name}
  12. \institute{kenotom\textcolor{KenotomGreen}{.com}}
  13. \date{\today} % or use \today
  14. % \normalframetitle
  15. % \smallframetitle
  16. \begin{document}
  17. % Title frame
  18. \begin{frame}
  19. \titlepage
  20. \end{frame}
  21. % Uncomment the following lines for an automatically generated outline.
  22. \begin{frame}{Outline}
  23. \tableofcontents
  24. \end{frame}
  25. \section{Introduction}
  26. \begin{frame}{Introduction}
  27. \begin{itemize}
  28. \item Your introduction goes here!
  29. \item Use \texttt{itemize} to organize your main points.
  30. \end{itemize}
  31. \begin{block}{Examples}
  32. Some 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}
  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. \smallframetitle
  45. \begin{frame}{Tables}
  46. \begin{itemize}
  47. \item Use \texttt{tabular} for basic tables --- see Table~\ref{tab:widgets}, for example.
  48. \item You can upload a figure (JPEG, PNG or PDF) using the files menu.
  49. \item To include it in your document, use the \texttt{includegraphics} command (see the comment below in the source code).
  50. \end{itemize}
  51. \begin{table}
  52. \centering
  53. \begin{tabular}{l r}
  54. \tableheadrow
  55. \tableheadcol{Item} & \tableheadcol{Quantity} \\
  56. Widgets & 42 \\
  57. Gadgets & 13
  58. \end{tabular}
  59. \caption{\label{tab:widgets}An example table.}
  60. \end{table}
  61. \end{frame}
  62. \subsection{Figures}
  63. \begin{frame}
  64. \frametitle{Figure Example}
  65. Commands to include a figure:
  66. \begin{figure}
  67. \includegraphics[width=0.75\textwidth]{kernel.png}
  68. \caption{\label{fig:your-figure}Caption goes here.}
  69. \end{figure}
  70. \end{frame}
  71. \end{document}