-
Notifications
You must be signed in to change notification settings - Fork 392
Open
Description
The customizing numbering seems not to work. See more detailed discussion in Q&A #1748 below.
Discussed in #1748
Originally posted by sammo3182 August 9, 2022
I was excited about the custom setting of references but cannot find the correct way to set them. In the example below, I tried to change the section and figure labels to alphabetic and sub labels to roman. But as the screenshot shows, none of the section numbers, figure numbers, or their references changed in either pdf or HTML format. I tried to move number-sections: true and/or crossref under pdf. Nothing changed.
What I hope to get are:
- Customizing the section, table, and figure numbering and correctly cross-referring them. (Custom section numbering #873 discussed this issue, but I wonder if there is an easier way to do this for HTML, pdf, and docx all)
- Setting the numbering of some sections differently from the previous, for instance,
arabicfor main content sections andalphafor appendices. (Restart Chapter Numbers by Part #1283 post a similar demand but it seems no good solution yet)
---
title: "test"
number-sections: true
format:
pdf: default
html: default
crossref:
sec-labels: alpha A
subref-labels: roman i
---
# section
@fig-test
# section {#sec-test1}
## subsection {#sec-test2}
@sec-test1
@sec-test2
# section
# References {.unnumbered}
```{r fig-test}
#| fig-cap: "A plot"
plot(mtcars$mpg)
```
grantmcdermott
