Beamer
Learning Objectives:
Beamer package to make slides:
- Title Page
- Content Slide
- List
- Figure
First page
Presentation slides can be easily created using documentclass bemaer. The first page introduction slides is exactly the same as when we write an article.
\documentclass{beamer}
\title{Hello}
\author{VIP \and VVIP}
\date{\today}
\begin{document}
\maketitle
\end{document}
Content
For the rest of document, the only difference is to specify from where to where a slide starts and ends. To start, use \begin{frame}
to start slide and \end{frame}
to end slide.
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{Happy}
Hello World!
\end{frame}
\end{document}
List
Very often, bullet points are used in slides. We can use itemize, enumerate, and description lists.
\begin{frame}
\frametitle{Conclusion}
\begin{itemize}
\item lalala
\item hahaha
\end{itemize}
\end{frame}
Picture
To include picture, we also use includegraphics{}
.
\begin{frame}
\frametitle{Visual}
\includegraphics{haha.jpg}
\end{frame}