Path: blob/main/docs/course-assets/auto/latex-template.el
906 views
(TeX-add-style-hook1"latex-template"2(lambda ()3(TeX-add-to-alist 'LaTeX-provided-package-options4'(("geometry" "margin=2cm") ("xcolor" "svgnames")))5(add-to-list 'LaTeX-verbatim-environments-local "minted")6(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")7(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")8(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")9(add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")10(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")11(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")12(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")13(TeX-run-style-hooks14"latex2e"15"article"16"art10"17"graphicx"18"color"19"palatino"20"mathpazo"21"enumerate"22"mathtools"23"hyperref"24"geometry"25"minted"26"xcolor")27(TeX-add-symbols28'("topline" 3)29"myname"30"assignment")31(LaTeX-add-environments32"problem")33(LaTeX-add-counters34"problem"))35:latex)36373839