29 lines
743 B
EmacsLisp
29 lines
743 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
(TeX-add-style-hook
|
|
"komageneral"
|
|
(lambda ()
|
|
(setq TeX-command-extra-options
|
|
"-shell-escape")
|
|
(TeX-add-to-alist 'LaTeX-provided-package-options
|
|
'(("fontspec" "") ("geometry" "") ("scrlayer-scrpage" "") ("titlesec" "") ("enumitem" "") ("caption" "") ("fancyhdr" "") ("microtype" "") ("biblatex" "") ("graphicx" "") ("etoolbox" "")))
|
|
(TeX-run-style-hooks
|
|
"fontspec"
|
|
"geometry"
|
|
"scrlayer-scrpage"
|
|
"titlesec"
|
|
"enumitem"
|
|
"caption"
|
|
"fancyhdr"
|
|
"microtype"
|
|
"biblatex"
|
|
"graphicx"
|
|
"etoolbox")
|
|
(TeX-add-symbols
|
|
'("TitlePage" 2)
|
|
'("code" 1)
|
|
'("important" 1))
|
|
(LaTeX-add-bibliographies
|
|
"yourbibliography"))
|
|
:latex)
|
|
|