2024-11-29 18:56:32 +01:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
|
2023-12-14 15:56:17 +01:00
|
|
|
(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
|
2025-01-18 21:46:10 +01:00
|
|
|
'(("fontspec" "") ("geometry" "") ("scrlayer-scrpage" "autooneside=false") ("enumitem" "") ("caption" "") ("microtype" "protrusion=true" "expansion=true" "final" "tracking=true" "kerning=true") ("biblatex" "") ("float" "") ("xcolor" "table") ("xltabular" "") ("longtable" "") ("booktabs" "") ("grffile" "") ("unicode-math" "") ("adjustbox" "Export") ("graphicx" "") ("etoolbox" "") ("wrapfig" "") ("rotating" "") ("ulem" "normalem") ("amsmath" "") ("amssymb" "") ("capt-of" "") ("array" "") ("listings" "") ("csvsimple" "") ("hyperref" "")))
|
2024-11-29 18:56:32 +01:00
|
|
|
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
|
2025-01-15 21:49:09 +01:00
|
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
|
2025-01-18 21:46:10 +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")
|
2025-01-15 21:49:09 +01:00
|
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
|
2025-01-18 21:46:10 +01:00
|
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
|
2023-12-14 15:56:17 +01:00
|
|
|
(TeX-run-style-hooks
|
|
|
|
"fontspec"
|
|
|
|
"geometry"
|
2024-09-30 13:47:09 +02:00
|
|
|
"scrlayer-scrpage"
|
|
|
|
"enumitem"
|
|
|
|
"caption"
|
|
|
|
"microtype"
|
|
|
|
"biblatex"
|
2024-10-31 19:34:37 +01:00
|
|
|
"float"
|
|
|
|
"xcolor"
|
2025-01-16 21:44:19 +01:00
|
|
|
"xltabular"
|
2025-01-18 21:46:10 +01:00
|
|
|
"longtable"
|
2024-10-31 19:34:37 +01:00
|
|
|
"booktabs"
|
|
|
|
"grffile"
|
|
|
|
"unicode-math"
|
|
|
|
"adjustbox"
|
2024-12-22 20:46:45 +01:00
|
|
|
"graphicx"
|
|
|
|
"etoolbox"
|
|
|
|
"wrapfig"
|
|
|
|
"rotating"
|
|
|
|
"ulem"
|
|
|
|
"amsmath"
|
|
|
|
"amssymb"
|
|
|
|
"capt-of"
|
2024-12-23 11:46:10 +01:00
|
|
|
"array"
|
2025-01-12 20:16:32 +01:00
|
|
|
"listings"
|
2025-01-18 21:46:10 +01:00
|
|
|
"csvsimple"
|
|
|
|
"hyperref")
|
2024-09-30 13:47:09 +02:00
|
|
|
(TeX-add-symbols
|
2025-01-16 21:49:51 +01:00
|
|
|
'("TitlePage" 1))
|
2024-12-23 11:46:10 +01:00
|
|
|
(LaTeX-add-environments
|
|
|
|
"oldtabular")
|
|
|
|
(LaTeX-add-xcolor-definecolors
|
|
|
|
"darkgray"
|
2025-01-18 21:46:10 +01:00
|
|
|
"lightgray"
|
|
|
|
"sepia"
|
|
|
|
"codeblue"
|
|
|
|
"codeborder")
|
|
|
|
(LaTeX-add-array-newcolumntypes
|
|
|
|
"P")
|
2024-12-30 09:50:39 +01:00
|
|
|
(LaTeX-add-listings-lstdefinestyles
|
|
|
|
"numbers"))
|
2023-12-14 15:56:17 +01:00
|
|
|
:latex)
|
|
|
|
|