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

56 lines
2 KiB
EmacsLisp
Raw Normal View History

2024-11-29 18:56:32 +01:00
;; -*- lexical-binding: t; -*-
(TeX-add-style-hook
"komageneral"
(lambda ()
(setq TeX-command-extra-options
"-shell-escape")
2024-09-30 13:47:09 +02:00
(TeX-add-to-alist 'LaTeX-provided-package-options
2024-12-22 20:46:45 +01:00
'(("fontspec" "") ("geometry" "") ("scrlayer-scrpage" "") ("enumitem" "") ("caption" "") ("microtype" "expansion" "protrusion=true") ("polyglossia" "") ("biblatex" "") ("float" "") ("xcolor" "") ("listings" "") ("booktabs" "") ("grffile" "") ("unicode-math" "") ("adjustbox" "Export") ("graphicx" "") ("etoolbox" "") ("longtable" "") ("wrapfig" "") ("rotating" "") ("ulem" "normalem") ("amsmath" "") ("amssymb" "") ("capt-of" "") ("hyperref" "")))
2024-11-29 18:56:32 +01:00
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
2024-12-16 09:39:18 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
2024-12-22 20:46:45 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "lstinline")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
2024-12-16 09:39:18 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
2024-12-22 20:46:45 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "url")
(TeX-run-style-hooks
"fontspec"
"geometry"
2024-09-30 13:47:09 +02:00
"scrlayer-scrpage"
"enumitem"
"caption"
"microtype"
2024-11-29 18:56:32 +01:00
"polyglossia"
2024-09-30 13:47:09 +02:00
"biblatex"
2024-10-31 19:34:37 +01:00
"float"
"xcolor"
"listings"
"booktabs"
"grffile"
"unicode-math"
"adjustbox"
2024-12-22 20:46:45 +01:00
"graphicx"
"etoolbox"
"longtable"
"wrapfig"
"rotating"
"ulem"
"amsmath"
"amssymb"
"capt-of"
"hyperref")
2024-09-30 13:47:09 +02:00
(TeX-add-symbols
2024-10-31 19:34:37 +01:00
'("TitlePage" 3)
2024-09-30 13:47:09 +02:00
'("code" 1)
2024-11-29 18:56:32 +01:00
'("important" 1))
(LaTeX-add-polyglossia-langs
'("english" "defaultlanguage" "")
'("german" "otherlanguages" "")))
:latex)