Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmcninch-tufts
GitHub Repository: gmcninch-tufts/2024-Sp-Math190
Path: blob/main/docs/course-assets/auto/latex-template.el
906 views
1
(TeX-add-style-hook
2
"latex-template"
3
(lambda ()
4
(TeX-add-to-alist 'LaTeX-provided-package-options
5
'(("geometry" "margin=2cm") ("xcolor" "svgnames")))
6
(add-to-list 'LaTeX-verbatim-environments-local "minted")
7
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
8
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
9
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
10
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
11
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
12
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
13
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
14
(TeX-run-style-hooks
15
"latex2e"
16
"article"
17
"art10"
18
"graphicx"
19
"color"
20
"palatino"
21
"mathpazo"
22
"enumerate"
23
"mathtools"
24
"hyperref"
25
"geometry"
26
"minted"
27
"xcolor")
28
(TeX-add-symbols
29
'("topline" 3)
30
"myname"
31
"assignment")
32
(LaTeX-add-environments
33
"problem")
34
(LaTeX-add-counters
35
"problem"))
36
:latex)
37
38
39