diff --git a/config.el b/config.el index aa04504..d4d7649 100644 --- a/config.el +++ b/config.el @@ -371,12 +371,11 @@ Bound to cmd+v in org-mode and markdown-mode." ;; Optional: enable booktabs style (horizontal rules in tables) ;; (setq org-latex-tables-booktabs t) -;; LuaLaTeX — nativní Unicode, žádné inputenc workaroundy. -;; -lualatex implicitně generuje PDF; -pdf (-pdflatex) se NEpoužívá. +;; Ensure latexmk doesn't hang on errors (nonstopmode + force-continue) +;; Doom latex module usually sets this, but belt+suspenders for macOS. (after! org - (setq org-latex-compiler "lualatex" - org-latex-pdf-process - '("latexmk -f -lualatex -interaction=nonstopmode -output-directory=%o %f"))) + (setq org-latex-pdf-process + '("latexmk -f -pdf -%latex -interaction=nonstopmode -output-directory=%o %f"))) ;;; ============================================================