Department of Econometrics and Business Statistics, Monash University, Australia.
With Quarto, you can create fully formatted and reproducible journal articles with ease.
You have two options:
In this workshop, we will use the official template for the Journal of Statistical Software (JSS).
This template includes:
.qmd
contentreferences.bib
)Youβll be able to write, cite, and format your article β ready for submission β all in Quarto!
To start a new article using the Journal of Statistical Software (JSS) template, run this command in your terminal or RStudio console:
This will:
Install the JSS extension
Create a new folder with:
.qmd
filereferences.bib
)Youβll be ready to write your article right away!
Already have a Quarto document or project? Install the JSS format with:
Then, update your YAML header to use the new format.
β Now youβre ready to write and render in the JSS style!
Now itβs your turn to try creating a Quarto journal article using the JSS template.
Open the new folder and locate:
index.qmd
(main article)references.bib
(sample bibliography)Click Render to preview the document as PDF or HTML
π Raise your hand or drop a question if you need help!
The Monash Quarto Thesis Template helps you create a well-structured, submission-ready thesis following Monash University guidelines.
To get started, run the following command in your terminal or RStudio console:
This will:
Install the Monash thesis extension
Create a new project folder with:
index.qmd
chapters/
).qmd
Files### 1. Create a `.bib` File (BibTeX Format)
```bibtex
@article{smith2021,
title = {A Method for Data Analysis},
author = {Smith, Jane},
journal = {Journal of Statistics},
year = {2021}
}
π‘ Save as: references.bib
.bib
File in YAMLπ Quarto will automatically format the in-text citation and generate a reference list.
β
You can embed LaTeX-style equations directly using dollar signs ($...$
) in the caption.
β Works in both HTML and PDF outputs.
π @fig-einstein
will resolve to the numbered figure reference (e.g., Figure 1) in PDF/HTML.
π Make sure the first figure has an ID like {#fig-einstein}
.
| Tool | Link |
|--------|-----------------------------------|
| Quarto | [quarto.org](https://quarto.org) |
β
Use standard Markdown syntax inside tables: [text](url)
β Works for external links, local files, and section anchors.
{fig-alt="A scatterplot showing car stopping distances by speed."}
β
Use fig-alt="..."
to improve accessibility and support screen readers.
π Highly recommended for academic publishing and accessibility standards.
quarto use template quarto-journals/jss
..bib
files and citations inserted using [@key]
syntax.