-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathmain.el
80 lines (79 loc) · 2.08 KB
/
main.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(TeX-add-style-hook
"main"
(lambda ()
(TeX-add-to-alist 'LaTeX-provided-class-options
'(("book" "11pt" "a4paper" "twoside" "openright")))
(TeX-add-to-alist 'LaTeX-provided-package-options
'(("sty/ethuebungchaptersection" "sol" "nogeom") ("inputenc" "utf8") ("natbib" "round" "authoryear") ("fontenc" "T1")))
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "lstinline")
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "url")
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
(TeX-run-style-hooks
"latex2e"
"macros/tikzstuff"
"macros/macros"
"macros/listings"
"title"
"title-backside"
"preface"
"topics/linear-algebra"
"topics/optimisation"
"topics/directed-graphical-models"
"topics/undirected-graphical-models"
"topics/expressive-power-of-graphical-models"
"topics/factor-graphs-and-message-passing"
"topics/inference-for-hidden-markov-models"
"topics/model-based-learning"
"topics/sampling-and-monte-carlo-integration"
"topics/variational-inference"
"book"
"bk11"
"geometry"
"chngcntr"
"sty/ethuebungchaptersection"
"nicefrac"
"graphicx"
"float"
"amsmath"
"amssymb"
"amstext"
"amsthm"
"bbm"
"bm"
"mathtools"
"inputenc"
"subfig"
"booktabs"
"xcolor"
"url"
"ccicons"
"natbib"
"minitoc"
"cprotect"
"listings"
"fancyhdr"
"calc"
"calligra"
"fontenc")
(TeX-add-symbols
'("sectionmark" 1)
'("chaptermark" 1)
'("exref" 1)
'("ex" 1)
"clearemptydoublepage"
"blankpage"
"origdoublepage"
"cleardoublepage")
(LaTeX-add-bibliographies
"refs")
(LaTeX-add-pagestyles
"plain")
(LaTeX-add-counters
"mycounter")
(LaTeX-add-lengths
"pageoffset"))
:latex)