Replies: 1 comment 7 replies
-
Could you share a small "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am including figures into a .qmd document, via

and exporting to a pdf via latex. My figures are getting cut off, and extending down into below the bottom of the page.Is there any way to have the figure captions instead appear on the next page?
(I have searched around and found few to no solutions in the Tex community online. Some responses suggest that individuals shorten their captions or have a smaller figure -- this is not really an option for many situations where, say, a journal will want a long caption that explains figure details and the figure is detailed or has multiple panels.)
Beta Was this translation helpful? Give feedback.
All reactions