728x90
반응형
Overleaf에서 LaTex을 이용해 PPT 만들기
- beamer를 사용하는 예제 코드
\documentclass{beamer} % Beamer 클래스 사용
\title{Sample Presentation} % 프레젠테이션 제목
\author{Your Name} % 저자 이름
\date{\today} % 날짜, 현재 날짜를 자동으로 삽입
\begin{document} % 문서 시작
\frame{\titlepage} % 제목 페이지 슬라이드 생성
\begin{frame}
\frametitle{Table of Contents} % 목차 슬라이드 제목
\tableofcontents % 목차 삽입
\end{frame}
\section{Introduction} % 'Introduction' 섹션 시작
\begin{frame}
\frametitle{Introduction} % 슬라이드 제목
This is the introduction to the presentation. % 슬라이드 내용
\end{frame}
\section{Main Content} % 'Main Content' 섹션 시작
\begin{frame}
\frametitle{First Slide of Main Content} % 슬라이드 제목
Here is some main content.
\begin{itemize} % 항목 목록 시작
\item First item % 첫 번째 항목
\item Second item % 두 번째 항목
\item Third item % 세 번째 항목
\end{itemize} % 항목 목록 끝
\end{frame}
\begin{frame}
\frametitle{Second Slide of Main Content} % 슬라이드 제목
More main content.
\begin{block}{Block Title} % 블록 제목
This is a block with some text. % 블록 내용
\end{block}
\begin{example} % 예제 블록 시작
This is an example block. % 예제 블록 내용
\end{example} % 예제 블록 끝
\end{frame}
\section{Conclusion} % 'Conclusion' 섹션 시작
\begin{frame}
\frametitle{Conclusion} % 슬라이드 제목
This is the conclusion of the presentation.
\begin{itemize} % 항목 목록 시작
\item Summary of the presentation % 첫 번째 항목
\item Final thoughts % 두 번째 항목
\end{itemize} % 항목 목록 끝
\end{frame}
\end{document} % 문서 끝
\begin{frame}
\frametitle{Introduction} % 슬라이드 제목
This is the introduction to the presentation. % 슬라이드 내용
\end{frame}
- frame을 통해 슬라이드를 생성한다.
- \frametitle{ } : { }안에 슬라이드 제목을 입력한다.
\begin{itemize}
\item First item
\item[$\bullet$] Second item
\item[$\backslash$] Third item
\end{itemize}
- itemize를 통해 항목을 지정할 수 있다.
- \item[] : [ ]안에
$\bullet$
을 넣어 항목기호를 원으로 변경
REF
728x90
반응형