Forrest logo
back to the tlmgr tool

tlmgr-paper:tldr:35b0b

tlmgr-paper: List all available paper sizes for a specific TeX Live program.
$ tlmgr ${pdftex} paper --list
try on your machine

This command is using the tlmgr command-line tool to obtain information about available paper sizes for a specific engine (pdftex in this case).

Here's how the command is broken down:

  • tlmgr: This is the command-line tool for managing TeX Live packages and distributions. It allows you to perform various operations like installing, updating, or listing packages.

  • ${pdftex}: This is a placeholder variable that should be replaced with the actual name of the engine you want to check. For example, if you want to check paper sizes for XeTeX, you would replace ${pdftex} with xetex.

  • paper --list: This is the argument passed to the tlmgr command. The paper command is used to manage paper size settings for different engines. The --list option requests a list of available paper sizes for the specified engine.

So, when you execute this command with the correct engine name, it will use tlmgr to retrieve a list of available paper sizes for that engine.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the tlmgr tool