- Beamer란 $\LaTeX$ 문서의 발표자료 형식으로 강의록에서 많이 사용됨
- 특히, 수식이 많은 자료를 presentation 형태로 만들 때 유용
- $\LaTeX$이 설치되어 있는 경우, R markdown으로 Beamer 문서를 만들 수 있음
---
title: "Rmarkdown to Beamer"
author: "Hyunsung Kim"
date: December 27, 2019
institute: Department of Statistics \newline Chung-Ang University
fonttheme: "professionalfonts"
output:
beamer_presentation:
theme: "metropolis"
---
슬라이드 만들기
- 아래와 같이
##
으로 슬라이드를 구분
- 수식의 경우, LaTeX 코드 사용
## Slide with Math
- inline math : $\widehat X = \sum_{i=1}^n X_i$
- math block
$$
\widehat X = \sum_{i=1}^n X_i
$$
R output 넣기
## Slide with R Output
```{r cars, echo = TRUE}
summary(cars)
```
그래프 넣기
## Slide with Plot
```{r pressure}
plot(pressure)
```
그래프 caption 및 크기 조절
```{r pressure, fig.cap="caption", out.width="250px", out.height="180px"}
plot(pressure)
```