rmarkdown
동일한 문서에서 세로 및 가로 레이아웃이 모두있는 pdf를 생성 하는 데 사용하는 방법이 궁금합니다 . rmarkdown
라텍스를 사용하는 것보다 더 나은 순수한 옵션 이 있다면 .
다음은 재현 가능한 작은 예입니다. 먼저 .Rmd
RStudio에서 렌더링 ( PDF Knit 버튼 누르기)하면 모든 페이지가 가로 레이아웃으로 된 pdf가 생성됩니다.
---
title: "All pages landscape"
output: pdf_document
classoption: landscape
---
```{r}
summary(cars)
```
\newpage
```{r}
summary(cars)
```
그런 다음 세로 및 가로 레이아웃이 혼합 된 문서를 만들려고합니다. 의 기본 설정은 여기YAML
의 '포함'섹션에 따라 수행 됩니다 . in_header
파일 'header.tex'는 포함 \usepackage{lscape}
, 권장 패키지 knitr
가로 레이아웃 여기를 . .tex
파일과 같은 디렉토리에 .Rmd
파일.
---
title: "Mixing portrait and landscape"
output:
pdf_document:
includes:
in_header: header.tex
---
Portrait:
```{r}
summary(cars)
```
\newpage
\begin{landscape}
Landscape:
```{r}
summary(cars)
```
\end{landscape}
\newpage
More portrait:
```{r}
summary(cars)
```
그러나이 코드는 오류를 발생시킵니다.
# ! You can't use `macro parameter character #' in horizontal mode.
# l.116 #
# pandoc.exe: Error producing PDF from TeX source
# Error: pandoc document conversion failed with error 43
어떤 도움이라도 대단히 감사합니다.
latex
무지도 책임이 있다고 생각 합니다.