`**βs: are created by wrapping text with a line consisting
of at least three colons `:::`.
- Example:
```markdown
::: {#special .sidebar}
Here is a paragraph.
And another.
:::
```
- We can use either attributes in curly braces or a single unbraced
word, which will be treated as a class name.
### π Install Extensions
Find the full list of available extensions at [Quarto
Extensions](https://quarto.org/docs/extensions/)
To install various icon sets used in the example slides, we can install
the following extensions:
```bash
$ quarto install extension mcanouil/quarto-iconify # https://icones.js.org/ [<-- Contains rest of icon sets ??]
$ quarto install extension shafayetShafee/bsicons # bootstrap icons
$ quarto install extension schochastics/academicicons # OrcID, Google Scholar, ...
$ quarto install extension quarto-ext/fontawesome # Font Awesome icons
```
note that these arenβt necessary for functionality, but provide
additional icons that I like to use π€·π»ββοΈ
## Metadata
The first section of our
[`index.qmd`](https://github.com/saforem2/lattice23/blob/main/index.qmd)
contains the YAML metadata for the Quarto document.
Explicitly, we see this consists of:
Expand for yaml
```yaml
---
format:
revealjs:
title-block-style: none
slide-number: c
title-slide-style: default
chalkboard:
buttons: false
auto-animate: true
reference-location: section
touch: true
pause: false
footnotes-hover: true
citations-hover: true
preview-links: true
controls-tutorial: true
controls: false
logo: 'https://raw.githubusercontent.com/saforem2/anl-job-talk/main/docs/assets/anl.svg'
history: false
theme: [dark, css/dark.scss]
css: [css/default.css, css/callouts.css]
self-contained: false
embed-resources: false
self-contained-math: false
center: true
highlight-style: 'atom-one'
default-image-extension: svg
code-line-numbers: true
code-overflow: scroll
html-math-method: katex
fig-align: center
mermaid:
theme: dark
gfm:
output-file: 'lattice23.md'
---
```
The complete list of Reveal.js options are listed, with descriptions at:
[Quarto β Revealjs
Options](https://quarto.org/docs/reference/formats/presentations/revealjs.html)
## Title Slide
- Starting with the title slide[^5]:

FigureΒ 1: [Title
Slide](https://saforem2.github.io/lattice23/#/section)
- The full slide contents are included below:
Expand for quarto
```markdown
# {.title-slide .centeredslide background-iframe="https://saforem2.github.io/grid-worms-animation/" loading="lazy"}
::: {style="background-color: rgba(22,22,22,0.75); border-radius: 10px; text-align:center; padding: 0px; padding-left: 1.5em; padding-right: 1.5em; max-width: min-content; min-width: max-content; margin-left: auto; margin-right: auto; padding-top: 0.2em; padding-bottom: 0.2em; line-height: 1.5em!important;"}
[MLMC: Machine Learning Monte Carlo]{.style="color:#939393; font-size:1.5em; font-weight:bold;}
[for Lattice Gauge Theory]{style="color:#777777; font-size:1.2em; font-weight: bold;"}
[
]{style="padding-bottom: 0.5rem;"}
[](https://samforeman.me) Sam Foreman
[Xiao-Yong Jin, James C. Osborn]{.dim-text style="font-size:0.8em;"}
[[[ `saforem2/`](https://github.com/saforem2/)]{style="border-bottom: 0.5px solid #00ccff;"}`{`[[`lattice23`](https://github.com/saforem2/lattice23)]{style="border-bottom: 0.5px solid #00ccff;"}, [[`l2hmc-qcd`](https://github.com/saforem2/l2hmc-qcd)]{style="border-bottom: 0.5px solid #00ccff;"}`}`]{style="font-size:0.8em;"}
:::
::: footer
[2023-07-31 @ [Lattice 2023](https://indico.fnal.gov/event/57249/contributions/271305/)]{.dim-text style="text-align:left;'}
:::
```
- For the background, I made a simple animation
[`saforem2/grid-worms-animation`](https://github.com/saforem2/grid-worms-animation)
that is hosted on GitHub pages as a simple html website
- This static GitHub page is then used as an [IFrame
Background](https://quarto.org/docs/presentations/revealjs/#iframe-backgrounds)
natively in Quarto with Reveal.js
- This is as simple as:
```markdown
# {.title-slide .centeredslide background-iframe="https://saforem2.github.io/grid-worms-animation/" loading="lazy"}
```
## Single-Column Slides
Other than the title slide, the remainder of the slides are all
relatively straightforward to construct.
For single-column slides, constructing the content is as simple as
writing it in Markdown:
## Code
```markdown
# Overview
1. [Background: `{MCMC,HMC}`](#markov-chain-monte-carlo-mcmc)
- [Leapfrog Integrator](#leapfrog-integrator-hmc)
- [Issues with HMC](#sec-issues-with-hmc)
- [Can we do better?](#sec-can-we-do-better)
2. [L2HMC: Generalizing MD](#sec-l2hmc)
- [4D $SU(3)$ Model](#sec-su3)
- [Results](#sec-results)
3. [References](#sec-references)
4. [Extras](#sec-extras)
```
## Slide

FigureΒ 2: [Overview
Slide](https://saforem2.github.io/lattice23/#/overview)
## Centered Slides
We can center all the text on a slide by adding the `{.centeredslide}`
class to the slide header, e.g.
## `index.qmd`
```markdown
---
format:
revealjs:
theme: [style.scss]
---
# Title {.centeredslide}
```
## `style.scss`
```scss
.centeredslide {
text-align: center;
}
```
## Multi-Column Slides
Side-by-side content (either text or images)
- Note that we additionally have a `::: footer` element included at the
bottom of the slide.
- The code used to generate the slide above is included below:
Expand forquarto
```markdown
# Markov Chain Monte Carlo (MCMC) {.centeredslide}
:::: {.columns}
::: {.column width="50%"}
::: {.callout-note title="Goal" style="text-align:left;!important"}
Generate **independent** samples $\{x_{i}\}$, such that[^notation]
$$\{x_{i}\} \sim p(x) \propto e^{-S(x)}$$
where $S(x)$ is the _action_ (or potential energy)
:::
- Want to calculate observables $\mathcal{O}$:
$\left\langle \mathcal{O}\right\rangle \propto \int \left[\mathcal{D}x\right]\hspace{4pt} {\mathcal{O}(x)\, p(x)}$
:::
::: {.column width="49%"}
:::
::::
If these were [independent]{.style="color:#00CCFF;"}, we could approximate:
$\left\langle\mathcal{O}\right\rangle \simeq \frac{1}{N}\sum^{N}_{n=1}\mathcal{O}(x_{n})$
$$
\sigma_{\mathcal{O}}^{2} = \frac{1}{N}\mathrm{Var}{\left[\mathcal{O} (x) \right]}\Longrightarrow
\sigma_{\mathcal{O}} \propto \frac{1}{\sqrt{N}}
$$
[^notation]: Here, $\sim$ means "is distributed according to"
::: footer
[ `saforem2/lattice23`](https://saforem2.github.io/lattice23)
:::
```
## π
CSS
My web developer friend laughs at me, but when something is broken /
doesnβt look right / I want it to look different, I:
1. Pull up Chrome Tools ( β + β₯ + I )
2. Inspect element of interest ( β + β§ + C )
3. Make changes to the CSS
4. Save the new rule to my `.scss` file π€·π»ββοΈ
Iβm guessing this might be obvious to some people, but it took me a
while to figure out how things worked so maybe its helpful for others.
Expand for css

FigureΒ 4: Example of selecting an element and making a change to the
CSS.
## π GitHub Page
To enable your GitHub page, you can do the following:

FigureΒ 5: Instructions for building a GitHub page using the `docs/`
directory off the `main` branch.
In this case, the repo is:
[`saforem2/lattice23`](https://github.com/saforem2/lattice23)
and the site is published at
https://saforem2.github.io/lattice23
## π References
- [Reveal
Themes](https://quarto.org/docs/presentations/revealjs/themes.html)
- Using [Pandoc fenced
divs](https://thomasmock.quarto.pub/reports-presentations/#/pandoc-fenced-divs)
- [Slidecraft 101: Colors and
Fonts](https://www.emilhvitfeldt.com/post/slidecraft-colors-fonts/)
- [Beautiful Reports and Presentations with
Quarto](https://thomasmock.quarto.pub/reports-presentations/#/title-slide)
- [ Quarto Clean
Theme](https://github.com/grantmcdermott/quarto-revealjs-clean)
> [!TIP]
β€οΈβπ©Ή Status
>
> ```text
> Last Updated: 12/22/2025 @ 18:27:29
>
```
[^1]: And countless other people IRL
[^2]:
One thing Iβve been meaning to do, is clean up all my `css/*`
files and move them all to a single repository, but Iβll save that
for another day.
[^3]: _An open-source scientific and technical publishing system_
[^4]: [Equations](https://quarto.org/docs/authoring/markdown-basics.html#equations)
[^5]:
Quarto comes with lightbox support, so you can click on images to
display them full screen.