ETC/Informations

Beamer 사용하기

해리s 2014. 11. 30. 17:42

Beamer는 Latex를 이용하면 latex로 ppt 같은 것을 만들 수 있다. 



\documentclass{beamer}

\useinnertheme{circles}

\useoutertheme{infolines}

\usecolortheme{beaver}


\title[This is a short title]

{long long long long long title}

\subtitle{subtitle}

\author{Sungjoon Choi}

\institute[SNU]

{ CPSLAB \\

Seoul National University}

\date{\today}


% Start

\begin{document}


% Title

\begingroup

\setbeamertemplate{footline}{\vspace*{-0cm}\centering Some slides are from "blah blah blah"\\  \par} 

\frame{\titlepage}

\endgroup


% 0. Outline

\section[Outline]{Outline}

\frame{\tableofcontents}


% 1. Section 1

\section{Section 1}

\subsection{Subsection 1-1}


% Contents

\frame{\tableofcontents[currentsection]}


\frame

{

\frametitle{ABC}

\begin{itemize}

\item<1-> A

\item<2-> B

\item<3-> C      

\end{itemize}

}


% Section 2

\section{Section 2}


% Contents

\frame{\tableofcontents[currentsection]}


\frame

{

\frametitle{DE}

\begin{itemize}

\item<1-> D

\item<2-> E      

\end{itemize}

}


\end{document}