tlmgr {tinytex} | R Documentation |
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, ... ) tlmgr_path(action = c("add", "remove")) tlmgr_conf(more_args = character())
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 |
action |
On Unix, add/remove symlinks of binaries to/from the system's
|
The tlmgr()
function is a wrapper of system2('tlmgr')
. All
other tlmgr_*()
functions are based on tlmgr
for specific
tasks. 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'))