Standalone knowledge quiz about the flags of countries and their neighbors, along with the Quarto source files to generate this.
Standalone file: flags.html
exams2forms()
calls, see below.exams2forms
package (version 0.2-0).exams2forms
package (version 0.2-0) with the highlight color changed to the R/exams primary color.--- title: "{width=330px}" format: html: theme: - cosmo - cosmo.scss toc: false css: webex.css include-after-body: webex.js embed-resources: true --- ```{r setup, include = FALSE} library("exams2forms") set.seed(0) ``` ::: {.panel-tabset} ## Guess the flag ```{r flags, echo = FALSE, message = FALSE, results = "asis"} exams2forms("flags.Rmd", n = 100) ``` ## Find the neighbors ```{r geography, echo = FALSE, message = FALSE, results = "asis"} geography <- system.file("exercises", "geography.Rmd", package = "exams2forms") |> expar(display = "flag") exams2forms(geography, n = 100) ``` :::