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