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