Run the TeX Live Manager
Execute the tlmgr command to search for LaTeX packages, install
packages, update packages, and so on.
tlmgr(args = character(), usermode = FALSE, ..., .quiet = FALSE)
tlmgr_search(what, file = TRUE, all = FALSE, global = TRUE, word = FALSE, ...)
tlmgr_install(
  pkgs = character(),
  usermode = FALSE,
  path = !usermode && os != "windows",
  ...
)
tlmgr_remove(pkgs = character(), usermode = FALSE)
tlmgr_update(
  all = TRUE,
  self = TRUE,
  more_args = character(),
  usermode = FALSE,
  run_fmtutil = TRUE,
  delete_tlpdb = getOption("tinytex.delete_tlpdb", FALSE),
  ...
)
tlmgr_path(action = c("add", "remove"))
tlmgr_conf(more_args = character(), ...)
tlmgr_repo(url = NULL, ...)args | 
 A character vector of arguments to be passed to the command
  | 
usermode | 
 (For expert users only) Whether to use TeX Live's
user mode. If
  | 
... | 
 For   | 
.quiet | 
 Whether to hide the actual command before executing it.  | 
what | 
 A search keyword as a (Perl) regular expression.  | 
file | 
 Whether to treat   | 
all | 
 For   | 
global | 
 Whether to search the online TeX Live Database or locally.  | 
word | 
 Whether to restrict the search of package names and descriptions to match only full words.  | 
pkgs | 
 A character vector of LaTeX package names.  | 
path | 
 Whether to run   | 
self | 
 Whether to update the TeX Live Manager itself.  | 
more_args | 
 A character vector of more arguments to be passed to the
command   | 
run_fmtutil | 
 Whether to run   | 
delete_tlpdb | 
 Whether to delete the ‘texlive.tlpdb.HASH’ files
(where   | 
action | 
 On Unix, add/remove symlinks of binaries to/from the system's
  | 
url | 
 The URL of the CTAN mirror. If   | 
The tlmgr() function is a wrapper of system2('tlmgr'). All
other tlmgr_*() functions are based on tlmgr for specific
tasks. For example, tlmgr_install() runs the command tlmgr
install to install LaTeX packages, and tlmgr_update runs the command
tlmgr update, etc. Note that tlmgr_repo runs tlmgr
options repository to query or set the CTAN repository. Please consult the
tlmgr manual for full details.
The tlmgr manual: https://www.tug.org/texlive/doc/tlmgr.html
# search for a package that contains titling.sty
tlmgr_search('titling.sty')
#' to match titling.sty exactly, add a slash before the keyword, e.g.
#' tlmgr_search('/titling.sty')
#' use a regular expression if you want to be more precise, e.g.
#' tlmgr_search('/titling\.sty$')
# list all installed LaTeX packages
tlmgr(c('info', '--list', '--only-installed', '--data', 'name'))Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.