64 lines
2.1 KiB
EmacsLisp
64 lines
2.1 KiB
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
(TeX-add-style-hook
|
|
"komageneral"
|
|
(lambda ()
|
|
(setq TeX-command-extra-options
|
|
"-shell-escape")
|
|
(TeX-add-to-alist 'LaTeX-provided-package-options
|
|
'(("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" "")))
|
|
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
|
|
(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-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")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
|
|
(TeX-run-style-hooks
|
|
"fontspec"
|
|
"geometry"
|
|
"scrlayer-scrpage"
|
|
"enumitem"
|
|
"caption"
|
|
"microtype"
|
|
"biblatex"
|
|
"float"
|
|
"xcolor"
|
|
"xltabular"
|
|
"longtable"
|
|
"booktabs"
|
|
"grffile"
|
|
"unicode-math"
|
|
"adjustbox"
|
|
"graphicx"
|
|
"etoolbox"
|
|
"wrapfig"
|
|
"rotating"
|
|
"ulem"
|
|
"amsmath"
|
|
"amssymb"
|
|
"capt-of"
|
|
"array"
|
|
"listings"
|
|
"csvsimple"
|
|
"hyperref")
|
|
(TeX-add-symbols
|
|
'("TitlePage" 1))
|
|
(LaTeX-add-environments
|
|
"oldlongtable"
|
|
"oldtabular")
|
|
(LaTeX-add-xcolor-definecolors
|
|
"darkgray"
|
|
"lightgray"
|
|
"sepia"
|
|
"codeblue"
|
|
"codeborder")
|
|
(LaTeX-add-array-newcolumntypes
|
|
"P")
|
|
(LaTeX-add-listings-lstdefinestyles
|
|
"numbers"))
|
|
:latex)
|
|
|