How does compile time compare to regular TeX compilation? #1153
-
I'm curious if anyone has bench marked this against something like MikText etc. Typically, building LaTeX documents is slow, which brings the natural question whether this is faster? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
It is faster! In general The problem is that |
Beta Was this translation helpful? Give feedback.
-
Great to know! I think the idea of benchmarking could be a good thing for projects like this. The score could be kept and held in the repository, maybe even presented in the first page readme. Thanks for your reply! |
Beta Was this translation helpful? Give feedback.
-
To get insights into Rust I rewrote my nodejs microservice using xelatex into Rust using Tectonic runtime. I was so much looking forward to test it but nodejs 2x faster and for 10 parallel executions 8x faster, so not sure what to learn here |
Beta Was this translation helpful? Give feedback.
It is faster! In general
pdflatex
is faster thanxelatex
(probably becausexelatex
uses more compression by default). Buttectonic
is even faster thanpdflatex
(and it makes really smaller pdfs, just likexelatex
). The slowest islualatex
(but it has its own advantages).This was my first and main reason to switch to
tectonic
.The problem is that
tectonic
gets slower and slower with each new version. I was thinking of publishing a benchmark and opening an issue about it, but I have no time for that right now :(