Charlotte Wickham
Developer Educator @ Posit
Current: https://quarto.org/docs/download/, reflected in docs, stable
Pre-release: https://quarto.org/docs/download/prerelease
Source Document
Destination Document
source.qmd
```{{r}}
#| label: fig-scatter
#| fig-cap: A scatterplot embedded from another .qmd document
#| warning: false
ggplot(penguins,
aes(x = flipper_length_mm, y = bill_length_mm)) +
geom_point(aes(color = species, shape = species)) +
scale_color_manual(values = c("darkorange","purple","cyan4")) +
labs(
title = "Flipper and bill length",
subtitle = "Dimensions for penguins at Palmer Station LTER",
x = "Flipper length (mm)", y = "Bill length (mm)",
color = "Penguin species", shape = "Penguin species"
) +
theme_minimal()
```
Embed from Jupyter Notebooks (.ipynb) v1.3 or,
Quarto documents (.qmd) v1.4
Figure 1 shows …
Figure 2 shows …
Table 1 shows …
Diagram 1 shows …
Add the where with the filename attribute (v1.2)
Add line context with the code annotation (v1.3)
external/report.html
Create a new profile, by creating a new Quarto config file.
internal/report.html
Create a new profile, by creating a new Quarto config file.
internal/report.html
external/report.html
internal/report.html
Now has a Visual Editor
Interprets Quarto markdown
Manuscripts for scholarly writing
Typst an alternative to LaTeX
Changelogs