Replies: 1 comment 5 replies
-
Note that H1 is used for Could you share a small self-contained "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.
```` Edit: here is a reproducible example ---
title: "Quarto Playground"
format: html
anchor-sections: true
toc: true
---
This is a playground for Quarto.
# H1 Heading
## H2 Heading |
Beta Was this translation helpful? Give feedback.
5 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.
-
Description
I want to have anchors for both h1 and h2. Or alternatively, just for h2, but then I want to be able to number theorems/propositions based on section rather than chapter.
Beta Was this translation helpful? Give feedback.
All reactions