Add LaTeX mode to the file variables for LaTeX export

This commit is contained in:
Gerard Vermeulen 2023-07-06 07:33:58 +02:00
parent 1356d65fcf
commit 57576de1f1

View File

@ -3,7 +3,7 @@
#+latex_class: article-local
#+latex_class_options: [11pt,a4paper,english,svgnames]
#+macro: kbd (eval (by-backend-kbd-org-macro $1))
#+options: ^:{}
#+options: ^:{} timestamp:nil
#+property: header-args:emacs-lisp :exports code :tangle init.el
#+startup: showeverything
#+begin_src latex :noweb yes :results raw
@ -2440,6 +2440,8 @@ else:
(with-eval-after-load 'ox-latex
(setopt
org-latex-compiler "lualatex"
org-latex-compiler-file-string
"%% -*- LaTeX; -*-\n%% Intended LaTeX compiler: %s\n"
org-latex-hyperref-template "\\hypersetup{
pdfauthor={%a},
pdftitle={%t},
@ -3354,6 +3356,9 @@ environments and non-floating breakable LaTeX environments by means of
(make-variable-buffer-local 'org-export-filter-src-block-functions)
(add-to-list 'org-export-filter-src-block-functions
'org-latex-engraved-source-block-filter)
(make-variable-buffer-local 'org-latex-compiler-file-string)
(setq org-latex-compiler-file-string
"%% -*- mode: LaTeX; -*-\n%% Intended LaTeX compiler: %s\n")
(when (fboundp 'smart-latex-engrave-org-source-blocks)
(smart-latex-engrave-org-source-blocks)))
#+end_src