我有以下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
来更改宽高比。 / p>
使用tint
/ tufte
时,图形的宽度可能小于主列的宽度吗?
PS pressure
来自datasets
软件包。
我可以这样伪造:
```{r two, echo=FALSE, fig.width=4}
par(mfrow = c(1, 2))
plot(pressure)
```
但是有没有那么笨拙的解决方案?