Is it possible to print the Errors and Warning - log?
Because I want to have a better overview over the logged warnings in a separate document
Is it possible to print the Errors and Warning - log?
Because I want to have a better overview over the logged warnings in a separate document
texfot(possibly combined with a redirect into a file if you want to store the warnings and errors) seems to do what you want. – Marijn Oct 17 '22 at 12:37texfot pdflatex yourfile.tex > allwarnings.txt. This will run pdflatex on your file and store the warnings and errors in the file allwarnings.txt. I tested this on Linux and it works, however the manual oftexfotmentions that it may not work in Windows. Also, for some multi-line warnings only the first line is shown in the output. – Marijn Oct 19 '22 at 10:33rubber-infoandtexloganalyser, which also work but suffer from similar problems astexfot, i.e., not everything is captured correctly. This is however a very hard to solve problem because LaTeX doesn't usestderrproperly. Also GUI editors like TeXstudio are known to display partial or misformatted error messages. – Marijn Oct 19 '22 at 10:37