Advertisement
Hirwanto

miun02

Apr 1st, 2015
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 3.92 KB | None | 0 0
  1. % !TEX TS-program = xelatex
  2. % !TEX encoding = UTF-8 Unicode
  3.  
  4. \documentclass{beamer}
  5.  
  6. \usepackage{ifxetex}
  7.  
  8. \ifxetex
  9.     \usepackage{fontspec} % Font selection for XeLaTeX; see fontspec.pdf for documentation
  10.     \defaultfontfeatures{Mapping=tex-text} % to support TeX conventions like ``---''
  11.     \usepackage{xunicode} % Unicode support for LaTeX character names (accents, European chars, etc)
  12.     \usepackage{xltxtra} % Extra customizations for XeLaTeX
  13. \else
  14.     \usepackage[T1]{fontenc}
  15.   \usepackage[utf8]{inputenc}
  16. \fi
  17.  
  18. \usepackage{relsize,fancyvrb}
  19.  
  20. \usepackage{tikz}
  21.     \usetikzlibrary{arrows,shapes,shadows,mindmap}
  22.  
  23.  
  24. \mode<presentation>
  25. {
  26.   %\usetheme{Manhattan}
  27.   \usetheme{Miun}
  28.   % or ...
  29.   \setbeamercovered{transparent}
  30.   % or whatever (possibly just delete it)
  31. }
  32.  
  33. \usepackage[english]{babel}
  34. % or whatever
  35.  
  36. \ifxetex
  37.     \setmainfont{Palatino Linotype} % set the main body font (\textrm),
  38.     \setsansfont{Gill Sans MT}
  39. \else
  40. % use default beamer font
  41. \fi
  42.  
  43.  
  44. \title%[Short Paper Title] % (optional, use only with long paper titles)
  45. {Example Presentation}
  46.  
  47. \subtitle{Subtitle} % (optional)
  48.  
  49. \author%[] (optional, use only with lots of authors)
  50. {David~Krapohl}
  51. % - Use the \inst{?} command only if the authors have different
  52. %   affiliation.
  53.  
  54. \institute[Mid Sweden University] % (optional, but mostly needed)
  55. { Department of Information Technology and Media\\
  56.  Mid Sweden University}
  57. % - Use the \inst command only if there are several affiliations.
  58. % - Keep it simple, no one is interested in your street address.
  59.  
  60. \date% (optional)
  61. {\today}
  62.  
  63. \subject{Talks}
  64. % This is only inserted into the PDF information catalog. Can be left
  65. % out.
  66.  
  67. % Delete this, if you do not want the table of contents to pop up at
  68. % the beginning of each subsection:
  69. \AtBeginSubsection[]
  70. {
  71.  \begin{frame}<beamer>{Outline}
  72.    \tableofcontents[currentsection,currentsubsection]
  73.  \end{frame}
  74. }
  75.  
  76.  
  77. % If you wish to uncover everything in a step-wise fashion, uncomment
  78. % the following command:
  79.  
  80. %\beamerdefaultoverlayspecification{<+->}
  81.  
  82.  
  83. \begin{document}
  84.  
  85. %====================================================================%
  86. %====================================================================%
  87.  
  88. \begin{frame}
  89.  \titlepage
  90. \end{frame}
  91.  
  92. %====================================================================%
  93. \section{My only slide}
  94. %====================================================================%
  95.  
  96. \begin{frame}{My Only slide}{Subtitle is optional}
  97.  
  98.  \begin{itemize}
  99.  \item Using \texttt{itemize} a lot
  100.  \item Second item
  101.  \item Third \alert{important item}
  102.  \item Another item
  103.  \end{itemize}
  104.  
  105.  \begin{block}{Block title}
  106.    Nothing is for sure\\
  107.    $$i\hbar\frac{\partial}{\partial t} = \hat{H}\Psi$$
  108.  \end{block}
  109. \end{frame}
  110.  
  111. %====================================================================%
  112. \section{What are Overlays and Alerts}
  113. %====================================================================%
  114.  
  115. \begin{frame}{Overlays}{Uncovering items}
  116.  
  117. %  You can create overlays\dots
  118.   \begin{itemize}
  119.  \item
  120.    using overlay specifications:
  121.    \begin{itemize}
  122.    \item<3->
  123.      First item.
  124.    \item<4->
  125.      Second item.
  126.    \end{itemize}
  127.  \item
  128.    using the general \texttt{uncover} command:
  129.    \begin{itemize}
  130.      \uncover<5->{\item
  131.        First item.}
  132.      \uncover<6->{\item
  133.        Second item.}
  134.    \end{itemize}
  135.  \end{itemize}
  136. \end{frame}
  137.  
  138. %====================================================================%
  139. %\section*{Summary}
  140. %====================================================================%
  141.  
  142. \begin{frame}{Summary}{Is not necessary here}
  143.  
  144.   % Keep the summary *very short*.
  145.   \begin{itemize}
  146.  \item
  147.    The \alert{first result} of your talk in one or two lines.
  148.  \item
  149.    The \alert{second result} of your talk in one or two lines.
  150.  \item
  151.    Perhaps a \alert{third}, but that should be it.
  152.  \end{itemize}
  153. \end{frame}
  154.  
  155. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement