forked from timjb/uni-spicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom-snippets.cson
122 lines (121 loc) · 2.14 KB
/
atom-snippets.cson
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Copy these into your 'snippets.cson' file ('Atom > Open Your Snippets')
'.text.tex':
'Emphasis':
'prefix': 'em'
'body': '\\\\emph{$1}'
'Backslash':
# weil so unangenehm zu tippen
'prefix': '7'
'body': '\\\\'
'Set-Builder-Notation':
'prefix': 'set'
'body': '\\\\Set{$1}{$2}'
'Integral':
'prefix': 'inte'
'body': '\\\\Int{$1}{$2}{$3}{$4}'
'All-Quantor':
'prefix': 'fa'
'body': '\\\\fa{$1} $2'
'Existence-Quantor':
'prefix': 'ex'
'body': '\\\\ex{$1} $2'
'Definitions-Istgleich':
'prefix': 'ce'
'body': '\\\\coloneqq'
'Intervall':
'prefix': 'iv'
'body': '\\\\$1interval{$2}{$3}'
'Bruch':
'prefix': 'frac'
'body': '\\\\frac{$1}{$2}'
'Lemma':
'prefix': 'lem'
'body': """
\\\\begin{lem}
$1
\\\\end{lem}
"""
'Betrag':
'prefix': 'abs'
'body': '\\\\abs{$1}'
'Norm':
'prefix': 'norm'
'body': '\\\\norm{$1}'
'Definition':
'prefix': 'defn'
'body': """
\\\\begin{defn}
$1
\\\\end{defn}
"""
'Beispiel':
'prefix': 'bsp'
'body': """
\\\\begin{bsp}
$1
\\\\end{bsp}
"""
'Beispiele':
'prefix': 'bspe'
'body': """
\\\\begin{bspe}
$1
\\\\end{bspe}
"""
'Satz':
'prefix': 'satz'
'body': """
\\\\begin{satz}
$1
\\\\end{satz}
"""
'Theorem':
'prefix': 'thm'
'body': """
\\\\begin{thm}
$1
\\\\end{thm}
"""
'Korollar':
'prefix': 'kor'
'body': """
\\\\begin{kor}
$1
\\\\end{kor}
"""
'Bemerkung':
'prefix': 'bem'
'body': """
\\\\begin{bem}
$1
\\\\end{bem}
"""
'Proposition':
'prefix': 'prop'
'body': """
\\\\begin{prop}
$1
\\\\end{prop}
"""
'Konstruktion':
'prefix': 'konstr'
'body': """
\\\\begin{konstr}
$1
\\\\end{konstr}
"""
"""
'Notation':
'prefix': 'nota'
'body': """
\\\\begin{nota}
$1
\\\\end{nota}
"""
'Beobachtung':
'prefix': 'beob'
'body': """
\\\\begin{beob}
$1
\\\\end{beob}
"""