summaryrefslogtreecommitdiff
path: root/support/ultratex/user/textree.el
blob: 7297786852a9861260555ac24a0009e1ef5edbb2 (plain)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
;;; textree.el --- sample textree file.
;; Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
;; Mark Haiman, Nick Reingold, John Palmieri

;; (This is a sample file; it is part of the Ultra-TeX package.)

;; This is the alist of TeX control sequences for lightning
;; completion.  If you edit this by hand, then notice that certain
;; special characters, like \ and ", need to be `quoted' with \.  For
;; instance, the string consisting of one double quote is written \",
;; or in quotes, as "\"".  The string consisting of a single backslash
;; is written as "\\".

;; See the documentation for the format of the elements of this list.

(

("\\newcommand{\\}[]{}" -5)

("\\renewcommand{\\}[]{}" -5)

("\\input{}" -1)

("\\newenvironment{}[]{}{}" -7)

("\\newcounter{}" -1)

("\\newtheorem{}[]{}" -5)

("\\cite[]{}" -3)


("\\ " 0)

("\\noindent " 0)

("\\," 0)

("\\!" 0 . ultex-math-mode)

("\\qquad " 0 . ultex-math-mode)

("\\quad " 0 . ultex-math-mode)

("\\hfill " 0)


("\\\\
" 0 . ultex-next-item)

("\\vspace{in}
" -4)

("\\smallskip
" 0)

("\\bigskip
" 0)

("\\allowbreak " 0)

("\\pagebreak

" 0)

("\\newpage
" 0)


("\\item []" -1)

("\\begin{enumerate}
\\item []
\\end{enumerate}" -17)

("\\begin{itemize}
\\item []
\\end{itemize}" -15)

("\\begin{list}{}{}
\\item []
\\end{list}" -23)

("\\begin{quote}

\\end{quote}
" -13)

("\\begin{quotation}

\\end{quotation}
" -17)

("\\begin{tabular}[]{}

\\end{tabular}" -18)

("\\begin{center}

\\end{center}" -13)

("\\begin{array}[]{}

\\end{array}" -16 . ultex-math-mode)


("\\`" 0)

("\\'" 0)

("\\\"" 0)


("\\frac{}{}" -3 . ultex-math-mode)

("\\tilde{}" -1 . ultex-math-mode)

("\\sqrt[]{}" -3 . ultex-math-mode)

("\\%" 0)

("\\$" 0)


("\\{ \\}" -3 . ultex-math-mode)

("\\left( \\right)" -8 . ultex-math-mode)

("\\left( \\right." -8 . ultex-math-mode)

("\\left\\{ \\right\\}" -9 . ultex-math-mode)

("\\left\\{ \\right." -8 . ultex-math-mode)

("\\left[ \\right]" -8 . ultex-math-mode)

("\\left[ \\right." -8 . ultex-math-mode)


("\\relax" 0)

("\\section{}\\label{}" -10)

("\\subsection{}\\label{}" -10)

("\\subsubsection{}\\label{}" -10)

("\\footnote{}" -1)

("\\bibitem[]{}" -3)

)

;;; textree.el ends here