我有以下Rmd
文件使用tint
基于包的tufte
包:
---
title: "Test title"
author: ""
date: ""
output:
tint::tintPdf
classoption: twoside
---
```{r one, echo=FALSE, fig.width=8}
plot(pressure)
```
```{r two, echo=FALSE, fig.width=4}
plot(pressure)
```
我希望第二个数字的宽度是第一个数字的一半,但看起来两者都是主列的宽度,而我实际上只是通过指定fig.width
.
tint
使用/时是否可以有一个比主列宽度窄的图形tufte
?
PSpressure
来自datasets
包装。
编辑
我可以像这样伪造它:
```{r two, echo=FALSE, fig.width=4}
par(mfrow = c(1, 2))
plot(pressure)
```
但是有没有更简洁的解决方案?