I use following command for compiling, so all files created during compilation is stored under build_files:
latexmk -pdf -interaction=nonstopmode -jobname=./build_files/thesis thesis.tex
Here I've found that parsing log file can be done using following rubber commands:
rubber-info --check thesis.tex
rubber-info --boxes thesis.tex
Problem is that this is working only if all build files is in the same directory as *.tex files. I've tried also following:
rubber-info --check ./build_files/thesis
rubber-info --check ./build_files/thesis.tex
rubber-info --check ./build_files/thesis.log
But all of them gives me errors.
How can I parse log file contained under ./build_files?
PS: If it is possible to avoid using rubber and there is some better approach please let me know.
PPS: I'm using Linux but multi platform solution would be fine.
Thanks