HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

tlmgr conf — Manage the TeX Live configuration. More information: <https://www.tug.org/texlive/doc/tlmgr.html#con

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thetlmgr confconfigurationcommandtexliveclimanage

Problem

How to use the tlmgr conf command: Manage the TeX Live configuration. More information: <https://www.tug.org/texlive/doc/tlmgr.html#conf>.

Solution

tlmgr conf — Manage the TeX Live configuration. More information: <https://www.tug.org/texlive/doc/tlmgr.html#conf>.

Show the current TeX Live configuration:
tlmgr conf


Show the current texmf, tlmgr, or updmap configuration:
tlmgr conf {{texmf|tlmgr|updmap}}


Show only a specific configuration option:
tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}}


Set a specific configuration option:
tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}} {{value}}


Delete a specific configuration option:
tlmgr conf {{texmf|tlmgr|updmap}} --delete {{configuration_key}}


Disable the execution of system calls via \write18:
tlmgr conf texmf {{shell_escape}} {{0}}


Show all additional texmf trees:
tlmgr conf auxtrees show

Code Snippets

Show the current TeX Live configuration

tlmgr conf

Show the current `texmf`, `tlmgr`, or `updmap` configuration

tlmgr conf {{texmf|tlmgr|updmap}}

Show only a specific configuration option

tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}}

Set a specific configuration option

tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}} {{value}}

Delete a specific configuration option

tlmgr conf {{texmf|tlmgr|updmap}} --delete {{configuration_key}}

Context

tldr-pages: common/tlmgr conf

Revisions (0)

No revisions yet.