]> git.lyx.org Git - lyx.git/blob - lib/ui/stdtoolbars.inc
talking about famous last words?
[lyx.git] / lib / ui / stdtoolbars.inc
1 # -*- text -*-
2
3 # file stdtoolbars.inc
4 # This file is part of LyX, the document processor.
5 # Licence details can be found in the file COPYING.
6
7 # author Jean-Marc Lasgouttes
8 # author John Levon
9
10 # Full author contact details are available in file CREDITS.
11
12 # The interface is designed (partially) following the KDE Human Interface
13 # Guidelines (http://usability.kde.org/hig/)
14
15 # Casing rules "The tooltip":
16 # Capitalize the first letter of the first word, and any other words normally
17 # capitalized in sentences, such as application names.
18 #
19 # Casing Rules for the "GUI Name":
20 # Capitalize all words in the element, with the following exceptions: 
21 # * Articles: a, an, the. 
22 # * Conjunctions: and, but, for, not, so, yet ...  
23 # * Prepositions of three or fewer letters: at, for, by, in, to ...
24 #
25 # (http://library.gnome.org/devel/hig-book/stable/design-text-labels.html.en)
26
27 # A Toolbar starts like :
28 #
29 # Toolbar "name" "GUI Name"
30 #
31 # Only seven commands are allowed inside the Toolbar and End
32 # directives:
33 #   Item "The tooltip" "<action> [<parameter>]" adds an icon to the toolbar performing
34 #          "<action> <parameter>"
35 #      Examples:
36 #      Item "Small font" "font-size small"
37 #      Item Emphasized set-emph
38 #
39 #   Layouts adds the layouts combo-box to the toolbar
40 #
41 #   Separator adds some spacing to the toolbar
42 #
43 #   Minibuffer adds the command buffer (Qt only, only one may exist)
44 #
45 #   TableInsert "The tooltip" adds a special widget for quick insertion of tables
46 #
47 #   PopupMenu "name" "The tooltip"
48 #
49 #   ... inserts a button with a popup menu derived from Toolbar "name"
50 #
51 #   IconPalette "name" "The tooltip"
52 #
53 #   ... inserts a button with a popup iconpalette derived from Toolbar "name"
54 #
55 #
56 # The icons are found in the lib/images/ direcory under the name
57 # action.png or action_parameter.png, except for math-insert, which
58 # is e.g. lib/image/math/sum.png. Note that some characters are
59 # replaced (e.g. ')' -> rbracket).
60 #
61 #  All other lyx commands will get a "unknown" icon.
62 #
63 # This is the default toolbar:
64
65 ToolbarSet
66
67         Toolbar "standard" "Standard"
68                 Layouts
69                 Item "New document" "buffer-new"
70                 Item "Open document" "file-open"
71                 Item "Save document" "buffer-write"
72                 Item "Print document" "dialog-show print"
73                 Separator
74                 Item "Check spelling" "dialog-show spellchecker"
75                 Separator
76                 Item "Undo" "undo"
77                 Item "Redo" "redo"
78                 Item "Cut" "cut"
79                 Item "Copy" "copy"
80                 Item "Paste" "paste"
81                 Item "Find and replace" "dialog-show findreplace"
82                 Item "Navigate back" "bookmark-goto 0"
83                 Separator
84                 Item "Toggle emphasis" "font-emph"
85                 Item "Toggle noun" "font-noun"
86                 Item "Apply last" "textstyle-apply"
87                 Separator
88                 Item "Insert math" "math-mode"
89                 Item "Insert graphics" "dialog-show-new-inset graphics"
90                 TableInsert "Insert table"
91                 Separator
92                 Item "Toggle outline" "dialog-toggle toc"
93                 Item "Toggle math toolbar" "toolbar-toggle math"
94                 Item "Toggle table toolbar" "toolbar-toggle table"
95         End
96
97         Toolbar "extra" "Extra"
98                 Item "Default" "layout"
99                 Item "Numbered list" "layout Enumerate"
100                 Item "Itemized list" "layout Itemize"
101                 Item "List" "layout List"
102                 Item "Description" "layout Description"
103                 Item "Increase depth" "depth-increment"
104                 Item "Decrease depth" "depth-decrement"
105                 Separator
106                 Item "Insert figure float" "float-insert figure"
107                 Item "Insert table float" "float-insert table"
108                 Item "Insert label" "label-insert"
109                 Item "Insert cross-reference" "dialog-show-new-inset ref"
110                 Item "Insert citation" "dialog-show-new-inset citation"
111                 Item "Insert index entry" "index-insert"
112                 Item "Insert nomenclature entry" "nomencl-insert"
113                 Separator
114                 Item "Insert footnote" "footnote-insert"
115                 Item "Insert margin note" "marginalnote-insert"
116                 Item "Insert note" "note-insert"
117                 Item "Insert box" "box-insert Frameless"
118                 Item "Insert hyperlink" "href-insert"
119                 Item "Insert TeX code" "ert-insert"
120                 Item "Insert math macro" "math-macro newmacroname newcommand"
121                 Item "Include file" "dialog-show-new-inset include"
122                 Separator
123                 Item "Text style" "dialog-show character"
124                 Item "Paragraph settings" "layout-paragraph"
125                 Item "Thesaurus" "thesaurus-entry"
126         End
127         
128         Toolbar "table" "Table"
129                 Item "Add row" "tabular-feature append-row"
130                 Item "Add column" "tabular-feature append-column"
131                 Item "Delete row" "tabular-feature delete-row"
132                 Item "Delete column" "tabular-feature delete-column"
133                 Separator
134                 Item "Set top line" "tabular-feature toggle-line-top"
135                 Item "Set bottom line" "tabular-feature toggle-line-bottom"
136                 Item "Set left line" "tabular-feature toggle-line-left"
137                 Item "Set right line" "tabular-feature toggle-line-right"
138                 Item "Set border lines" "tabular-feature set-border-lines"
139                 Item "Set all lines" "tabular-feature set-all-lines"
140                 Item "Unset all lines" "tabular-feature unset-all-lines"
141                 Separator
142                 Item "Align left" "command-alternatives tabular-feature m-align-left;tabular-feature align-left"
143                 Item "Align center" "command-alternatives tabular-feature m-align-center;tabular-feature align-center"
144                 Item "Align right" "command-alternatives tabular-feature m-align-right;tabular-feature align-right"
145                 Separator
146                 Item "Align top" "command-alternatives tabular-feature m-valign-top;tabular-feature valign-top"
147                 Item "Align middle" "command-alternatives tabular-feature m-valign-middle;tabular-feature valign-middle"
148                 Item "Align bottom" "command-alternatives tabular-feature m-valign-bottom;tabular-feature valign-bottom"
149                 Separator
150                 Item "Rotate cell" "tabular-feature toggle-rotate-cell"
151                 Item "Rotate table" "tabular-feature toggle-rotate-tabular"
152                 Item "Set multi-column" "tabular-feature multicolumn"
153         End
154         
155         Toolbar "math" "Math"
156                 Item "Set display mode" "math-display"
157                 Separator
158                 Item "Subscript" "math-subscript"
159                 Item "Superscript" "math-superscript"
160                 Item "Insert square root" "math-insert \sqrt"
161                 Item "Insert root" "math-insert \root"
162                 Item "Insert standard fraction" "math-insert \frac"
163                 Item "Insert sum" "math-insert \sum"
164                 Item "Insert integral" "math-insert \int"
165                 Item "Insert product" "math-insert \prod"
166                 Separator
167                 Item "Insert ( )" "math-delim ( )"
168                 Item "Insert [ ]" "math-delim [ ]"
169                 Item "Insert { }" "math-delim { }"
170                 Item "Insert delimiters" "dialog-show mathdelimiter"
171                 Separator
172                 Item "Insert matrix" "dialog-show mathmatrix"
173                 Item "Insert cases environment" "math-insert \cases"
174                 Item "Add row" "tabular-feature append-row"
175                 Item "Add column" "tabular-feature append-column"
176                 Item "Delete row" "tabular-feature delete-row"
177                 Item "Delete column" "tabular-feature delete-column"
178                 Separator
179                 Item "Toggle math panels" "toolbar-toggle math_panels"
180         End
181
182         Toolbar "mathmacrotemplate" "Math Macros"
183                 Item "Remove last argument" "math-macro-remove-param"
184                 Item "Append argument" "math-macro-add-param"
185                 Separator
186                 Item "Make first non-optional into optional argument" "math-macro-make-optional"
187                 Item "Make last optional into non-optional argument"
188                 "math-macro-make-nonoptional"
189                 Item "Remove optional argument" "math-macro-remove-optional-param"
190                 Item "Insert optional argument" "math-macro-add-optional-param"
191                 Separator
192                 Item "Remove last argument spitting out to the right" "math-macro-remove-greedy-param"
193                 Item "Append argument eating from the right" "math-macro-append-greedy-param"
194                 Item "Append optional argument eating from the right" "math-macro-add-greedy-optional-param"
195         End
196
197         Toolbar "minibuffer" "Command Buffer"
198                 Minibuffer
199         End
200         
201         Toolbar "review" "Review[[Toolbar]]"
202                 Item "Track changes" "changes-track"
203                 Item "Show changes in output" "changes-output"
204                 Separator
205                 Item "Next change" "change-next"
206                 Item "Accept change inside selection" "change-accept"
207                 Item "Reject change inside selection" "change-reject"
208                 Separator
209                 Item "Merge changes" "changes-merge"
210                 Item "Accept all changes" "all-changes-accept"
211                 Item "Reject all changes" "all-changes-reject"
212                 Separator
213                 Item "Insert note" "note-insert"
214                 Item "Next note" "note-next"
215         End
216         
217         Toolbar "view/update" "View/Update"
218                 Item "View" "buffer-view"
219                 Item "Update" "buffer-update"
220                 Item "View master document" "master-buffer-view"
221                 Item "Update master document" "master-buffer-update"
222                 Separator
223                 StickyPopupMenu "view-others" "View other formats"
224                 StickyPopupMenu "update-others" "Update other formats"
225         End
226         
227         Toolbar "view-others" "View Other Formats"
228                 ViewFormats
229         End
230         
231         Toolbar "update-others" "Update Other Formats"
232                 UpdateFormats
233         End
234
235 # The following three toolbars are disabled because of missing icons.
236 #       Toolbar "import/export" "Import/Export"
237 #               Item "Import" "buffer-import"
238 #               Item "Export" "buffer-export"
239 #               StickyPopupMenu "import-others" "Import other formats"
240 #               StickyPopupMenu "export-others" "Export other formats"
241 #       End
242
243 #       Toolbar "import-others" "Import Other Formats"
244 #               ImportFormats
245 #       End
246
247 #       Toolbar "export-others" "Export Other Formats"
248 #               ExportFormats
249 #       End
250
251         Toolbar "vcs" "Version Control"
252                 Item "Register" "vc-register"
253                 Item "Check-out for edit" "vc-check-out"
254                 Item "Check-in changes" "vc-check-in"
255                 Item "View revision log" "dialog-show vclog"
256                 Item "Revert changes" "vc-revert"
257                 Separator
258                 Item "Use SVN file locking property" "vc-locking-toggle"
259         End
260
261         Toolbar "math_panels" "Math Panels"
262                 PopupMenu "space" "Math spacings"
263                 PopupMenu "style" "Styles"
264                 PopupMenu "frac-square" "Fractions"
265                 PopupMenu "font" "Fonts"
266                 PopupMenu "functions" "Functions"
267                 IconPalette "latex_deco" "Frame decorations"
268                 IconPalette "latex_varsz" "Big operators"
269                 IconPalette "latex_misc" "Miscellaneous"
270                 IconPalette "latex_greek" "Greek"
271                 IconPalette "latex_arrow" "Arrows"
272                 IconPalette "latex_ams_arrows" "AMS arrows"
273                 IconPalette "latex_bop" "Operators"
274                 IconPalette "latex_brel" "Relations"
275                 IconPalette "latex_ams_rel" "AMS relations"
276                 IconPalette "latex_ams_nrel" "AMS negative relations"
277                 IconPalette "latex_dots" "Dots"
278                 IconPalette "latex_ams_ops" "AMS operators"
279                 IconPalette "latex_ams_misc" "AMS miscellaneous"
280         End
281
282         Toolbar "functions" "Functions"
283                 Item "arccos" "math-insert \arccos"
284                 Item "arcsin" "math-insert \arcsin"
285                 Item "arctan" "math-insert \arctan"
286                 Item "arg" "math-insert \arg"
287                 Item "bmod" "math-insert \bmod"
288                 Item "cos" "math-insert \cos"
289                 Item "cosh" "math-insert \cosh"
290                 Item "cot" "math-insert \cot"
291                 Item "coth" "math-insert \coth"
292                 Item "csc" "math-insert \csc"
293                 Item "deg" "math-insert \deg"
294                 Item "det" "math-insert \det"
295                 Item "dim" "math-insert \dim"
296                 Item "exp" "math-insert \exp"
297                 Item "gcd" "math-insert \gcd"
298                 Item "hom" "math-insert \hom"
299                 Item "inf" "math-insert \inf"
300                 Item "ker" "math-insert \ker"
301                 Item "lg" "math-insert \lg"
302                 Item "lim" "math-insert \lim"
303                 Item "liminf" "math-insert \liminf"
304                 Item "limsup" "math-insert \limsup"
305                 Item "ln" "math-insert \ln"
306                 Item "log" "math-insert \log"
307                 Item "max" "math-insert \max"
308                 Item "min" "math-insert \min"
309                 Item "sec" "math-insert \sec"
310                 Item "sin" "math-insert \sin"
311                 Item "sinh" "math-insert \sinh"
312                 Item "sup" "math-insert \sup"
313                 Item "tan" "math-insert \tan"
314                 Item "tanh" "math-insert \tanh"
315                 Item "Pr" "math-insert \Pr"
316         End
317
318         Toolbar "space" "Spacings"
319                 Item "Thin space        \\," "math-insert \,"
320                 Item "Medium space      \\:" "math-insert \:"
321                 Item "Thick space       \\;" "math-insert \;"
322                 Item "Quadratin space   \\quad" "math-insert \quad"
323                 Item "Double quadratin space    \\qquad" "math-insert \qquad"
324                 Item "Negative space    \\!" "math-insert \!"
325                 Item "Placeholder       \\phantom" "math-insert \phantom"
326                 Item "Horizontal placeholder    \\hphantom" "math-insert \hphantom"
327                 Item "Vertical placeholder      \\vphantom" "math-insert \vphantom"
328         End
329
330         Toolbar "sqrt-square" "Roots"
331                 Item "Square root       \\sqrt" "math-insert \sqrt"
332                 Item "Other root        \\root" "math-insert \root"
333         End
334         
335         Toolbar "style" "Styles"
336                 Item "Display style     \\displaystyle" "math-size \displaystyle"
337                 Item "Normal text style \\textstyle" "math-size \textstyle"
338                 Item "Script (small) style      \\scriptstyle" "math-size \scriptstyle"
339                 Item "Scriptscript (smaller) style      \\scriptscriptstyle" "math-size \scriptscriptstyle"
340         End
341
342         Toolbar "frac-square" "Fractions"
343                 Item "Standard  \\frac" "math-insert \frac"
344                 Item "Nice fraction (3/4)       \\nicefrac" "math-insert \nicefrac"
345                 Item "Unit (km) \\unit" "math-insert \unitone"
346                 Item "Unit (864 m)      \\unit" "math-insert \unittwo"
347                 Item "Unit fraction (km/h)      \\unitfrac" "math-insert \unitfrac"
348                 Item "Unit fraction (20 km/h)   \\unitfrac" "math-insert \unitfracthree"
349                 Item "Text fraction     \\tfrac" "math-insert \tfrac"
350                 Item "Display fraction  \\dfrac" "math-insert \dfrac"
351                 Item "Continued fraction        \\cfrac" "math-insert \cfrac"
352                 Item "Continued fraction (left) \\cfrac" "math-insert \cfracleft"
353                 Item "Continued fraction (right)        \\cfrac" "math-insert \cfracright"
354                 Item "Binomial  \\binom" "math-insert \binom"
355                 Item "Text binomial     \\tbinom" "math-insert \tbinom"
356                 Item "Display binomial  \\dbinom" "math-insert \dbinom"
357         End
358
359         Toolbar "font" "Fonts"
360                 Item "Roman     \\mathrm" "math-insert \mathrm"
361                 Item "Bold      \\mathbf" "math-insert \mathbf"
362                 Item "Bold symbol       \\boldsymbol" "math-insert \boldsymbol"
363                 Item "Sans serif        \\mathsf" "math-insert \mathsf"
364                 Item "Italic    \\mathit" "math-insert \mathit"
365                 Item "Typewriter        \\mathtt" "math-insert \mathtt"
366                 Item "Blackboard        \\mathbb" "math-insert \mathbb"
367                 Item "Fraktur   \\mathfrak" "math-insert \mathfrak"
368                 Item "Calligraphic      \\mathcal" "math-insert \mathcal"
369                 Item "Normal text mode  \\textrm" "math-insert \textrm"
370         End
371
372         Toolbar "latex_dots" "Dots"
373                 Item "ldots" "math-insert \ldots"
374                 Item "cdots" "math-insert \cdots"
375                 Item "vdots" "math-insert \vdots"
376                 Item "ddots" "math-insert \ddots"
377 # Do not show it as long as it does not load mathdots automatically
378 #               Item "iddots" "math-insert \iddots"
379         End
380
381         Toolbar "latex_deco" "Frame Decorations"
382                 Item "hat" "math-insert \hat"
383                 Item "tilde" "math-insert \tilde"
384                 Item "bar" "math-insert \bar"
385                 Item "grave" "math-insert \grave"
386                 Item "dot" "math-insert \dot"
387                 Item "check" "math-insert \check"
388                 Item "widehat" "math-insert \widehat"
389                 Item "widetilde" "math-insert \widetilde"
390                 Item "vec" "math-insert \vec"
391                 Item "acute" "math-insert \acute"
392                 Item "ddot" "math-insert \ddot"
393                 Item "dddot" "math-insert \dddot"
394                 Item "ddddot" "math-insert \ddddot"
395                 Item "breve" "math-insert \breve"
396                 Item "overline" "math-insert \overline"
397                 Item "overbrace" "math-insert \overbrace"
398                 Item "overleftarrow" "math-insert \overleftarrow"
399                 Item "overrightarrow" "math-insert \overrightarrow"
400                 Item "overleftrightarrow" "math-insert \overleftrightarrow"
401                 Item "overset" "math-insert \overset"
402                 Item "underline" "math-insert \underline"
403                 Item "underbrace" "math-insert \underbrace"
404                 Item "underleftarrow" "math-insert \underleftarrow"
405                 Item "underrightarrow" "math-insert \underrightarrow"
406                 Item "underleftrightarrow" "math-insert \underleftrightarrow"
407                 Item "underset" "math-insert \underset"
408         End
409
410         Toolbar "latex_arrow" "Arrows"
411                 Item "leftarrow" "math-insert \leftarrow"
412                 Item "rightarrow" "math-insert \rightarrow"
413                 Item "downarrow" "math-insert \downarrow"
414                 Item "uparrow" "math-insert \uparrow"
415                 Item "updownarrow" "math-insert \updownarrow"
416                 Item "leftrightarrow" "math-insert \leftrightarrow"
417                 Item "Leftarrow" "math-insert \Leftarrow"
418                 Item "Rightarrow" "math-insert \Rightarrow"
419                 Item "Downarrow" "math-insert \Downarrow"
420                 Item "Uparrow" "math-insert \Uparrow"
421                 Item "Updownarrow" "math-insert \Updownarrow"
422                 Item "Leftrightarrow" "math-insert \Leftrightarrow"
423                 Item "Longleftrightarrow" "math-insert \Longleftrightarrow"
424                 Item "Longleftarrow" "math-insert \Longleftarrow"
425                 Item "Longrightarrow" "math-insert \Longrightarrow"
426                 Item "longleftrightarrow" "math-insert \longleftrightarrow"
427                 Item "longleftarrow" "math-insert \longleftarrow"
428                 Item "longrightarrow" "math-insert \longrightarrow"
429                 Item "leftharpoondown" "math-insert \leftharpoondown"
430                 Item "rightharpoondown" "math-insert \rightharpoondown"
431                 Item "mapsto" "math-insert \mapsto"
432                 Item "longmapsto" "math-insert \longmapsto"
433                 Item "nwarrow" "math-insert \nwarrow"
434                 Item "nearrow" "math-insert \nearrow"
435                 Item "leftharpoonup" "math-insert \leftharpoonup"
436                 Item "rightharpoonup" "math-insert \rightharpoonup"
437                 Item "hookleftarrow" "math-insert \hookleftarrow"
438                 Item "hookrightarrow" "math-insert \hookrightarrow"
439                 Item "swarrow" "math-insert \swarrow"
440                 Item "searrow" "math-insert \searrow"
441                 Item "rightleftharpoons" "math-insert \rightleftharpoons"
442         End
443
444         Toolbar "latex_bop" "Operators"
445                 Item "pm" "math-insert \pm"
446                 Item "cap" "math-insert \cap"
447                 Item "diamond" "math-insert \diamond"
448                 Item "oplus" "math-insert \oplus"
449                 Item "mp" "math-insert \mp"
450                 Item "cup" "math-insert \cup"
451                 Item "bigtriangleup" "math-insert \bigtriangleup"
452                 Item "ominus" "math-insert \ominus"
453                 Item "times" "math-insert \times"
454                 Item "uplus" "math-insert \uplus"
455                 Item "bigtriangledown" "math-insert \bigtriangledown"
456                 Item "otimes" "math-insert \otimes"
457                 Item "div" "math-insert \div"
458                 Item "sqcap" "math-insert \sqcap"
459                 Item "triangleright" "math-insert \triangleright"
460                 Item "oslash" "math-insert \oslash"
461                 Item "cdot" "math-insert \cdot"
462                 Item "sqcup" "math-insert \sqcup"
463                 Item "triangleleft" "math-insert \triangleleft"
464                 Item "odot" "math-insert \odot"
465                 Item "star" "math-insert \star"
466                 Item "vee" "math-insert \vee"
467                 Item "amalg" "math-insert \amalg"
468                 Item "bigcirc" "math-insert \bigcirc"
469                 Item "setminus" "math-insert \setminus"
470                 Item "wedge" "math-insert \wedge"
471                 Item "dagger" "math-insert \dagger"
472                 Item "circ" "math-insert \circ"
473                 Item "bullet" "math-insert \bullet"
474                 Item "wr" "math-insert \wr"
475                 Item "ddagger" "math-insert \ddagger"
476         End
477
478         Toolbar "latex_brel" "Relations"
479                 Item "leq" "math-insert \leq"
480                 Item "geq" "math-insert \geq"
481                 Item "equiv" "math-insert \equiv"
482                 Item "models" "math-insert \models"
483                 Item "prec" "math-insert \prec"
484                 Item "succ" "math-insert \succ"
485                 Item "sim" "math-insert \sim"
486                 Item "perp" "math-insert \perp"
487                 Item "preceq" "math-insert \preceq"
488                 Item "succeq" "math-insert \succeq"
489                 Item "simeq" "math-insert \simeq"
490                 Item "mid" "math-insert \mid"
491                 Item "ll" "math-insert \ll"
492                 Item "gg" "math-insert \gg"
493                 Item "asymp" "math-insert \asymp"
494                 Item "parallel" "math-insert \parallel"
495                 Item "subset" "math-insert \subset"
496                 Item "supset" "math-insert \supset"
497                 Item "approx" "math-insert \approx"
498                 Item "smile" "math-insert \smile"
499                 Item "subseteq" "math-insert \subseteq"
500                 Item "supseteq" "math-insert \supseteq"
501                 Item "cong" "math-insert \cong"
502                 Item "frown" "math-insert \frown"
503                 Item "sqsubseteq" "math-insert \sqsubseteq"
504                 Item "sqsupseteq" "math-insert \sqsupseteq"
505                 Item "doteq" "math-insert \doteq"
506                 Item "neq" "math-insert \neq"
507                 Item "in" "math-insert \in"
508                 Item "ni" "math-insert \ni"
509                 Item "propto" "math-insert \propto"
510                 Item "notin" "math-insert \notin"
511                 Item "vdash" "math-insert \vdash"
512                 Item "dashv" "math-insert \dashv"
513                 Item "bowtie" "math-insert \bowtie"
514         End
515
516         Toolbar "latex_greek" "Greek"
517                 Item "alpha" "math-insert \alpha"
518                 Item "beta" "math-insert \beta"
519                 Item "gamma" "math-insert \gamma"
520                 Item "delta" "math-insert \delta"
521                 Item "epsilon" "math-insert \epsilon"
522                 Item "varepsilon" "math-insert \varepsilon"
523                 Item "zeta" "math-insert \zeta"
524                 Item "eta" "math-insert \eta"
525                 Item "theta" "math-insert \theta"
526                 Item "vartheta" "math-insert \vartheta"
527                 Item "iota" "math-insert \iota"
528                 Item "kappa" "math-insert \kappa"
529                 Item "lambda" "math-insert \lambda"
530                 Item "mu" "math-insert \mu"
531                 Item "nu" "math-insert \nu"
532                 Item "xi" "math-insert \xi"
533                 Item "pi" "math-insert \pi"
534                 Item "varpi" "math-insert \varpi"
535                 Item "rho" "math-insert \rho"
536                 Item "varrho" "math-insert \varrho"
537                 Item "sigma" "math-insert \sigma"
538                 Item "varsigma" "math-insert \varsigma"
539                 Item "tau" "math-insert \tau"
540                 Item "upsilon" "math-insert \upsilon"
541                 Item "phi" "math-insert \phi"
542                 Item "varphi" "math-insert \varphi"
543                 Item "chi" "math-insert \chi"
544                 Item "psi" "math-insert \psi"
545                 Item "omega" "math-insert \omega"
546                 Item "Gamma" "math-insert \Gamma"
547                 Item "Delta" "math-insert \Delta"
548                 Item "Theta" "math-insert \Theta"
549                 Item "Lambda" "math-insert \Lambda"
550                 Item "Xi" "math-insert \Xi"
551                 Item "Pi" "math-insert \Pi"
552                 Item "Sigma" "math-insert \Sigma"
553                 Item "Upsilon" "math-insert \Upsilon"
554                 Item "Phi" "math-insert \Phi"
555                 Item "Psi" "math-insert \Psi"
556                 Item "Omega" "math-insert \Omega"
557         End
558
559         Toolbar "latex_misc" "Miscellaneous"
560                 Item "nabla" "math-insert \nabla"
561                 Item "partial" "math-insert \partial"
562                 Item "infty" "math-insert \infty"
563                 Item "prime" "math-insert \prime"
564                 Item "ell" "math-insert \ell"
565                 Item "emptyset" "math-insert \emptyset"
566                 Item "exists" "math-insert \exists"
567                 Item "forall" "math-insert \forall"
568                 Item "imath" "math-insert \imath"
569                 Item "jmath" "math-insert \jmath"
570                 Item "Re" "math-insert \Re"
571                 Item "Im" "math-insert \Im"
572                 Item "aleph" "math-insert \aleph"
573                 Item "wp" "math-insert \wp"
574                 Item "hbar" "math-insert \hbar"
575                 Item "angle" "math-insert \angle"
576                 Item "top" "math-insert \top"
577                 Item "bot" "math-insert \bot"
578                 Item "Vert" "math-insert \Vert"
579                 Item "neg" "math-insert \neg"
580                 Item "flat" "math-insert \flat"
581                 Item "natural" "math-insert \natural"
582                 Item "sharp" "math-insert \sharp"
583                 Item "surd" "math-insert \surd"
584                 Item "triangle" "math-insert \triangle"
585                 Item "diamondsuit" "math-insert \diamondsuit"
586                 Item "heartsuit" "math-insert \heartsuit"
587                 Item "clubsuit" "math-insert \clubsuit"
588                 Item "spadesuit" "math-insert \spadesuit"
589                 Item "textrm \\AA" "math-insert \textrm \AA"
590                 Item "textrm \\O" "math-insert \textrm \O"
591                 Item "mathcircumflex" "math-insert \mathcircumflex"
592                 Item "_" "math-insert \_"
593                 Item "mathrm T" "math-insert \mathrm T"
594                 Item "mathbb N" "math-insert \mathbb N"
595                 Item "mathbb Z" "math-insert \mathbb Z"
596                 Item "mathbb Q" "math-insert \mathbb Q"
597                 Item "mathbb R" "math-insert \mathbb R"
598                 Item "mathbb C" "math-insert \mathbb C"
599                 Item "mathbb H" "math-insert \mathbb H"
600                 Item "mathcal F" "math-insert \mathcal F"
601                 Item "mathcal L" "math-insert \mathcal L"
602                 Item "mathcal H" "math-insert \mathcal H"
603                 Item "mathcal O" "math-insert \mathcal O"
604         End
605
606         Toolbar "latex_varsz" "Big Operators"
607                 Item "intop" "math-insert \intop"
608                 Item "int" "math-insert \int"
609                 Item "iint" "math-insert \iint"
610                 Item "iintop" "math-insert \iintop"
611                 Item "iiint" "math-insert \iiint"
612                 Item "iiintop" "math-insert \iiintop"
613                 Item "iiiint" "math-insert \iiiint"
614                 Item "iiiintop" "math-insert \iiiintop"
615                 Item "dotsint" "math-insert \dotsint"
616                 Item "dotsintop" "math-insert \dotsintop"
617                 Item "oint" "math-insert \oint"
618                 Item "ointop" "math-insert \ointop"
619                 Item "oiint" "math-insert \oiint"
620                 Item "oiintop" "math-insert \oiintop"
621                 Item "ointctrclockwiseop" "math-insert \ointctrclockwiseop"
622                 Item "ointctrclockwise" "math-insert \ointctrclockwise"
623                 Item "ointclockwiseop" "math-insert \ointclockwiseop"
624                 Item "ointclockwise" "math-insert \ointclockwise"
625                 Item "sqint" "math-insert \sqint"
626                 Item "sqintop" "math-insert \sqintop"
627                 Item "sqiint" "math-insert \sqiint"
628                 Item "sqiintop" "math-insert \sqiintop"
629                 Item "fint" "math-insert \fint"
630                 Item "fintop" "math-insert \fintop"
631                 Item "landupint" "math-insert \landupint"
632                 Item "landupintop" "math-insert \landupintop"
633                 Item "landdownint" "math-insert \landdownint"
634                 Item "landdownintop" "math-insert \landdownintop"
635                 Item "sum" "math-insert \sum"
636                 Item "prod" "math-insert \prod"
637                 Item "coprod" "math-insert \coprod"
638                 Item "bigsqcup" "math-insert \bigsqcup"
639                 Item "bigotimes" "math-insert \bigotimes"
640                 Item "bigodot" "math-insert \bigodot"
641                 Item "bigoplus" "math-insert \bigoplus"
642                 Item "bigcap" "math-insert \bigcap"
643                 Item "bigcup" "math-insert \bigcup"
644                 Item "biguplus" "math-insert \biguplus"
645                 Item "bigvee" "math-insert \bigvee"
646                 Item "bigwedge" "math-insert \bigwedge"
647         End
648
649         Toolbar "latex_ams_misc" "AMS Miscellaneous"
650                 Item "digamma" "math-insert \digamma"
651                 Item "varkappa" "math-insert \varkappa"
652                 Item "beth" "math-insert \beth"
653                 Item "daleth" "math-insert \daleth"
654                 Item "gimel" "math-insert \gimel"
655                 Item "ulcorner" "math-insert \ulcorner"
656                 Item "urcorner" "math-insert \urcorner"
657                 Item "llcorner" "math-insert \llcorner"
658                 Item "lrcorner" "math-insert \lrcorner"
659                 Item "hbar" "math-insert \hbar"
660                 Item "hslash" "math-insert \hslash"
661                 Item "vartriangle" "math-insert \vartriangle"
662                 Item "triangledown" "math-insert \triangledown"
663                 Item "square" "math-insert \square"
664                 Item "lozenge" "math-insert \lozenge"
665                 Item "circledS" "math-insert \circledS"
666                 Item "angle" "math-insert \angle"
667                 Item "measuredangle" "math-insert \measuredangle"
668                 Item "nexists" "math-insert \nexists"
669                 Item "mho" "math-insert \mho"
670                 Item "Finv" "math-insert \Finv"
671                 Item "Game" "math-insert \Game"
672                 Item "Bbbk" "math-insert \Bbbk"
673                 Item "backprime" "math-insert \backprime"
674                 Item "varnothing" "math-insert \varnothing"
675                 Item "blacktriangle" "math-insert \blacktriangle"
676                 Item "blacktriangledown" "math-insert \blacktriangledown"
677                 Item "blacksquare" "math-insert \blacksquare"
678                 Item "blacklozenge" "math-insert \blacklozenge"
679                 Item "bigstar" "math-insert \bigstar"
680                 Item "sphericalangle" "math-insert \sphericalangle"
681                 Item "complement" "math-insert \complement"
682                 Item "eth" "math-insert \eth"
683                 Item "diagup" "math-insert \diagup"
684                 Item "diagdown" "math-insert \diagdown"
685         End
686
687         Toolbar "latex_ams_arrows" "AMS Arrows"
688                 Item "dashleftarrow" "math-insert \dashleftarrow"
689                 Item "dashrightarrow" "math-insert \dashrightarrow"
690                 Item "leftleftarrows" "math-insert \leftleftarrows"
691                 Item "leftrightarrows" "math-insert \leftrightarrows"
692                 Item "rightrightarrows" "math-insert \rightrightarrows"
693                 Item "rightleftarrows" "math-insert \rightleftarrows"
694                 Item "Lleftarrow" "math-insert \Lleftarrow"
695                 Item "Rrightarrow" "math-insert \Rrightarrow"
696                 Item "twoheadleftarrow" "math-insert \twoheadleftarrow"
697                 Item "twoheadrightarrow" "math-insert \twoheadrightarrow"
698                 Item "leftarrowtail" "math-insert \leftarrowtail"
699                 Item "rightarrowtail" "math-insert \rightarrowtail"
700                 Item "looparrowleft" "math-insert \looparrowleft"
701                 Item "looparrowright" "math-insert \looparrowright"
702                 Item "curvearrowleft" "math-insert \curvearrowleft"
703                 Item "curvearrowright" "math-insert \curvearrowright"
704                 Item "circlearrowleft" "math-insert \circlearrowleft"
705                 Item "circlearrowright" "math-insert \circlearrowright"
706                 Item "Lsh" "math-insert \Lsh"
707                 Item "Rsh" "math-insert \Rsh"
708                 Item "upuparrows" "math-insert \upuparrows"
709                 Item "downdownarrows" "math-insert \downdownarrows"
710                 Item "upharpoonleft" "math-insert \upharpoonleft"
711                 Item "upharpoonright" "math-insert \upharpoonright"
712                 Item "downharpoonleft" "math-insert \downharpoonleft"
713                 Item "downharpoonright" "math-insert \downharpoonright"
714                 Item "leftrightharpoons" "math-insert \leftrightharpoons"
715                 Item "rightleftharpoons" "math-insert \rightleftharpoons"
716                 Item "rightsquigarrow" "math-insert \rightsquigarrow"
717                 Item "leftrightsquigarrow" "math-insert \leftrightsquigarrow"
718                 Item "nleftarrow" "math-insert \nleftarrow"
719                 Item "nrightarrow" "math-insert \nrightarrow"
720                 Item "nleftrightarrow" "math-insert \nleftrightarrow"
721                 Item "nLeftarrow" "math-insert \nLeftarrow"
722                 Item "nRightarrow" "math-insert \nRightarrow"
723                 Item "nLeftrightarrow" "math-insert \nLeftrightarrow"
724                 Item "multimap" "math-insert \multimap"
725         End
726
727         Toolbar "latex_ams_rel" "AMS Relations"
728                 Item "leqq" "math-insert \leqq"
729                 Item "geqq" "math-insert \geqq"
730                 Item "leqslant" "math-insert \leqslant"
731                 Item "geqslant" "math-insert \geqslant"
732                 Item "eqslantless" "math-insert \eqslantless"
733                 Item "eqslantgtr" "math-insert \eqslantgtr"
734                 Item "lesssim" "math-insert \lesssim"
735                 Item "gtrsim" "math-insert \gtrsim"
736                 Item "lessapprox" "math-insert \lessapprox"
737                 Item "gtrapprox" "math-insert \gtrapprox"
738                 Item "approxeq" "math-insert \approxeq"
739                 Item "triangleq" "math-insert \triangleq"
740                 Item "lessdot" "math-insert \lessdot"
741                 Item "gtrdot" "math-insert \gtrdot"
742                 Item "lll" "math-insert \lll"
743                 Item "ggg" "math-insert \ggg"
744                 Item "lessgtr" "math-insert \lessgtr"
745                 Item "gtrless" "math-insert \gtrless"
746                 Item "lesseqgtr" "math-insert \lesseqgtr"
747                 Item "gtreqless" "math-insert \gtreqless"
748                 Item "lesseqqgtr" "math-insert \lesseqqgtr"
749                 Item "gtreqqless" "math-insert \gtreqqless"
750                 Item "eqcirc" "math-insert \eqcirc"
751                 Item "circeq" "math-insert \circeq"
752                 Item "thicksim" "math-insert \thicksim"
753                 Item "thickapprox" "math-insert \thickapprox"
754                 Item "backsim" "math-insert \backsim"
755                 Item "backsimeq" "math-insert \backsimeq"
756                 Item "subseteqq" "math-insert \subseteqq"
757                 Item "supseteqq" "math-insert \supseteqq"
758                 Item "Subset" "math-insert \Subset"
759                 Item "Supset" "math-insert \Supset"
760                 Item "sqsubset" "math-insert \sqsubset"
761                 Item "sqsupset" "math-insert \sqsupset"
762                 Item "preccurlyeq" "math-insert \preccurlyeq"
763                 Item "succcurlyeq" "math-insert \succcurlyeq"
764                 Item "curlyeqprec" "math-insert \curlyeqprec"
765                 Item "curlyeqsucc" "math-insert \curlyeqsucc"
766                 Item "precsim" "math-insert \precsim"
767                 Item "succsim" "math-insert \succsim"
768                 Item "precapprox" "math-insert \precapprox"
769                 Item "succapprox" "math-insert \succapprox"
770                 Item "vartriangleleft" "math-insert \vartriangleleft"
771                 Item "vartriangleright" "math-insert \vartriangleright"
772                 Item "trianglelefteq" "math-insert \trianglelefteq"
773                 Item "trianglerighteq" "math-insert \trianglerighteq"
774                 Item "bumpeq" "math-insert \bumpeq"
775                 Item "Bumpeq" "math-insert \Bumpeq"
776                 Item "doteqdot" "math-insert \doteqdot"
777                 Item "risingdotseq" "math-insert \risingdotseq"
778                 Item "fallingdotseq" "math-insert \fallingdotseq"
779                 Item "vDash" "math-insert \vDash"
780                 Item "Vvdash" "math-insert \Vvdash"
781                 Item "Vdash" "math-insert \Vdash"
782                 Item "shortmid" "math-insert \shortmid"
783                 Item "shortparallel" "math-insert \shortparallel"
784                 Item "smallsmile" "math-insert \smallsmile"
785                 Item "smallfrown" "math-insert \smallfrown"
786                 Item "blacktriangleleft" "math-insert \blacktriangleleft"
787                 Item "blacktriangleright" "math-insert \blacktriangleright"
788                 Item "because" "math-insert \because"
789                 Item "therefore" "math-insert \therefore"
790                 Item "backepsilon" "math-insert \backepsilon"
791                 Item "varpropto" "math-insert \varpropto"
792                 Item "between" "math-insert \between"
793                 Item "pitchfork" "math-insert \pitchfork"
794         End
795
796         Toolbar "latex_ams_nrel" "AMS Negative Relations"
797                 Item "nless" "math-insert \nless"
798                 Item "ngtr" "math-insert \ngtr"
799                 Item "nleq" "math-insert \nleq"
800                 Item "ngeq" "math-insert \ngeq"
801                 Item "nleqslant" "math-insert \nleqslant"
802                 Item "ngeqslant" "math-insert \ngeqslant"
803                 Item "nleqq" "math-insert \nleqq"
804                 Item "ngeqq" "math-insert \ngeqq"
805                 Item "lneq" "math-insert \lneq"
806                 Item "gneq" "math-insert \gneq"
807                 Item "lneqq" "math-insert \lneqq"
808                 Item "gneqq" "math-insert \gneqq"
809                 Item "lvertneqq" "math-insert \lvertneqq"
810                 Item "gvertneqq" "math-insert \gvertneqq"
811                 Item "lnsim" "math-insert \lnsim"
812                 Item "gnsim" "math-insert \gnsim"
813                 Item "lnapprox" "math-insert \lnapprox"
814                 Item "gnapprox" "math-insert \gnapprox"
815                 Item "nprec" "math-insert \nprec"
816                 Item "nsucc" "math-insert \nsucc"
817                 Item "npreceq" "math-insert \npreceq"
818                 Item "nsucceq" "math-insert \nsucceq"
819                 Item "precnsim" "math-insert \precnsim"
820                 Item "succnsim" "math-insert \succnsim"
821                 Item "precnapprox" "math-insert \precnapprox"
822                 Item "succnapprox" "math-insert \succnapprox"
823                 Item "subsetneq" "math-insert \subsetneq"
824                 Item "supsetneq" "math-insert \supsetneq"
825                 Item "subsetneqq" "math-insert \subsetneqq"
826                 Item "supsetneqq" "math-insert \supsetneqq"
827                 Item "nsubseteq" "math-insert \nsubseteq"
828                 Item "nsupseteq" "math-insert \nsupseteq"
829                 Item "nsupseteqq" "math-insert \nsupseteqq"
830                 Item "nvdash" "math-insert \nvdash"
831                 Item "nvDash" "math-insert \nvDash"
832                 Item "nVDash" "math-insert \nVDash"
833                 Item "varsubsetneq" "math-insert \varsubsetneq"
834                 Item "varsupsetneq" "math-insert \varsupsetneq"
835                 Item "varsubsetneqq" "math-insert \varsubsetneqq"
836                 Item "varsupsetneqq" "math-insert \varsupsetneqq"
837                 Item "ntriangleleft" "math-insert \ntriangleleft"
838                 Item "ntriangleright" "math-insert \ntriangleright"
839                 Item "ntrianglelefteq" "math-insert \ntrianglelefteq"
840                 Item "ntrianglerighteq" "math-insert \ntrianglerighteq"
841                 Item "ncong" "math-insert \ncong"
842                 Item "nsim" "math-insert \nsim"
843                 Item "nmid" "math-insert \nmid"
844                 Item "nshortmid" "math-insert \nshortmid"
845                 Item "nparallel" "math-insert \nparallel"
846                 Item "nshortparallel" "math-insert \nshortparallel"
847         End
848
849         Toolbar "latex_ams_ops" "AMS Operators"
850                 Item "dotplus" "math-insert \dotplus"
851                 Item "smallsetminus" "math-insert \smallsetminus"
852                 Item "Cap" "math-insert \Cap"
853                 Item "Cup" "math-insert \Cup"
854                 Item "barwedge" "math-insert \barwedge"
855                 Item "veebar" "math-insert \veebar"
856                 Item "doublebarwedge" "math-insert \doublebarwedge"
857                 Item "boxminus" "math-insert \boxminus"
858                 Item "boxtimes" "math-insert \boxtimes"
859                 Item "boxdot" "math-insert \boxdot"
860                 Item "boxplus" "math-insert \boxplus"
861                 Item "divideontimes" "math-insert \divideontimes"
862                 Item "ltimes" "math-insert \ltimes"
863                 Item "rtimes" "math-insert \rtimes"
864                 Item "leftthreetimes" "math-insert \leftthreetimes"
865                 Item "rightthreetimes" "math-insert \rightthreetimes"
866                 Item "curlywedge" "math-insert \curlywedge"
867                 Item "curlyvee" "math-insert \curlyvee"
868                 Item "circleddash" "math-insert \circleddash"
869                 Item "circledast" "math-insert \circledast"
870                 Item "circledcirc" "math-insert \circledcirc"
871                 Item "centerdot" "math-insert \centerdot"
872                 Item "intercal" "math-insert \intercal"
873         End
874
875 End