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