• Beamer란 $\LaTeX$ 문서의 발표자료 형식으로 강의록에서 많이 사용됨
  • 특히, 수식이 많은 자료를 presentation 형태로 만들 때 유용
  • $\LaTeX$이 설치되어 있는 경우, R markdown으로 Beamer 문서를 만들 수 있음

R markdown의 header

---
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"
---
  • title : 제목

  • author : 저자이름

  • date : 날짜

  • institute : 소속

  • fonttheme : Beamer에서 사용할 폰트(LaTeX 폰트 기준) 결정

    • professionalfonts는 수식의 경우만 serif 폰트로 변환해줌
  • output : 출력 옵션 결정

    • theme : LaTex Beamer의 테마 결정

슬라이드 만들기

  • 아래와 같이 ##으로 슬라이드를 구분
  • 수식의 경우, 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)
```