Finding, installing and updating packages for LaTeX is sometimes a pain in the neck. There are package managers for the so-called "modern" programming languages, like npm or yarn for Javascript, cargo for Rust, etc. These tools provide dependency-management, build and update and clean commands. I'm wondering about a similar tool for LaTeX.
Asked
Active
Viewed 978 times
tlmgr? I have not installed a latex package by hand for years. – David Carlisle Jun 08 '19 at 13:13tlmgrhas some kind of dependency handling, but for most packages those dependencies don't model the package dependencies completely, so this is more of a theoretical feature. On the other hand, people usually recommend full installs of TeX live, in which case dependency handling becomes somewhat unnecessary (all packages are there already). MikTeX has a feature to install missing packages on the fly, so there is not a lot of need for a proper package-based dependency handling either. ... – moewe Jun 10 '19 at 08:05make clean,make installequivalents of source are not needed there. If you download packages from CTAN directly you may or may not have to go through steps similar to "make install" on source (run the.dtxto produce a.styfor example), this is taken care of bytlmgrand MikTeX. – moewe Jun 10 '19 at 08:09