├── .gitignore ├── .quartoignore ├── LICENSE ├── Makefile ├── README.md ├── Thomas_Bayes.jpg ├── _extensions └── apaish │ ├── _extension.yml │ ├── typst-show.typ │ └── typst-template.typ ├── bibliography.bib ├── example.qmd ├── quarto-apaish.Rproj └── template.qmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/.gitignore -------------------------------------------------------------------------------- /.quartoignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | Thomas_Bayes.jpg 3 | example.qmd 4 | *.Rproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/README.md -------------------------------------------------------------------------------- /Thomas_Bayes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/Thomas_Bayes.jpg -------------------------------------------------------------------------------- /_extensions/apaish/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/_extensions/apaish/_extension.yml -------------------------------------------------------------------------------- /_extensions/apaish/typst-show.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/_extensions/apaish/typst-show.typ -------------------------------------------------------------------------------- /_extensions/apaish/typst-template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/_extensions/apaish/typst-template.typ -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/bibliography.bib -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/example.qmd -------------------------------------------------------------------------------- /quarto-apaish.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/quarto-apaish.Rproj -------------------------------------------------------------------------------- /template.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvuorre/quarto-apaish/HEAD/template.qmd --------------------------------------------------------------------------------