Day3 - quarto slide | 2023-09-05
Jinhwan Kim
프레젠테이션 제작
Quarto presentation
RevealJS
PowerPoint
Beamer (LaTeX / PDF)
R / Rstudio를 활용
일관된 포맷 / 퀄리티
정기적일때 좋음
File -> New File -> Quarto Presentation
아니면 YAML에 format: revealjs
---
title: ''
author: ''
format: revealjs
---
슬라이드 장 구분은 ##
---
title: "Title"
author: "author"
format: revealjs
---
## First
- Item
- Item2
## Second
- Item3
- Item4
이렇게 나눠서 하려면
.incremental
로 구분
:::{.incremental}
- Item
- Item2
:::
title: "My Presentation"
format:
revealjs:
incremental: true
나오게 하려면
.fragment
:::{.fragment}
- Item
- Item2
:::
이건 행 구분 안한 슬라이드 (왼쪽에만 몰림)
Columns 태그에 : 4개 확인
:::: {.columns}
::: {.column width="40%"}
- 행 구분한
:::
::: {.column width="60%"}
- 슬라이드
:::
::::
:::{.notes}
발표자 노트 내용 (S키로)
:::
---
title: "Presentation"
format:
revealjs:
theme: beige
---
::: aside
이렇게 달 수 있습니다.
:::
- 이렇게도 ^[각주내용]
- 달 수 있음 ^[각주내용2]
format:
revealjs:
logo: img/zarathu.png
::: footer
Another footer
:::
Another footer
#| fig-width: 3
#| fig-height: 4
::: {.panel-tabset}
### TabA
ContentA
### TabB
ContentB
1일차 - R 기초 슬라이드 R 기초연산 : 벡터(vector)
~ 벡터 만들기
만들어보기
YAML 은 아래 참조
---
format:
revealjs:
navigation-mode: linear
controls-layout: edges
controls-back-arrows: visible
slide-number: true
show-slide-number: all
preview-links: auto
progress: true
history: true
hash-type: number
theme: default
code-block-background: true
highlight-style: github
code-link: false
code-copy: true
pagetitle: "R4CR R 기초"
author-meta: "jinseob2kim"
date-meta: "2023-06-19"
---
R4CR - Quarto presentation