The command tlmgr list --only-installed gives all packages and classes installed. Is there a way to only have the packages installed? Same question, but only for the classes installed.
This will be used after to call latexdef -l -p ... for all packages, and then latexdef -l -c ... for all classes.
longtableare not listed at all – David Carlisle Apr 13 '23 at 08:38styandclsfiles? Should I have to code my own tool? – projetmbc Apr 13 '23 at 09:39find /usr/local/texlive/2023/texmf-dist/tex -name \*.styor (quicker)grep '\.sty' $(kpsewhich --all ls-R)– David Carlisle Apr 13 '23 at 09:45