Quarto reference guide

Here are some of the markdown basics we can use with Quarto.

Text formatting

italics, bold, bold italics, superscript2 / subscript2, strikethrough, verbatim code

  • unordered list
    • sub-item 1
    • sub-item 2
      • sub-sub-item 1
term
definition

Blockquote

Figures

Figure 1: An Elephant

This is illustrated well by Figure 1.

Tables

Table 1: My Caption
Right Left Default Center
12 12 12 12
123 123 123 123
1 1 1 1

See Table 1.

Citations

Life is good (Weigert et al. 2018). (bibkey should be in references.bib)

Footnotes

Here is a footnote reference,1 and another.2.

Here is an inline note.3

Code blocks and math

1 + 1

inline math: \(E = mc^{2}\)

display math:

\[E = mc^{2}\]

Videos

Callout blocks

Note

Note callout block.

Tip

Tip callout block.

Warning

Warning callout block.

Caution

Caution callout block.

Important

Important callout block.

References

Weigert, Martin, Uwe Schmidt, Tobias Boothe, Andreas Müller, Alexandr Dibrov, Akanksha Jain, Benjamin Wilhelm, et al. 2018. “Content-Aware Image Restoration: Pushing the Limits of Fluorescence Microscopy.” Nat. Methods 15 (December): 1090–97. https://doi.org/10.1038/s41592-018-0216-7.

Footnotes

  1. Here is the footnote.↩︎

  2. Here’s one with multiple blocks.↩︎

  3. Inlines notes are easier to write, since you don’t have to pick an identifier and move down to type the note.↩︎