- file
- character. A specification of a (list of) exercise files. 
  
- n
- integer. The number of copies to be compiled from - file.
 
  
- nsamp
- integer. The number(s) of exercise files sampled from each
    list element of - file. Sampling without replacement is used
    if possible. (Only if some element of- nsampis larger than
    the length of the corresponding element in- file, sampling
    with replacement is used.)
 
  
- dir
- character specifying the output directory (default:
    current working directory). If only a single HTML file is produced
    and no - diris explicitly specified, the file is displayed in the
    browser rather than saved in- dir.
 
  
- template
- character. A specification of a HTML template. The default
    is to use the - "plain.html"file provided in the package unless
    there are Rmd exercises in- file. Then,- "plain8.html"is used (which expects UTF-8 encoding as used by pandoc).
 
  
- name
- character. A name prefix for resulting exercises. 
  
- quiet
- logical. Should output be suppressed when calling
    - xweave?
 
  
- edir
- character specifying the path of the directory (along with its
    sub-directories) in which the files in - fileare stored
    (see also- xexams).
 
  
- tdir
- character specifying a temporary directory, by default
    this is chosen via - tempfile. Note that this
    is cleaned up and potentially temporary files are deleted.
 
  
- sdir
- character specifying a directory for storing supplements, by
    default this is chosen via - tempfile.
 
  
- verbose
- logical. Should information on progress of exam generation
    be reported? 
  
- question
- character or logical. Should the question be included in the HTML
    output? If - questionis a character it will be used as a header for resulting questions.
    Argument- questionmay also be a vector that controls the output for the templates.
 
  
- solution
- character or logical, see argument - question.
 
  
- mathjax
- logical. Should the JavaScript from http://www.MathJax.org/
    be included for rendering mathematical formulas? By default - mathjax = FALSEunless- converter = "pandoc-mathjax".
 
  
- resolution, width, height
- numeric. Options for rendering PNG (or SVG)
    graphics passed to - xweave.
 
  
- svg
- logical. Should graphics be rendered in SVG or PNG (default)? 
  
- encoding
- character, passed to - xweave.
 
  
- envir
- argument passed to - xweave(which passes
    it to- knit).
 
  
- base64
- logical. Should supplementary files be embedded using Base 64 coding?
    Argument - base64may also be a character vector of file suffixes that should be encoded, e.g.- base64 = c("png", "rda")will only encode PNG images and binary- .rdafiles.
    If set to- NULLonly image files will be encoded.
 
  
- converter, ...
- arguments passed on to - make_exercise_transform_html.
    The default for- converteris set to- "ttm"unless there are Rmd
    exercises in- filewhere- "pandoc"is used.
 
  
- seed
- integer matrix or logical. Either - NULL(default), logical, or a
    matrix of random seeds for each possible exercise to be set prior to calling- driver@sweave. If- NULLno random seeds are set. If a matrix,
    the number of rows must be- nand the number of columns must
    correspond to- unlist(file). If- TRUEa suitable matrix of seeds
    is sampled.