50 lines
1.2 KiB
EmacsLisp
50 lines
1.2 KiB
EmacsLisp
(TeX-add-style-hook
|
|
"komageneral"
|
|
(lambda ()
|
|
(setq TeX-command-extra-options
|
|
"-shell-escape")
|
|
(TeX-add-to-alist 'LaTeX-provided-class-options
|
|
'(("scrartcl" "a4paper" "10pt" "captions=tableheading" "twoside=false")))
|
|
(TeX-add-to-alist 'LaTeX-provided-package-options
|
|
'(("microtype" "expansion" "protrusion=true") ("ulem" "normalem") ("adjustbox" "Export")))
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "url")
|
|
(TeX-run-style-hooks
|
|
"latex2e"
|
|
"fontspec"
|
|
"geometry"
|
|
"scrlayer-scrpage"
|
|
"titlesec"
|
|
"enumitem"
|
|
"caption"
|
|
"fancyhdr"
|
|
"microtype"
|
|
"biblatex"
|
|
"float"
|
|
"xcolor"
|
|
"listings"
|
|
"longtable"
|
|
"wrapfig"
|
|
"rotating"
|
|
"ulem"
|
|
"amsmath"
|
|
"amssymb"
|
|
"capt-of"
|
|
"hyperref"
|
|
"booktabs"
|
|
"polyglossia"
|
|
"grffile"
|
|
"unicode-math"
|
|
"adjustbox"
|
|
"graphicx"
|
|
"scrartcl"
|
|
"scrartcl10"
|
|
"etoolbox")
|
|
(TeX-add-symbols
|
|
'("TitlePage" 3)
|
|
'("code" 1)
|
|
'("important" 1)))
|
|
:latex)
|
|
|