### Document Template ### Internal Document - HTML ``` --- title: "My document" format: html: toc: true toc-depth: 4 # default is 3 toc-title: Contents toc-location: left # default is right, option is 'body' number-sections: true number-depth: 3 html-math-method: katex css: styles.css self-contained: true anchor-sections: true smooth-scroll: true --- ``` If you want to exclude a heading from the table of contents, add both the `.unnumbered` and `.unlisted` classes to it: ``` ### More Options {.unnumbered .unlisted} ``` To exclude an individual heading from numbering, add the `.unnumbered` class to it: ``` ### More Options {.unnumbered} ``` Create a tab set via a markdown div with the class name panel-tabset (e.g. `::: {.panel-tabset}` to start and `:::` to end). Each top-level heading within the div creates a new tab. *** 2023 cloudedknowledge.net