Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created August 14, 2011 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/1144840 to your computer and use it in GitHub Desktop.
Save kunigami/1144840 to your computer and use it in GitHub Desktop.
Example of a simple beamer code
\documentclass{beamer}
\usecolortheme{wolverine}
\useinnertheme{circles}
\useoutertheme{infolines}
\usefonttheme{default}
\title[Short title]{
Title
}
\author[Short author name]{
Author's name
}
\institute[Short name of inst.]{
Name of institution
}
\begin{document}
\begin{frame}[plain]
\maketitle
\end{frame}
\section[Short name of section]{Name of Section}
\subsection[Short name of subsection]{Name of Subsection}
\frame
{
\frametitle{Frame title}
Itemize
\begin{itemize}
\item Item
\end{itemize}
Enumerate
\begin{enumerate}
\item Item
\end{enumerate}
\begin{block}{Block name}
Block
\end{block}
}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment