Editing

Text editor

Image

See Figure 1 the R logo.

Equations

LaTeX equations are authored using standard Pandoc markdown syntax.

Inline Math

This is a fraction \(\frac{1}{2} = 0.5\).

Display

\[ \sum_{i=0}^n u_{ij} \]

Footnote

You can include footnotes1.

Citation

The references are listed at the bottom of the page (Abdi, Williams, and Valentin 2013).

Callout-note

Note

Note

Tip

Tip

Important

Important

Caution

Caution

Diagrams

Quarto has native support for embedding Mermaid and Graphviz diagrams.

Mermaid

A simple diagram

graph TB
D --> E
E --> F

Another diagram

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

A diagram with style

graph TD;
    A1 -.->id((B1));
    A1 --> A1;
    A2-- text -->B2;
    %%A3 --xB3;
    B4<-->C4;
    %%A5-- text --oB5;
    A & B==> C & D;
    
     classDef className fill:#f9f,stroke:#333,stroke-width:4px;
     class A1,A2,A className;

References

Abdi, Hervé, Lynne J. Williams, and Domininique Valentin. 2013. “Multiple Factor Analysis: Principal Component Analysis for Multitable and Multiblock Data Sets.” Wiley Interdisciplinary Reviews: Computational Statistics 5 (2): 149–79. https://doi.org/10.1002/wics.1246.

Footnotes

  1. This is a footnote.↩︎