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

tlmgr info — Show information about TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.h

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandtextlmgr infoshowlivecliinformationabout

Problem

How to use the tlmgr info command: Show information about TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#info>.

Solution

tlmgr info — Show information about TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#info>.

List all available TeX Live packages, prefexing installed ones with i:
tlmgr info


List all available collections:
tlmgr info collections


List all available schemes:
tlmgr info scheme


Show information about a specific package:
tlmgr info {{package}}


List all files contained in a specific package:
tlmgr info {{package}} --list


List all installed packages:
tlmgr info --only-installed


Show only specific information about a package:
tlmgr info {{package}} --data "{{name}},{{category}},{{installed}},{{size}},{{depends}},{{...}}"


Print all available packages as JSON encoded array:
tlmgr info --json

Code Snippets

List all available TeX Live packages, prefexing installed ones with `i`

tlmgr info

List all available collections

tlmgr info collections

List all available schemes

tlmgr info scheme

Show information about a specific package

tlmgr info {{package}}

List all files contained in a specific package

tlmgr info {{package}} --list

Context

tldr-pages: common/tlmgr info

Revisions (0)

No revisions yet.