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

62 lines
2.1 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
2025-01-16 21:44:19 +01:00
'(("fontspec" "") ("geometry" "") ("scrlayer-scrpage" "autooneside=false") ("enumitem" "") ("caption" "") ("microtype" "protrusion=true" "expansion=true" "final" "tracking=true" "kerning=true") ("biblatex" "") ("float" "") ("xcolor" "table") ("longtable" "") ("xltabular" "") ("booktabs" "") ("grffile" "") ("unicode-math" "") ("adjustbox" "Export") ("graphicx" "") ("etoolbox" "") ("wrapfig" "") ("rotating" "") ("ulem" "normalem") ("amsmath" "") ("amssymb" "") ("capt-of" "") ("hyperref" "") ("array" "") ("pdfx" "a-1a") ("listings" "") ("csvsimple" "")))
2024-11-29 18:56:32 +01:00
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
2025-01-12 20:16:32 +01:00
(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-braces-local "url")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "lstinline")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
2025-01-12 20:16:32 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
2025-01-15 21:49:09 +01:00
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
(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
"longtable"
"xltabular"
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
"hyperref"
"array"
2024-12-30 09:50:39 +01:00
"pdfx"
2025-01-12 20:16:32 +01:00
"listings"
"csvsimple")
2024-09-30 13:47:09 +02:00
(TeX-add-symbols
'("TitlePage" 1)
2024-09-30 13:47:09 +02:00
'("code" 1)
2024-11-29 18:56:32 +01:00
'("important" 1))
2024-12-23 11:46:10 +01:00
(LaTeX-add-environments
"oldtabular")
(LaTeX-add-xcolor-definecolors
"darkgray"
2024-12-30 09:50:39 +01:00
"lightgray")
(LaTeX-add-listings-lstdefinestyles
"numbers"))
:latex)