I'm using MiKTeX for around 2 years with a great template for my university (https://github.com/andygrunwald/FOM-LaTeX-Template).
The results are always great but the time it takes for me to compile the document is terrible. I have to wait for ~2:40 minutes until I can open the compiled PDF document. Two colleagues of mine are using the same setup in regards of template and MiKTeX version and in these cases it only takes 20-30 seconds.
I've already checked a lot of threads and websites which have compiling speed as topic but I couldn't find any solution.
I've checked following things:
hardware performance while compiling.
These stats are looking fine in my opinion and I dont think that the issue is related to my Hardware. (I7-4510U / 8 GB RAM).
I've checked, as already stated the MiKTeX settings and couldn't identify anything which could lead to these bad compiling times. The settings are identical to these of my colleagues who are not facing this issue. I've tried to deactive the "Download missing packets on the fly" setting which didn't increase the compiling speed.
I've reinstalled the whole application without any change of behavior.
Via following link you'll find the .log file of the compiling procedure.
Link to Log-File
Does anyone have an idea how I could solve this issue?
.logfile shows at least 8 very large images being included in your document. The first one beingabbildungen/Resultate_auswerten1.png. Reducing the file size of these lossy images would speed up your processing I'm sure. – Werner Nov 23 '17 at 17:12.batfile provided (from the github link)? – Guido Nov 23 '17 at 18:05.bibfile (part of that should be fixed in 2.9). – moewe Nov 23 '17 at 19:29biblatex, ...). Did you also check that? – moewe Nov 23 '17 at 20:39batfile. In the vast majority of cases, it is totally useless to callbiber(to update the bibliography and citations) and to run latex 3 times. Actually, even with changes in the bibliography, in the vast majority of cases, you have to run latex just twice (the bbl file is loaded at the beginning of the run and not at the end). If you run latex once and you do not run biber every, then this takes about 1/4 of the total time (and often there will be no differences). This is compatible with your time and the times of your colleagues – Guido Nov 24 '17 at 07:10pdflatex thesis_main.tex makeindex thesis_main.nlo -s nomencl.ist -o thesis_main.nls biber thesis_main pdflatex thesis_main.tex pdflatex thesis_main.tex thesis_main.pdfIf I understood it correctly I would keep following lines:pdflatex thesis_main.tex makeindex thesis_main.nlo -s nomencl.ist -o thesis_main.nls thesis_main.pdf- correct? – Axel Nov 24 '17 at 09:51pdflatex thesis_main.tex– Guido Nov 24 '17 at 10:47