Hide/Show the code
<- rnorm(10) x
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur posuere vestibulum facilisis. Aenean pretium orci augue, quis lobortis libero accumsan eu. Nam mollis lorem sit amet pellentesque ullamcorper. Curabitur lobortis libero eget malesuada vestibulum. Nam nec nibh massa. Pellentesque porttitor cursus tellus. Mauris urna erat, rhoncus sed faucibus sit amet, venenatis eu ipsum.
This document, accompanied with the hopefully finely tuned git repos, provides a template for writing contributions to Computo (Computo Team 2020). We show how R
code (R Core Team 2020) can be included and how the repository can be set up for triggering github actions for rendering the document, with dependencies handled by renv
.
You can start by clicking the “use this template” button, on the top of the page of the github repository associated to this document. Of course, you can set your repository private during the preparation of your manuscript.
Quarto is a versatile formatting system for authoring documents integrating markdown, LaTeX and code blocks interpreted either via Jupyter or Knitr (thus supporting Python, R and Julia). It relies on the Pandoc document converter.
You need quarto installed on your system and the Computo extension to prepare your document. For the latter, once quarto is installed, run the following to install the extension in the current directory (it creates a _extension
directory which is ignored by git thanks to .gitignore
by default):
quarto add computorg/computo-quarto-extension
R
and the following R
packages must be installed on your computer: knitr
, markdown
.
Quarto is expecting a .qmd
markdown file, but will also works with a standard Rmarkdown
(.Rmd
) file. In addition, especially if you are not comfortable with the command line interface, quarto is fully integrated inside the Rstudio IDE so that you can write and build your quarto document inside Rstudio.
Quarto can also process a Jupyter notebook file if you are used to it (it will just require to add the proper YAML metadata1).
Note: More advanced Jupyter-related functionality like Myst/Jupyter book are not supported in this Quarto setup. The markdown syntax inside the Jupyter notebook should follow the Quarto syntax (c.f. below). If you are more comfortable with using Myst/Jupyter book, we provide a specific template but it will requires more formatting work for Computo editorial team, thus highly encourage authors to use the Quarto templates.
This section covers basic formatting guidelines for quarto documents.
To render a document, run quarto render
. By default, both PDF and HTML documents are generated:
quarto render template-computo-R.qmd # will render both to html and PDF
To check the syntax of the formatting below, you can use the </> source
button at the top left of this document.
Bold text or italic
But we can also do a numbered list
LaTeX code is natively supported2, which makes it possible to use mathematical formulae:
f(x_1, \dots, x_n; \mu, \sigma^2) = \frac{1}{\sigma \sqrt{2\pi}} \exp{\left(- \frac{1}{2\sigma^2}\sum_{i=1}^n(x_i - \mu)^2\right)}
It is also posible to cross-reference an equation, see Equation 1:
\begin{aligned} D_{x_N} & = \frac12 \left[\begin{array}{cc} x_L^\top & x_N^\top \end{array}\right] \, \left[\begin{array}{cc} L_L & B \\ B^\top & L_N \end{array}\right] \, \left[\begin{array}{c} x_L \\ x_N \end{array}\right] \\ & = \frac12 (x_L^\top L_L x_L + 2 x_N^\top B^\top x_L + x_N^\top L_N x_N), \end{aligned} \tag{1}
Quarto includes a nice support for theorems, with predefined prefix labels for theorems, lemmas, proposition, etc. see this page. Here is a simple example:
Theorem 1 (Strong law of large numbers) The sample average converges almost surely to the expected value:
\overline{X}_n\ \xrightarrow{\text{a.s.}}\ \mu \qquad\textrm{when}\ n \to \infty.
See Theorem 1.
Quarto uses either Jupyter or knitr to render code chunks. This can be triggered in the yaml header. In this tutorial, we use knitr
(R
and packages knitr
, markdown
must be installed on your computer).
---
title: "My Document"
author "Jane Doe"
---
R
code (R Core Team 2020) chunks may be embedded as follows:
<- rnorm(10) x
Plots can be generated as follows:
library("ggplot2")
<- ggplot(mpg, aes(displ, hwy)) +
p geom_point() +
geom_smooth()
p
It is also possible to create figures from static images:
Note: Until Quarto version 1.3+ is released, including a remote image (from a web URL) in a document (like the image above) will work in the rendered HTML document but will generate an error when building the PDF document (c.f. related bug report).
Tables (with label: @tbl-mylabel
renders Table 1) can be generated with markdown as follows
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |
Table can also be generated by some code, for instance with knitr here:
::kable(summary(cars), caption = "Table caption.") knitr
speed | dist | |
---|---|---|
Min. : 4.0 | Min. : 2.00 | |
1st Qu.:12.0 | 1st Qu.: 26.00 | |
Median :15.0 | Median : 36.00 | |
Mean :15.4 | Mean : 42.98 | |
3rd Qu.:19.0 | 3rd Qu.: 56.00 | |
Max. :25.0 | Max. :120.00 |
References are displayed as footnotes using BibTeX, e.g. [@computo]
will be displayed as (Computo Team 2020), where computo
is the bibtex key for this specific entry. The bibliographic information is automatically retrieved from the .bib
file specified in the header of this document (here: references.bib
).
As already (partially) seen, Quarto includes a mechanism similar to the bibliographic references for sections, equations, theorems, figures, lists, etc. Have a look at this page.
Advanced formatting features are possible and documented (including interactive plots, pseudo-code, (Tikz) diagrams, Lua filters, mixing R + Python in the same document), but are beyond the scope of this simple introduction. We point several entries in this direction.
The Quarto web site for comprehensive documentation, including:
The template distributed with the Computo Quarto extension, which uses such advanced features.
Our mock version of the t-SNE paper, a full and advanced example using Python and the Jupyter kernel.
The previously published papers in Computo can be used as references.
R
dependencies with renv
To make your work reproducible, you need to fix the packages and environment used to run your analysis. For the R
system, the renv
package is one of the possible reliable method, supported by the community. You basically need a couple of commands to setup your environment on your local machine. First,
::init() renv
will initialize your repository. Then you just need to install the dependencies required to run your contribution, for instance,
::install("ggplot2") # or equivalently install.packages("ggplot2") renv
Non-CRAN packages (e.g. Github packages) can be used. Once you are done, you can fix everything with the command
::snapshot() renv
The only file that needs to be versioned by git is renv.lock
. By default, the rest is ignored thanks to .gitignore
.
More details for using renv
can be found either
renv
packge webpage, orThe repository associated with this template is pre-configure to trigger an action on push that performs the following:
ubuntu-latest
machinerenv
, using your renv.lock
fileThe file .github/workflows/build.yml is largely inspired from this file.
Once this is successful, you are ready to submit your manuscript to the Computo submission platform.
The first time, you possibly need to create the branch for the action to work. This can be done by running the following command from your computer, in your git repository:
quarto publish gh-pages
Then, set the branch gh-page
as the source of your github page, and trigger the action to check that everything works fine.
If your submission materials contain files larger than 50MB, especially data files, they won’t fit on a git repository as is. For this reason, we encourage you to put your data or any materials you deem necessary on an external “open data” centered repository hub such a Zenodo or OSF.
sessionInfo()
R version 4.4.1 (2024-06-14)
Platform: x86_64-pc-linux-gnu
Running under: Ubuntu 22.04.5 LTS
Matrix products: default
BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.10.0
LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
locale:
[1] LC_CTYPE=C.UTF-8 LC_NUMERIC=C LC_TIME=C.UTF-8
[4] LC_COLLATE=C.UTF-8 LC_MONETARY=C.UTF-8 LC_MESSAGES=C.UTF-8
[7] LC_PAPER=C.UTF-8 LC_NAME=C LC_ADDRESS=C
[10] LC_TELEPHONE=C LC_MEASUREMENT=C.UTF-8 LC_IDENTIFICATION=C
time zone: Etc/UTC
tzcode source: system (glibc)
attached base packages:
[1] stats graphics grDevices datasets utils methods base
other attached packages:
[1] ggplot2_3.5.1
loaded via a namespace (and not attached):
[1] vctrs_0.6.5 nlme_3.1-163 cli_3.6.2 knitr_1.46
[5] rlang_1.1.3 xfun_0.43 renv_1.0.7 jsonlite_1.8.8
[9] labeling_0.4.3 glue_1.7.0 colorspace_2.1-0 htmltools_0.5.8.1
[13] scales_1.3.0 fansi_1.0.6 rmarkdown_2.26 grid_4.4.1
[17] evaluate_0.23 munsell_0.5.1 tibble_3.2.1 fastmap_1.1.1
[21] yaml_2.3.8 lifecycle_1.0.4 compiler_4.4.1 pkgconfig_2.0.3
[25] mgcv_1.9-1 farver_2.1.1 lattice_0.22-5 digest_0.6.35
[29] R6_2.5.1 utf8_1.2.4 splines_4.4.1 pillar_1.9.0
[33] magrittr_2.0.3 Matrix_1.6-5 withr_3.0.0 tools_4.4.1
[37] gtable_0.3.5
the same metadata as in the template-computo-R.qmd
file in the first cell, type “Raw”, of the notebook↩︎
@article{doe2024,
author = {Doe, Jane and Doe, John},
publisher = {Société Française de Statistique},
title = {Template for Contribution to {Computo}},
journal = {Computo},
date = {2024-10-16},
url = {https://computo.sfds.asso.fr/template-computo-quarto},
doi = {xxxx},
issn = {2824-7795},
langid = {en},
abstract = {Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Curabitur posuere vestibulum facilisis. Aenean pretium orci augue,
quis lobortis libero accumsan eu. Nam mollis lorem sit amet
pellentesque ullamcorper. Curabitur lobortis libero eget malesuada
vestibulum. Nam nec nibh massa. Pellentesque porttitor cursus
tellus. Mauris urna erat, rhoncus sed faucibus sit amet, venenatis
eu ipsum.}
}