I just finished writing my Master's thesis using Latex.
When I was executing my last builds, I was thinking that it would have been quite interesting to count the total number of builds it had taken me to get so far.
Is it possible to somehow count the number of builds you do on a single document? Can I define some sort of counter that is going to increment by 1 with every build (maybe using an external file to store and read the current number)?
git initin the repertory and usegit commitwhen making changes. You can then dogit log --oneline initial..HEAD | wc -lto get the number of commits since initial one (tagged "initial") (or perhaps there is even better git-way to count commits since initial one, did not check). Indeed number of changesets to your Thesis looks more significant than number of LaTeX builds... (add*pdfand*logand*auxand*tocetc.. to your.gitignore, only the tex sources need version-controlling) – Dec 30 '18 at 09:38