Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- % !TEX TS-program = xelatex
- % !TEX encoding = UTF-8 Unicode
- \documentclass{beamer}
- \usepackage{ifxetex}
- \ifxetex
- \usepackage{fontspec} % Font selection for XeLaTeX; see fontspec.pdf for documentation
- \defaultfontfeatures{Mapping=tex-text} % to support TeX conventions like ``---''
- \usepackage{xunicode} % Unicode support for LaTeX character names (accents, European chars, etc)
- \usepackage{xltxtra} % Extra customizations for XeLaTeX
- \else
- \usepackage[T1]{fontenc}
- \usepackage[utf8]{inputenc}
- \fi
- \usepackage{relsize,fancyvrb}
- \usepackage{tikz}
- \usetikzlibrary{arrows,shapes,shadows,mindmap}
- \mode<presentation>
- {
- %\usetheme{Manhattan}
- \usetheme{Miun}
- % or ...
- \setbeamercovered{transparent}
- % or whatever (possibly just delete it)
- }
- \usepackage[english]{babel}
- % or whatever
- \ifxetex
- \setmainfont{Palatino Linotype} % set the main body font (\textrm),
- \setsansfont{Gill Sans MT}
- \else
- % use default beamer font
- \fi
- \title%[Short Paper Title] % (optional, use only with long paper titles)
- {Example Presentation}
- \subtitle{Subtitle} % (optional)
- \author%[] (optional, use only with lots of authors)
- {David~Krapohl}
- % - Use the \inst{?} command only if the authors have different
- % affiliation.
- \institute[Mid Sweden University] % (optional, but mostly needed)
- { Department of Information Technology and Media\\
- Mid Sweden University}
- % - Use the \inst command only if there are several affiliations.
- % - Keep it simple, no one is interested in your street address.
- \date% (optional)
- {\today}
- \subject{Talks}
- % This is only inserted into the PDF information catalog. Can be left
- % out.
- % Delete this, if you do not want the table of contents to pop up at
- % the beginning of each subsection:
- \AtBeginSubsection[]
- {
- \begin{frame}<beamer>{Outline}
- \tableofcontents[currentsection,currentsubsection]
- \end{frame}
- }
- % If you wish to uncover everything in a step-wise fashion, uncomment
- % the following command:
- %\beamerdefaultoverlayspecification{<+->}
- \begin{document}
- %====================================================================%
- %====================================================================%
- \begin{frame}
- \titlepage
- \end{frame}
- %====================================================================%
- \section{My only slide}
- %====================================================================%
- \begin{frame}{My Only slide}{Subtitle is optional}
- \begin{itemize}
- \item Using \texttt{itemize} a lot
- \item Second item
- \item Third \alert{important item}
- \item Another item
- \end{itemize}
- \begin{block}{Block title}
- Nothing is for sure\\
- $$i\hbar\frac{\partial}{\partial t} = \hat{H}\Psi$$
- \end{block}
- \end{frame}
- %====================================================================%
- \section{What are Overlays and Alerts}
- %====================================================================%
- \begin{frame}{Overlays}{Uncovering items}
- % You can create overlays\dots
- \begin{itemize}
- \item
- using overlay specifications:
- \begin{itemize}
- \item<3->
- First item.
- \item<4->
- Second item.
- \end{itemize}
- \item
- using the general \texttt{uncover} command:
- \begin{itemize}
- \uncover<5->{\item
- First item.}
- \uncover<6->{\item
- Second item.}
- \end{itemize}
- \end{itemize}
- \end{frame}
- %====================================================================%
- %\section*{Summary}
- %====================================================================%
- \begin{frame}{Summary}{Is not necessary here}
- % Keep the summary *very short*.
- \begin{itemize}
- \item
- The \alert{first result} of your talk in one or two lines.
- \item
- The \alert{second result} of your talk in one or two lines.
- \item
- Perhaps a \alert{third}, but that should be it.
- \end{itemize}
- \end{frame}
- \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement