| install_tinytex {tinytex} | R Documentation |
Install/Uninstall TinyTeX
Description
The function install_tinytex() downloads and installs TinyTeX, a
custom LaTeX distribution based on TeX Live. The function
uninstall_tinytex() removes TinyTeX; reinstall_tinytex()
reinstalls TinyTeX as well as previously installed LaTeX packages by default;
tinytex_root() returns the root directory of TinyTeX if found.
Usage
install_tinytex(
force = FALSE,
dir = "auto",
version = "daily",
repository = "ctan",
extra_packages = if (is_tinytex()) tl_pkgs(),
add_path = TRUE
)
uninstall_tinytex(force = FALSE, dir = tinytex_root())
reinstall_tinytex(packages = TRUE, dir = tinytex_root(), ...)
tinytex_root(error = TRUE)
Arguments
force |
Whether to force to install (override) or uninstall TinyTeX. |
dir |
The directory to install or uninstall TinyTeX (should not exist
unless |
version |
The version of TinyTeX, e.g., |
repository |
The CTAN repository to set. You can find available
repositories at |
extra_packages |
A character vector of extra LaTeX packages to be
installed. By default, a vector of all currently installed LaTeX packages
if an existing installation of TinyTeX is found. If you want a fresh
installation, you may use |
add_path |
Whether to run the command |
packages |
Whether to reinstall all currently installed packages. |
... |
Other arguments to be passed to |
error |
Whether to signal an error if TinyTeX is not found. |
References
See the TinyTeX documentation (https://yihui.org/tinytex/) for the default installation directories on different platforms.