Skip to content

Instantly share code, notes, and snippets.

@lordlycastle
Forked from kadrach/gist:6228314
Last active June 29, 2020 12:02
Show Gist options
  • Save lordlycastle/6aa767389ccccfa2fd3d227e458e3bc6 to your computer and use it in GitHub Desktop.
Save lordlycastle/6aa767389ccccfa2fd3d227e458e3bc6 to your computer and use it in GitHub Desktop.
Enabling texdoc: Texlive/BasicTeX
Found here: http://macosx-tex.576846.n2.nabble.com/BasicTeX-and-documentation-td7579224.html
Problem: BasicTex does not come with texdoc installed, and does not build docs by default
1. Install texdoc
> tlmgr install texdoc
2. Enable automatic build of documentation, which is disabled (default) for BasicTeX tlmgr.
> tlmgr option docfiles 1
3. Build documentation for all installed packages
> tlmgr install --reinstall $(tlmgr list --only-installed | sed -e 's/^i //' -e 's/:.*$//')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment