Skip to content

how to only display the main caption #13118

Answered by mcanouil
Liripo asked this question in Q&A
Discussion options

You must be logged in to vote

You don't need to ping when replying. Also, preferable to reply in the same thread.

If you want to combine the figures as one without having the cross-references, then you have to do so in R.

edit:

---
format: html
---

```{r}
#| label: fig-charts
#| fig-cap: "Cars"
par(mfrow = c(1, 2))
plot(cars)
plot(cars, col = "red")
par(mfrow = c(1, 1))
```

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@mcanouil
Comment options

Answer selected by Liripo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment