View source: R/latex.update.glossares.r
latex.update.glosssaries | R Documentation |
Updates glossaries in latex-based report. Changes to the specified directory, and should change back even if an error occurs.
latex.update.glosssaries(
dir = ".",
base = "Report",
command = "makeindex",
s = paste0("-s ", base, ".ist"),
t = paste0("-t ", base, ".glg"),
o = paste0("-o ", base, ".gls"),
p = paste0("", base, ".glo"),
args = paste(s, t, o, p),
call = paste(command, args),
quiet = TRUE,
...
)
dir |
path to directory containing the report |
base |
basename for the report |
command |
defaults to 'makeindex' |
s |
default -s argument (*.ist) |
t |
default -t argument (*.glg) |
o |
default -o argument (*.gls) |
p |
default -p argument (*.glo) |
args |
arguments to command; overrides s, t, o, p |
call |
text of system call; overrides command and args |
quiet |
suppress messages |
... |
ignored |
Used for side effects.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.