-
DescriptionI'm using Quarto 1.6.39 with RStudio 2024.12.0 and R 4.4.2. I created an instance of the quarto book template. In intro.qmd I appended this:
Then I executed In the html, I get 27 figures with captions |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Change the sub-reference labels: https://quarto.org/docs/authoring/cross-reference-options.html#numbering (edit: the issue is independent of the counter display value) Edit: it seems to be a LaTeX limitation which you can lift with some pure LaTeX tweak via Below a fully reproducible example for |
Beta Was this translation helpful? Give feedback.
Change the sub-reference labels: https://quarto.org/docs/authoring/cross-reference-options.html#numbering (edit: the issue is independent of the counter display value)
Edit: it seems to be a LaTeX limitation which you can lift with some pure LaTeX tweak via
include-in-header
or modifying the partials/templates.The answer is on the internet (I did not investigate or try what LaTeX code works or not because it's really LaTeX specific and not much related to Quarto itself).
You can use
keep-tex: true
to investigate the LaTeX code and find the LaTeX workaround required for your use case.Below a fully reproducible example for
html
.Code