emacs.d/texmf/tex/latex/mycustomstyles/auto/komageneral.el

51 lines
1.2 KiB
EmacsLisp
Raw Normal View History

(TeX-add-style-hook
"komageneral"
(lambda ()
(setq TeX-command-extra-options
"-shell-escape")
2024-10-31 19:34:37 +01:00
(TeX-add-to-alist 'LaTeX-provided-class-options
'(("scrartcl" "a4paper" "10pt" "captions=tableheading" "twoside=false")))
2024-09-30 13:47:09 +02:00
(TeX-add-to-alist 'LaTeX-provided-package-options
2024-10-31 19:34:37 +01:00
'(("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
2024-10-31 19:34:37 +01:00
"latex2e"
"fontspec"
"geometry"
2024-09-30 13:47:09 +02:00
"scrlayer-scrpage"
"titlesec"
"enumitem"
"caption"
"fancyhdr"
"microtype"
"biblatex"
2024-10-31 19:34:37 +01:00
"float"
"xcolor"
"listings"
"longtable"
"wrapfig"
"rotating"
"ulem"
"amsmath"
"amssymb"
"capt-of"
"hyperref"
"booktabs"
"polyglossia"
"grffile"
"unicode-math"
"adjustbox"
2024-09-30 13:47:09 +02:00
"graphicx"
2024-10-31 19:34:37 +01:00
"scrartcl"
"scrartcl10"
2024-09-30 13:47:09 +02:00
"etoolbox")
(TeX-add-symbols
2024-10-31 19:34:37 +01:00
'("TitlePage" 3)
2024-09-30 13:47:09 +02:00
'("code" 1)
2024-10-31 19:34:37 +01:00
'("important" 1)))
:latex)