I use fancyqr to generate qrcode on large LaTeX documents (more than 500 pages). There is a lot of qrcode to generate which increases the compilation time. How to reduce the time of creation of qrcode? (or avoid regenerating them at each compilation).
Asked
Active
Viewed 48 times
1
Ingmar
- 6,690
- 5
- 26
- 47
Xavier Pessoles
- 45
- 2
standalone, compile those, and input just the resulting pdfs withgraphicx. – Skillmon Jul 20 '23 at 18:41For information : my child file
\documentclass{standalone} \usepackage{fancyqr} \fancyqrset{height=2.5cm,level=H,padding} \begin{document} \fancyqr{mylink} \end{document}– Xavier Pessoles Jul 24 '23 at 21:58