我试图将两个数字放在两行的一列中,但是下面的代码在写入.Rmd
文件并生成PDF输出时没有给出所需的输出:
---
title: "Stack the figures in two rows"
output:
pdf_document:
extra_dependencies: "subfig"
---
```{r stack, out.width="50%", fig.cap="FIGS", fig.subcap=c("A", "B"), fig.nrow=2, fig.ncol=1, fig.align="center", echo=FALSE}
plot(rnorm(10), rnorm(10))
plot(rnorm(10), rnorm(10))
代码生成输出:
![](https://i.stack.imgur.com/U13V1.png)
我如何使图像在顶行居中,就像在底行一样?有没有一种方法可以不使用`par`来做到这一点?
1条答案
按热度按时间fivyi3re1#
下面是使用
par
的建议