a world of possibilities for
reproducible publishing with quarto
but let’s get back to business…
quarto
Emil :: presentations with revealjs
Getting started with a reproducible presentation that looks “good” is easy peasy squeezy
Tooling is there and well-documented for going from good to “stunning” presentations
But it takes willingness to learn / get familiar with / copy-paste trial-and-error with web design tools
quarto
Charlotte :: websites
Don’t start from scratch!
Tooling is there and well-documented for going from good to “stunning” websites, but it takes willingness to learn / get familiar with / copy-paste trial-and-error with web design tools – sound familiar?
There is no excuse for not having a personal (or otherwise) website made with Quarto
few .qmd
s
_quarto.yml
GitHub repo
GitHub action
.github/workflows/render-website.yaml
on:
push:
branches: main
workflow_dispatch:
name: Render Website
jobs:
build-website:
runs-on: self-hosted
container:
image: ghcr.io/dukestatsci/r_gh_actions:latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Install packages
run: |
checklist::install_missing_pkgs()
shell: Rscript {0}
- name: Render Quarto Project
run: |
quarto render &&
touch docs/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
clean: false
branch: gh-pages
folder: docs
quarto
Colin :: parsermd / rundel.github.io/parsermd
A Quarto document is ultimately a document you can break apart
The document is structured in a way that quarto
leverages that you can get at with other tooling as well
In a teaching context, breaking apart a Quarto document can enable automated section-level feedback or more…
rmarkdown
rmarkdown
.github/workflows/rmd_structure.yml
on:
push:
paths:
- 'lab-06.Rmd'
name: Check Rmd Structure
jobs:
test:
runs-on: self-hosted
container:
image: ghcr.io/statprog-s1-2020/hw2-docker:latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Check Structure
run: |
tpl = readRDS(".github/workflows/template.rds")
checklist::quit_on_failure({
parsermd::rmd_check_template("lab-06.Rmd", tpl)
})
shell: Rscript {0}
quarto
Andrew :: closeread
How text is presented might (does?) have an effect on how much your readers focus on what they’re reading
When all of quarto
isn’t enough, dive into the extensions
You – yes, you, person with (probably) a stats degree and a passion for making things work / look exactly the way you want them – can also extend Quarto!
easy peasy squeezy
fa
shortcodefontawesome
extension.qmd
What was the plot you showed us earlier?