I have computed subfigures in a quarto document that are too large to hold on a single page when exported to pdf (see MWE below):
---
title: "MWE"
keep-tex: true
format:
pdf:
mathspec: true
---
See @fig-test
```{r}
#| label: fig-test
#| fig-cap: Random plots
#| fig-subcap:
#| - Random 1
#| - Random 2
#| - Random 3
#| - Random 4
#| - Random 5
for (i in 1:5)
plot(rnorm(100), pch = 19, cex = 0.5)
```
Does anyone know if this can be handled? I posted my trick to handle this so far (modifying the tex file) on GitHub and also on a related question, but I wonder if there is a native quarto solution for computed figures. Of course, I am aware of using #| layout-ncol
and #| layout-nrow
, but let us say that I want full size figures
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744921490a4601161.html
评论列表(0条)