]> git.lyx.org Git - lyx.git/blob - lib/ui/stdtoolbars.inc
iucr.layout: use Item_Environment for a style as proposed by Jürgen
[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 2
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                 Separator
75                 Item "Check spelling" "dialog-show spellchecker"
76                 Item "Spellcheck continuously" "spelling-continuously"
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 LyX 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                 Item "Move row up" "inset-modify tabular move-row-up"
148                 Item "Move column left" "inset-modify tabular move-column-left"
149                 Item "Move row down" "inset-modify tabular move-row-down"
150                 Item "Move column right" "inset-modify tabular move-column-right"
151                 Separator
152                 Item "Set top line" "inset-modify tabular toggle-line-top"
153                 Item "Set bottom line" "inset-modify tabular toggle-line-bottom"
154                 Item "Set left line" "inset-modify tabular toggle-line-left"
155                 Item "Set right line" "inset-modify tabular toggle-line-right"
156                 Item "Set border lines" "inset-modify tabular set-border-lines"
157                 Item "Set all lines" "inset-modify tabular set-all-lines"
158                 Item "Unset all lines" "inset-modify tabular unset-all-lines"
159                 Separator
160                 Item "Align left" "command-alternatives inset-modify tabular m-align-left;inset-modify tabular align-left"
161                 Item "Align center" "command-alternatives inset-modify tabular m-align-center;inset-modify tabular align-center"
162                 Item "Align right" "command-alternatives inset-modify tabular m-align-right;inset-modify tabular align-right"
163                 Item "Align on decimal" "inset-modify tabular align-decimal"
164                 Separator
165                 Item "Align top" "command-alternatives inset-modify tabular m-valign-top;inset-modify tabular valign-top"
166                 Item "Align middle" "command-alternatives inset-modify tabular m-valign-middle;inset-modify tabular valign-middle"
167                 Item "Align bottom" "command-alternatives inset-modify tabular m-valign-bottom;inset-modify tabular valign-bottom"
168                 Separator
169                 Item "Rotate cell by 90 degrees or unset rotation" "inset-modify tabular toggle-rotate-cell"
170                 Item "Rotate table by 90 degrees or unset rotation" "inset-modify tabular toggle-rotate-tabular"
171                 Item "Set multi-column" "inset-modify tabular multicolumn"
172                 Item "Set multi-row" "inset-modify tabular multirow"
173         End
174
175         Toolbar "math" "Math"
176                 Item "Set display mode" "math-display"
177                 Separator
178                 Item "Subscript" "math-subscript"
179                 Item "Superscript" "math-superscript"
180                 Item "Insert square root" "math-insert \sqrt"
181                 Item "Insert root" "math-insert \root"
182                 Item "Insert standard fraction" "math-insert \frac"
183                 Item "Insert sum" "math-insert \sum"
184                 Item "Insert integral" "math-insert \int"
185                 Item "Insert product" "math-insert \prod"
186                 Separator
187                 Item "Insert ( )" "math-delim ( )"
188                 Item "Insert [ ]" "math-delim [ ]"
189                 Item "Insert { }" "math-delim { }"
190                 Item "Insert delimiters" "dialog-show mathdelimiter"
191                 Separator
192                 Item "Insert matrix" "dialog-show mathmatrix"
193                 Item "Insert cases environment" "math-insert \cases"
194                 Item "Add row" "inset-modify tabular append-row"
195                 Item "Add column" "inset-modify tabular append-column"
196                 Item "Delete row" "inset-modify tabular delete-row"
197                 Item "Delete column" "inset-modify tabular delete-column"
198                 Separator
199                 Item "Toggle math panels" "toolbar-toggle math_panels"
200         End
201
202         Toolbar "mathmacrotemplate" "Math Macros"
203                 Item "Remove last argument" "math-macro-remove-param"
204                 Item "Append argument" "math-macro-add-param"
205                 Separator
206                 Item "Make first non-optional into optional argument" "math-macro-make-optional"
207                 Item "Make last optional into non-optional argument"
208                 "math-macro-make-nonoptional"
209                 Item "Remove optional argument" "math-macro-remove-optional-param"
210                 Item "Insert optional argument" "math-macro-add-optional-param"
211                 Separator
212                 Item "Remove last argument spitting out to the right" "math-macro-remove-greedy-param"
213                 Item "Append argument eating from the right" "math-macro-append-greedy-param"
214                 Item "Append optional argument eating from the right" "math-macro-add-greedy-optional-param"
215         End
216
217         Toolbar "ipa" "Phonetic Symbols"
218                 IconPalette "ipa_pulmonic" "IPA Pulmonic Consonants"
219                 IconPalette "ipa_nonpulmonic" "IPA Non-Pulmonic Consonants"
220                 IconPalette "ipa_vowels" "IPA Vowels"
221                 IconPalette "ipa_others" "IPA Other Symbols"
222                 IconPalette "ipa_suprasegmentals" "IPA Suprasegmentals"
223                 IconPalette "ipa_diacritics" "IPA Diacritics"
224                 IconPalette "ipa_accents" "IPA Tones and Word Accents"
225         End
226
227         Toolbar "minibuffer" "Command Buffer"
228                 Minibuffer
229         End
230
231         Toolbar "review" "Review[[Toolbar]]"
232                 Item "Track changes" "changes-track"
233                 Item "Show changes in output" "changes-output"
234                 Separator
235                 Item "Next change" "change-next"
236                 Item "Accept change inside selection" "change-accept"
237                 Item "Reject change inside selection" "change-reject"
238                 Separator
239                 Item "Merge changes" "changes-merge"
240                 Item "Accept all changes" "all-changes-accept"
241                 Item "Reject all changes" "all-changes-reject"
242                 Separator
243                 Item "Insert note" "note-insert"
244                 Item "Next note" "note-next"
245         End
246
247         Toolbar "view-others" "View Other Formats"
248                 ViewFormats
249         End
250
251         Toolbar "update-others" "Update Other Formats"
252                 UpdateFormats
253         End
254
255 # The following three toolbars are disabled because of missing icons.
256 #       Toolbar "import/export" "Import/Export"
257 #               Item "Import" "buffer-import"
258 #               Item "Export" "buffer-export"
259 #               StickyPopupMenu "import-others" "Import other formats"
260 #               StickyPopupMenu "export-others" "Export other formats"
261 #       End
262
263 #       Toolbar "import-others" "Import Other Formats"
264 #               ImportFormats
265 #       End
266
267 #       Toolbar "export-others" "Export Other Formats"
268 #               ExportFormats
269 #       End
270
271         Toolbar "vcs" "Version Control"
272                 Item "Register" "vc-register"
273                 Item "Check-out for edit" "vc-check-out"
274                 Item "Check-in changes" "vc-check-in"
275                 Item "View revision log" "dialog-show vclog"
276                 Item "Revert changes" "vc-revert"
277                 Item "Compare with older revision" "vc-compare"
278                 Item "Compare with last revision" "vc-compare 0"
279                 Item "Insert Version Info" "info-insert buffer vcs-revision"
280                 Separator
281                 Item "Use SVN file locking property" "vc-locking-toggle"
282                 Separator
283                 Item "Update local directory from repository" "vc-repo-update"
284         End
285
286         Toolbar "math_panels" "Math Panels"
287                 PopupMenu "space" "Math spacings"
288                 PopupMenu "style" "Styles"
289                 PopupMenu "frac-square" "Fractions"
290                 PopupMenu "font" "Fonts"
291                 PopupMenu "functions" "Functions"
292                 IconPalette "latex_deco" "Frame decorations"
293                 IconPalette "latex_varsz" "Big operators"
294                 IconPalette "latex_misc" "Miscellaneous"
295                 IconPalette "latex_greek" "Greek"
296                 IconPalette "latex_arrow" "Arrows"
297                 IconPalette "latex_ams_arrows" "Arrows (extended)"
298                 IconPalette "latex_bop" "Operators"
299                 IconPalette "latex_ams_ops" "Operators (extended)"
300                 IconPalette "latex_brel" "Relations"
301                 IconPalette "latex_ams_rel" "Relations (extended)"
302                 IconPalette "latex_ams_nrel" "Negative relations (extended)"
303                 IconPalette "latex_dots" "Dots"
304                 IconPalette "latex_delim" "Delimiters (fixed size)"
305                 IconPalette "latex_ams_misc" "Miscellaneous (extended)"
306         End
307
308         Toolbar "functions" "Functions"
309                 Item "arccos" "math-insert \arccos"
310                 Item "arcsin" "math-insert \arcsin"
311                 Item "arctan" "math-insert \arctan"
312                 Item "arg" "math-insert \arg"
313                 Item "bmod" "math-insert \bmod"
314                 Item "cos" "math-insert \cos"
315                 Item "cosh" "math-insert \cosh"
316                 Item "cot" "math-insert \cot"
317                 Item "coth" "math-insert \coth"
318                 Item "csc" "math-insert \csc"
319                 Item "deg" "math-insert \deg"
320                 Item "det" "math-insert \det"
321                 Item "dim" "math-insert \dim"
322                 Item "exp" "math-insert \exp"
323                 Item "gcd" "math-insert \gcd"
324                 Item "hom" "math-insert \hom"
325                 Item "inf" "math-insert \inf"
326                 Item "ker" "math-insert \ker"
327                 Item "lg" "math-insert \lg"
328                 Item "lim" "math-insert \lim"
329                 Item "liminf" "math-insert \liminf"
330                 Item "limsup" "math-insert \limsup"
331                 Item "ln" "math-insert \ln"
332                 Item "log" "math-insert \log"
333                 Item "max" "math-insert \max"
334                 Item "min" "math-insert \min"
335                 Item "sec" "math-insert \sec"
336                 Item "sin" "math-insert \sin"
337                 Item "sinh" "math-insert \sinh"
338                 Item "sup" "math-insert \sup"
339                 Item "tan" "math-insert \tan"
340                 Item "tanh" "math-insert \tanh"
341                 Item "Pr" "math-insert \Pr"
342         End
343
344         Toolbar "space" "Spacings"
345                 Item "Thin space        \\," "math-insert \,"
346                 Item "Medium space      \\:" "math-insert \:"
347                 Item "Thick space       \\;" "math-insert \;"
348                 Item "Quadratin space   \\quad" "math-insert \quad"
349                 Item "Double quadratin space    \\qquad" "math-insert \qquad"
350                 Item "Negative space    \\!" "math-insert \!"
351                 Item "Phantom   \\phantom" "math-insert \phantom"
352                 Item "Horizontal phantom        \\hphantom" "math-insert \hphantom"
353                 Item "Vertical phantom  \\vphantom" "math-insert \vphantom"
354                 Item "Smash \\smash" "math-insert \smash"
355                 Item "Top smash \\smasht" "math-insert \smasht"
356                 Item "Bottom smash \\smashb" "math-insert \smashb"
357                 Item "Left overlap \\mathllap" "math-insert \mathllap"
358                 Item "Center overlap \\mathclap" "math-insert \mathclap"
359                 Item "Right overlap \\mathrlap" "math-insert \mathrlap"
360         End
361
362         Toolbar "sqrt-square" "Roots"
363                 Item "Square root       \\sqrt" "math-insert \sqrt"
364                 Item "Other root        \\root" "math-insert \root"
365         End
366
367         Toolbar "style" "Styles"
368                 Item "Display style     \\displaystyle" "math-size \displaystyle"
369                 Item "Normal text style \\textstyle" "math-size \textstyle"
370                 Item "Script (small) style      \\scriptstyle" "math-size \scriptstyle"
371                 Item "Scriptscript (smaller) style      \\scriptscriptstyle" "math-size \scriptscriptstyle"
372         End
373
374         Toolbar "frac-square" "Fractions"
375                 Item "Standard  \\frac" "math-insert \frac"
376                 Item "Nice fraction (3/4)       \\nicefrac" "math-insert \nicefrac"
377                 Item "Unit (km) \\unitone" "math-insert \unitone"
378                 Item "Unit (864 m)      \\unittwo" "math-insert \unittwo"
379                 Item "Unit fraction (km/h)      \\unitfrac" "math-insert \unitfrac"
380                 Item "Unit fraction (20 km/h)   \\unitfracthree" "math-insert \unitfracthree"
381                 Item "Text fraction     \\tfrac" "math-insert \tfrac"
382                 Item "Display fraction  \\dfrac" "math-insert \dfrac"
383                 Item "Continued fraction        \\cfrac" "math-insert \cfrac"
384                 Item "Continued fraction (left) \\cfracleft" "math-insert \cfracleft"
385                 Item "Continued fraction (right)        \\cfracright" "math-insert \cfracright"
386                 Item "Binomial  \\binom" "math-insert \binom"
387                 Item "Text binomial     \\tbinom" "math-insert \tbinom"
388                 Item "Display binomial  \\dbinom" "math-insert \dbinom"
389         End
390
391         Toolbar "font" "Fonts"
392                 Item "Roman     \\mathrm" "math-insert \mathrm"
393                 Item "Bold      \\mathbf" "math-insert \mathbf"
394                 Item "Bold symbol       \\boldsymbol" "math-insert \boldsymbol"
395                 Item "Sans serif        \\mathsf" "math-insert \mathsf"
396                 Item "Italic    \\mathit" "math-insert \mathit"
397                 Item "Typewriter        \\mathtt" "math-insert \mathtt"
398                 Item "Blackboard        \\mathbb" "math-insert \mathbb"
399                 Item "Fraktur   \\mathfrak" "math-insert \mathfrak"
400                 Item "Calligraphic      \\mathcal" "math-insert \mathcal"
401                 Item "Formal Script     \\mathscr" "math-insert \mathscr"
402                 Item "Normal text mode  \\textrm" "math-insert \textrm"
403         End
404
405         Toolbar "latex_dots" "Dots"
406                 Item "ldots" "math-insert \ldots"
407                 Item "cdots" "math-insert \cdots"
408                 Item "vdots" "math-insert \vdots"
409                 Item "ddots" "math-insert \ddots"
410                 Item "iddots" "math-insert \iddots"
411 #               Item "adots" "math-insert \adots" # identical to idots, idots has better dependencies
412 #               Item "dotsb" "math-insert \dotsb"
413 #               Item "dotsc" "math-insert \dotsc"
414 #               Item "dotsi" "math-insert \dotsi"
415 #               Item "dotsm" "math-insert \dotsm"
416 #               Item "dotso" "math-insert \dotso"
417 #               Item "dots" "math-insert \dots"
418         End
419
420         Toolbar "latex_deco" "Frame Decorations"
421                 Item "hat" "math-insert \hat"
422                 Item "tilde" "math-insert \tilde"
423                 Item "bar" "math-insert \bar"
424                 Item "grave" "math-insert \grave"
425                 Item "dot" "math-insert \dot"
426                 Item "check" "math-insert \check"
427                 Item "widehat" "math-insert \widehat"
428                 Item "widetilde" "math-insert \widetilde"
429                 Item "utilde" "math-insert \utilde"
430                 Item "vec" "math-insert \vec"
431                 Item "acute" "math-insert \acute"
432                 Item "ddot" "math-insert \ddot"
433                 Item "dddot" "math-insert \dddot"
434                 Item "ddddot" "math-insert \ddddot"
435                 Item "breve" "math-insert \breve"
436                 Item "mathring" "math-insert \mathring"
437                 Item "overline" "math-insert \overline"
438                 Item "overbrace" "math-insert \overbrace"
439                 Item "overleftarrow" "math-insert \overleftarrow"
440                 Item "overrightarrow" "math-insert \overrightarrow"
441                 Item "overleftrightarrow" "math-insert \overleftrightarrow"
442                 Item "underline" "math-insert \underline"
443 #               Item "underbar" "math-insert \underbar" # switches to text mode, strikes through underlengths
444                 Item "underbrace" "math-insert \underbrace"
445 #               Item "undertilde" "math-insert \undertilde" # problematic dependencies (see lib/symbols)
446                 Item "underleftarrow" "math-insert \underleftarrow"
447                 Item "underrightarrow" "math-insert \underrightarrow"
448                 Item "underleftrightarrow" "math-insert \underleftrightarrow"
449                 Item "cancel" "math-insert \cancel"
450                 Item "bcancel" "math-insert \bcancel"
451                 Item "xcancel" "math-insert \xcancel"
452                 Item "cancelto" "math-insert \cancelto"
453                 Item "Insert left/right side scripts" "math-insert \sideset"
454                 Item "Insert right side scripts" "math-insert \sidesetr"
455                 Item "Insert left side scripts" "math-insert \sidesetl"
456                 Item "Insert side scripts" "math-insert \sidesetn"
457                 Item "overset" "math-insert \overset"
458                 Item "underset" "math-insert \underset"
459                 Item "stackrel" "math-insert \stackrel"
460                 Item "stackrelthree" "math-insert \stackrelthree"
461         End
462
463         Toolbar "latex_arrow" "Arrows"
464                 Item "leftarrow" "math-insert \leftarrow"
465 #               Item "gets" "math-insert \gets" # same as leftarrow
466                 Item "rightarrow" "math-insert \rightarrow"
467 #               Item "to" "math-insert \to" # same as rightarrow
468                 Item "downarrow" "math-insert \downarrow"
469                 Item "uparrow" "math-insert \uparrow"
470                 Item "updownarrow" "math-insert \updownarrow"
471                 Item "leftrightarrow" "math-insert \leftrightarrow"
472                 Item "Leftarrow" "math-insert \Leftarrow"
473                 Item "Rightarrow" "math-insert \Rightarrow"
474                 Item "Downarrow" "math-insert \Downarrow"
475                 Item "Uparrow" "math-insert \Uparrow"
476                 Item "Updownarrow" "math-insert \Updownarrow"
477                 Item "Leftrightarrow" "math-insert \Leftrightarrow"
478                 Item "Longleftrightarrow" "math-insert \Longleftrightarrow"
479                 Item "Longleftarrow" "math-insert \Longleftarrow"
480                 Item "Longrightarrow" "math-insert \Longrightarrow"
481                 Item "longleftrightarrow" "math-insert \longleftrightarrow"
482                 Item "longleftarrow" "math-insert \longleftarrow"
483                 Item "longrightarrow" "math-insert \longrightarrow"
484                 Item "leftharpoondown" "math-insert \leftharpoondown"
485                 Item "rightharpoondown" "math-insert \rightharpoondown"
486                 Item "mapsto" "math-insert \mapsto"
487                 Item "longmapsto" "math-insert \longmapsto"
488                 Item "nwarrow" "math-insert \nwarrow"
489                 Item "nearrow" "math-insert \nearrow"
490                 Item "leftharpoonup" "math-insert \leftharpoonup"
491                 Item "rightharpoonup" "math-insert \rightharpoonup"
492                 Item "hookleftarrow" "math-insert \hookleftarrow"
493                 Item "hookrightarrow" "math-insert \hookrightarrow"
494                 Item "swarrow" "math-insert \swarrow"
495                 Item "searrow" "math-insert \searrow"
496                 Item "rightleftharpoons" "math-insert \rightleftharpoons"
497 #               Item "arrowvert" "math-insert \arrowvert" # not really an arrow
498 #               Item "Arrowvert" "math-insert \Arrowvert" # not really an arrow
499         End
500
501         Toolbar "latex_bop" "Operators"
502                 Item "pm" "math-insert \pm"
503                 Item "cap" "math-insert \cap"
504                 Item "diamond" "math-insert \diamond"
505                 Item "oplus" "math-insert \oplus"
506                 Item "mp" "math-insert \mp"
507                 Item "cup" "math-insert \cup"
508                 Item "bigtriangleup" "math-insert \bigtriangleup"
509                 Item "ominus" "math-insert \ominus"
510                 Item "times" "math-insert \times"
511                 Item "uplus" "math-insert \uplus"
512                 Item "bigtriangledown" "math-insert \bigtriangledown"
513                 Item "otimes" "math-insert \otimes"
514                 Item "div" "math-insert \div"
515                 Item "sqcap" "math-insert \sqcap"
516                 Item "triangleright" "math-insert \triangleright"
517                 Item "oslash" "math-insert \oslash"
518                 Item "cdot" "math-insert \cdot"
519                 Item "sqcup" "math-insert \sqcup"
520                 Item "triangleleft" "math-insert \triangleleft"
521                 Item "odot" "math-insert \odot"
522                 Item "star" "math-insert \star"
523                 Item "ast" "math-insert \ast"
524                 Item "vee" "math-insert \vee"
525                 Item "amalg" "math-insert \amalg"
526                 Item "bigcirc" "math-insert \bigcirc"
527                 Item "setminus" "math-insert \setminus"
528                 Item "wedge" "math-insert \wedge"
529                 Item "dagger" "math-insert \dagger"
530                 Item "circ" "math-insert \circ"
531                 Item "bullet" "math-insert \bullet"
532                 Item "wr" "math-insert \wr"
533                 Item "ddagger" "math-insert \ddagger"
534                 Item "smallint" "math-insert \smallint"
535         End
536
537         Toolbar "latex_brel" "Relations"
538                 Item "leq" "math-insert \leq"
539 #               Item "le" "math-insert \le" # same as leq
540                 Item "geq" "math-insert \geq"
541 #               Item "ge" "math-insert \ge" # same a geq
542                 Item "equiv" "math-insert \equiv"
543                 Item "models" "math-insert \models"
544                 Item "prec" "math-insert \prec"
545                 Item "succ" "math-insert \succ"
546                 Item "sim" "math-insert \sim"
547                 Item "perp" "math-insert \perp"
548                 Item "preceq" "math-insert \preceq"
549                 Item "succeq" "math-insert \succeq"
550                 Item "simeq" "math-insert \simeq"
551                 Item "mid" "math-insert \mid"
552                 Item "ll" "math-insert \ll"
553                 Item "gg" "math-insert \gg"
554                 Item "asymp" "math-insert \asymp"
555                 Item "parallel" "math-insert \parallel"
556                 Item "subset" "math-insert \subset"
557                 Item "supset" "math-insert \supset"
558                 Item "approx" "math-insert \approx"
559                 Item "smile" "math-insert \smile"
560                 Item "subseteq" "math-insert \subseteq"
561                 Item "supseteq" "math-insert \supseteq"
562                 Item "cong" "math-insert \cong"
563                 Item "frown" "math-insert \frown"
564                 Item "sqsubseteq" "math-insert \sqsubseteq"
565                 Item "sqsupseteq" "math-insert \sqsupseteq"
566                 Item "doteq" "math-insert \doteq"
567                 Item "neq" "math-insert \neq"
568 #               Item "ne" "math-insert \ne" # same as neq
569                 Item "in[[math relation]]" "math-insert \in"
570                 Item "ni" "math-insert \ni"
571 #               Item "owns" "math-insert \owns" # same as ni
572                 Item "propto" "math-insert \propto"
573                 Item "notin" "math-insert \notin"
574                 Item "vdash" "math-insert \vdash"
575                 Item "dashv" "math-insert \dashv"
576                 Item "bowtie" "math-insert \bowtie"
577                 Item "iff" "math-insert \iff"
578                 Item "not" "math-insert \not"
579                 Item "land" "math-insert \land"
580                 Item "lor" "math-insert \lor"
581                 Item "lnot" "math-insert \lnot"
582         End
583
584         Toolbar "latex_greek" "Greek"
585                 Item "alpha" "math-insert \alpha"
586                 Item "beta" "math-insert \beta"
587                 Item "gamma" "math-insert \gamma"
588                 Item "delta" "math-insert \delta"
589                 Item "epsilon" "math-insert \epsilon"
590                 Item "varepsilon" "math-insert \varepsilon"
591                 Item "zeta" "math-insert \zeta"
592                 Item "eta" "math-insert \eta"
593                 Item "theta" "math-insert \theta"
594                 Item "vartheta" "math-insert \vartheta"
595                 Item "iota" "math-insert \iota"
596                 Item "kappa" "math-insert \kappa"
597                 Item "lambda" "math-insert \lambda"
598                 Item "mu" "math-insert \mu"
599                 Item "nu" "math-insert \nu"
600                 Item "xi" "math-insert \xi"
601                 Item "pi" "math-insert \pi"
602                 Item "varpi" "math-insert \varpi"
603                 Item "rho" "math-insert \rho"
604                 Item "varrho" "math-insert \varrho"
605                 Item "sigma" "math-insert \sigma"
606                 Item "varsigma" "math-insert \varsigma"
607                 Item "tau" "math-insert \tau"
608                 Item "upsilon" "math-insert \upsilon"
609                 Item "phi" "math-insert \phi"
610                 Item "varphi" "math-insert \varphi"
611                 Item "chi" "math-insert \chi"
612                 Item "psi" "math-insert \psi"
613                 Item "omega" "math-insert \omega"
614                 Item "Gamma" "math-insert \Gamma"
615                 Item "Delta" "math-insert \Delta"
616                 Item "Theta" "math-insert \Theta"
617                 Item "Lambda" "math-insert \Lambda"
618                 Item "Xi" "math-insert \Xi"
619                 Item "Pi" "math-insert \Pi"
620                 Item "Sigma" "math-insert \Sigma"
621                 Item "Upsilon" "math-insert \Upsilon"
622                 Item "Phi" "math-insert \Phi"
623                 Item "Psi" "math-insert \Psi"
624                 Item "Omega" "math-insert \Omega"
625                 Item "varGamma" "math-insert \varGamma"
626                 Item "varDelta" "math-insert \varDelta"
627                 Item "varTheta" "math-insert \varTheta"
628                 Item "varLambda" "math-insert \varLambda"
629                 Item "varXi" "math-insert \varXi"
630                 Item "varPi" "math-insert \varPi"
631                 Item "varSigma" "math-insert \varSigma"
632                 Item "varUpsilon" "math-insert \varUpsilon"
633                 Item "varPhi" "math-insert \varPhi"
634                 Item "varPsi" "math-insert \varPsi"
635                 Item "varOmega" "math-insert \varOmega"
636         End
637
638         Toolbar "latex_misc" "Miscellaneous"
639                 Item "nabla" "math-insert \nabla"
640                 Item "partial" "math-insert \partial"
641                 Item "infty" "math-insert \infty"
642                 Item "prime" "math-insert \prime"
643                 Item "ell" "math-insert \ell"
644                 Item "emptyset" "math-insert \emptyset"
645                 Item "exists" "math-insert \exists"
646                 Item "forall" "math-insert \forall"
647                 Item "imath" "math-insert \imath"
648                 Item "jmath" "math-insert \jmath"
649                 Item "Re" "math-insert \Re"
650                 Item "Im" "math-insert \Im"
651                 Item "aleph" "math-insert \aleph"
652                 Item "wp" "math-insert \wp"
653                 Item "hbar" "math-insert \hbar"
654                 Item "angle" "math-insert \angle"
655                 Item "top" "math-insert \top"
656                 Item "bot" "math-insert \bot"
657                 Item "Vert" "math-insert \Vert"
658                 Item "neg" "math-insert \neg"
659                 Item "flat" "math-insert \flat"
660                 Item "natural" "math-insert \natural"
661                 Item "sharp" "math-insert \sharp"
662                 Item "surd" "math-insert \surd"
663                 Item "lhook" "math-insert \lhook"
664                 Item "rhook" "math-insert \rhook"
665                 Item "triangle" "math-insert \triangle"
666                 Item "diamondsuit" "math-insert \diamondsuit"
667                 Item "heartsuit" "math-insert \heartsuit"
668                 Item "clubsuit" "math-insert \clubsuit"
669                 Item "spadesuit" "math-insert \spadesuit"
670                 Item "textrm \\AA" "math-insert \textrm \AA"
671                 Item "textrm \\O" "math-insert \textrm \O"
672                 Item "mathcircumflex" "math-insert \mathcircumflex"
673                 Item "_" "math-insert \_"
674                 Item "textdegree" "math-insert \textdegree"
675                 Item "mathdollar" "math-insert \mathdollar"
676                 Item "mathparagraph" "math-insert \mathparagraph"
677                 Item "mathsection" "math-insert \mathsection"
678                 Item "mathrm T" "math-insert \mathrm T"
679                 Item "mathbb N" "math-insert \mathbb N"
680                 Item "mathbb Z" "math-insert \mathbb Z"
681                 Item "mathbb Q" "math-insert \mathbb Q"
682                 Item "mathbb R" "math-insert \mathbb R"
683                 Item "mathbb C" "math-insert \mathbb C"
684                 Item "mathbb H" "math-insert \mathbb H"
685                 Item "mathcal F" "math-insert \mathcal F"
686                 Item "mathcal L" "math-insert \mathcal L"
687                 Item "mathcal H" "math-insert \mathcal H"
688                 Item "mathcal O" "math-insert \mathcal O"
689         End
690
691         Toolbar "latex_varsz" "Big Operators"
692                 Item "intop" "math-insert \intop"
693                 Item "int" "math-insert \int"
694                 Item "iint" "math-insert \iint"
695                 Item "iintop" "math-insert \iintop"
696                 Item "iiint" "math-insert \iiint"
697                 Item "iiintop" "math-insert \iiintop"
698                 Item "iiiint" "math-insert \iiiint"
699                 Item "iiiintop" "math-insert \iiiintop"
700                 Item "dotsint" "math-insert \dotsint"
701                 Item "dotsintop" "math-insert \dotsintop"
702                 Item "idotsint" "math-insert \idotsint"
703                 Item "oint" "math-insert \oint"
704                 Item "ointop" "math-insert \ointop"
705                 Item "oiint" "math-insert \oiint"
706                 Item "oiintop" "math-insert \oiintop"
707                 Item "ointctrclockwiseop" "math-insert \ointctrclockwiseop"
708                 Item "ointctrclockwise" "math-insert \ointctrclockwise"
709                 Item "ointclockwiseop" "math-insert \ointclockwiseop"
710                 Item "ointclockwise" "math-insert \ointclockwise"
711                 Item "sqint" "math-insert \sqint"
712                 Item "sqintop" "math-insert \sqintop"
713                 Item "sqiint" "math-insert \sqiint"
714                 Item "sqiintop" "math-insert \sqiintop"
715                 Item "fint" "math-insert \fint"
716                 Item "fintop" "math-insert \fintop"
717                 Item "landupint" "math-insert \landupint"
718                 Item "landupintop" "math-insert \landupintop"
719                 Item "landdownint" "math-insert \landdownint"
720                 Item "landdownintop" "math-insert \landdownintop"
721                 Item "varint" "math-insert \varint"
722                 Item "varoint" "math-insert \varoint"
723                 Item "varoiint" "math-insert \varoiint"
724                 Item "varoiintop" "math-insert \varoiintop"
725                 Item "varointclockwise" "math-insert \varointclockwise"
726                 Item "varointclockwiseop" "math-insert \varointclockwiseop"
727                 Item "varointctrclockwise" "math-insert \varointctrclockwise"
728                 Item "varointctrclockwiseop" "math-insert \varointctrclockwiseop"
729                 Item "sum" "math-insert \sum"
730                 Item "prod" "math-insert \prod"
731                 Item "coprod" "math-insert \coprod"
732                 Item "bigsqcup" "math-insert \bigsqcup"
733                 Item "bigotimes" "math-insert \bigotimes"
734                 Item "bigodot" "math-insert \bigodot"
735                 Item "bigoplus" "math-insert \bigoplus"
736                 Item "bigcap" "math-insert \bigcap"
737                 Item "bigcup" "math-insert \bigcup"
738                 Item "biguplus" "math-insert \biguplus"
739                 Item "bigvee" "math-insert \bigvee"
740                 Item "bigwedge" "math-insert \bigwedge"
741         End
742
743         Toolbar "latex_ams_misc" "Miscellaneous (extended)"
744                 Item "digamma" "math-insert \digamma"
745                 Item "varkappa" "math-insert \varkappa"
746                 Item "beth" "math-insert \beth"
747                 Item "daleth" "math-insert \daleth"
748                 Item "gimel" "math-insert \gimel"
749                 Item "ulcorner" "math-insert \ulcorner"
750                 Item "urcorner" "math-insert \urcorner"
751                 Item "llcorner" "math-insert \llcorner"
752                 Item "lrcorner" "math-insert \lrcorner"
753                 Item "hbar" "math-insert \hbar"
754                 Item "hslash" "math-insert \hslash"
755                 Item "vartriangle" "math-insert \vartriangle"
756                 Item "triangledown" "math-insert \triangledown"
757                 Item "square" "math-insert \square"
758 #               Item "Box" "math-insert \Box" # same as square
759                 Item "Square" "math-insert \Square"
760                 Item "CheckedBox" "math-insert \CheckedBox"
761                 Item "XBox" "math-insert \XBox"
762                 Item "lozenge" "math-insert \lozenge"
763                 Item "wasylozenge" "math-insert \wasylozenge"
764                 Item "circledR" "math-insert \circledR"
765                 Item "circledS" "math-insert \circledS"
766                 Item "measuredangle" "math-insert \measuredangle"
767                 Item "varangle" "math-insert \varangle"
768                 Item "nexists" "math-insert \nexists"
769                 Item "mho" "math-insert \mho"
770                 Item "Finv" "math-insert \Finv"
771                 Item "Game" "math-insert \Game"
772                 Item "Bbbk" "math-insert \Bbbk"
773                 Item "backprime" "math-insert \backprime"
774                 Item "varnothing" "math-insert \varnothing"
775 #               Item "Diamond" "math-insert \Diamond" # same as lozenge
776                 Item "blacktriangle" "math-insert \blacktriangle"
777                 Item "blacktriangledown" "math-insert \blacktriangledown"
778                 Item "blacksquare" "math-insert \blacksquare"
779                 Item "blacklozenge" "math-insert \blacklozenge"
780                 Item "bigstar" "math-insert \bigstar"
781                 Item "sphericalangle" "math-insert \sphericalangle"
782                 Item "complement" "math-insert \complement"
783                 Item "eth" "math-insert \eth"
784                 Item "diagup" "math-insert \diagup"
785                 Item "diagdown" "math-insert \diagdown"
786                 Item "lightning" "math-insert \lightning"
787                 Item "varcopyright" "math-insert \varcopyright"
788                 Item "Bowtie" "math-insert \Bowtie"
789                 Item "diameter" "math-insert \diameter"
790                 Item "invdiameter" "math-insert \invdiameter"
791                 Item "bell" "math-insert \bell"
792                 Item "hexagon" "math-insert \hexagon"
793                 Item "varhexagon" "math-insert \varhexagon"
794                 Item "pentagon" "math-insert \pentagon"
795                 Item "octagon" "math-insert \octagon"
796 #               Item "pointer" "math-insert \pointer" # works in text mode only (produces \Psi in math mode)
797 #               Item "thorn" "math-insert \thorn" # works in text mode only (produces i in math mode)
798 #               Item "Thorn" "math-insert \Thorn" # works in text mode only (produces j in math mode)
799 #               Item "agemO" "math-insert \agemO" # works in text mode only (produces 0 in math mode)
800 #               Item "phone" "math-insert \phone" # works in text mode only (produces \Upsilon in math mode)
801 #               Item "recorder" "math-insert \recorder" # works in text mode only (produces \Sigma in math mode)
802 #               Item "clock" "math-insert \clock" # works in text mode only (produces \o in math mode)
803                 Item "smiley" "math-insert \smiley"
804                 Item "blacksmiley" "math-insert \blacksmiley"
805                 Item "frownie" "math-insert \frownie"
806                 Item "sun" "math-insert \sun"
807                 Item "leadsto" "math-insert \leadsto"
808                 Item "Circle" "math-insert \Circle"
809                 Item "Leftcircle" "math-insert \Leftcircle"
810                 Item "Rightcircle" "math-insert \Rightcircle"
811                 Item "CIRCLE" "math-insert \CIRCLE"
812                 Item "LEFTCIRCLE" "math-insert \LEFTCIRCLE"
813                 Item "RIGHTCIRCLE" "math-insert \RIGHTCIRCLE"
814                 Item "LEFTcircle" "math-insert \LEFTcircle"
815                 Item "RIGHTcircle" "math-insert \RIGHTcircle"
816                 Item "leftturn" "math-insert \leftturn"
817                 Item "rightturn" "math-insert \rightturn"
818                 Item "AC" "math-insert \AC"
819                 Item "HF" "math-insert \HF"
820                 Item "VHF" "math-insert \VHF"
821                 Item "photon" "math-insert \photon"
822                 Item "gluon" "math-insert \gluon"
823                 Item "permil" "math-insert \permil"
824 #               Item "currency" "math-insert \currency" # works in text mode only (produces \oe in math mode)
825                 Item "cent" "math-insert \cent"
826                 Item "yen" "math-insert \yen"
827 #               Item "openo" "math-insert \openo" # works in text mode only (produces l in math mode)
828 #               Item "inve" "math-insert \inve" # works in text mode only (produces U in math mode)
829                 Item "hexstar" "math-insert \hexstar"
830                 Item "varhexstar" "math-insert \varhexstar"
831                 Item "davidsstar" "math-insert \davidsstar"
832                 Item "maltese" "math-insert \maltese"
833                 Item "kreuz" "math-insert \kreuz"
834                 Item "ataribox" "math-insert \ataribox"
835                 Item "XBox" "math-insert \XBox"
836                 Item "checked" "math-insert \checked"
837                 Item "checkmark" "math-insert \checkmark"
838                 Item "eighthnote" "math-insert \eighthnote"
839                 Item "quarternote" "math-insert \quarternote"
840                 Item "halfnote" "math-insert \halfnote"
841                 Item "fullnote" "math-insert \fullnote"
842                 Item "twonotes" "math-insert \twonotes"
843                 Item "female" "math-insert \female"
844                 Item "male" "math-insert \male"
845                 Item "vernal" "math-insert \vernal"
846                 Item "ascnode" "math-insert \ascnode"
847                 Item "descnode" "math-insert \descnode"
848                 Item "fullmoon" "math-insert \fullmoon"
849                 Item "newmoon" "math-insert \newmoon"
850                 Item "leftmoon" "math-insert \leftmoon"
851                 Item "rightmoon" "math-insert \rightmoon"
852                 Item "astrosun" "math-insert \astrosun"
853                 Item "mercury" "math-insert \mercury"
854                 Item "venus" "math-insert \venus"
855                 Item "earth" "math-insert \earth"
856                 Item "mars" "math-insert \mars"
857                 Item "jupiter" "math-insert \jupiter"
858                 Item "saturn" "math-insert \saturn"
859                 Item "uranus" "math-insert \uranus"
860                 Item "neptune" "math-insert \neptune"
861                 Item "pluto" "math-insert \pluto"
862                 Item "aries" "math-insert \aries"
863                 Item "taurus" "math-insert \taurus"
864                 Item "gemini" "math-insert \gemini"
865                 Item "cancer" "math-insert \cancer"
866                 Item "leo" "math-insert \leo"
867                 Item "virgo" "math-insert \virgo"
868                 Item "libra" "math-insert \libra"
869                 Item "scorpio" "math-insert \scorpio"
870                 Item "sagittarius" "math-insert \sagittarius"
871                 Item "capricornus" "math-insert \capricornus"
872                 Item "aquarius" "math-insert \aquarius"
873                 Item "pisces" "math-insert \pisces"
874 #               Item "conjunction" "math-insert \conjunction" # works in text mode only (produces V in math mode)
875 #               Item "opposition" "math-insert \opposition" # works in text mode only (produces W in math mode)
876                 Item "APLbox" "math-insert \APLbox"
877                 Item "APLcomment" "math-insert \APLcomment"
878                 Item "APLdown" "math-insert \APLdown"
879                 Item "APLdownarrowbox" "math-insert \APLdownarrowbox"
880                 Item "APLinput" "math-insert \APLinput"
881                 Item "APLinv" "math-insert \APLinv"
882                 Item "APLleftarrowbox" "math-insert \APLleftarrowbox"
883                 Item "APLlog" "math-insert \APLlog"
884                 Item "APLrightarrowbox" "math-insert \APLrightarrowbox"
885                 Item "APLstar" "math-insert \APLstar"
886                 Item "APLup" "math-insert \APLup"
887                 Item "APLuparrowbox" "math-insert \APLuparrowbox"
888         End
889
890         Toolbar "latex_ams_arrows" "Arrows (extended)"
891 #               Item "dasharrow" "math-insert \dasharrow" # same as dashrightarrow
892                 Item "dashleftarrow" "math-insert \dashleftarrow"
893                 Item "dashrightarrow" "math-insert \dashrightarrow"
894                 Item "leftleftarrows" "math-insert \leftleftarrows"
895                 Item "leftrightarrows" "math-insert \leftrightarrows"
896                 Item "rightrightarrows" "math-insert \rightrightarrows"
897                 Item "rightleftarrows" "math-insert \rightleftarrows"
898                 Item "Lleftarrow" "math-insert \Lleftarrow"
899                 Item "Rrightarrow" "math-insert \Rrightarrow"
900                 Item "twoheadleftarrow" "math-insert \twoheadleftarrow"
901                 Item "twoheadrightarrow" "math-insert \twoheadrightarrow"
902                 Item "leftarrowtail" "math-insert \leftarrowtail"
903                 Item "rightarrowtail" "math-insert \rightarrowtail"
904                 Item "looparrowleft" "math-insert \looparrowleft"
905                 Item "looparrowright" "math-insert \looparrowright"
906                 Item "curvearrowleft" "math-insert \curvearrowleft"
907                 Item "curvearrowright" "math-insert \curvearrowright"
908                 Item "circlearrowleft" "math-insert \circlearrowleft"
909                 Item "circlearrowright" "math-insert \circlearrowright"
910                 Item "Lsh" "math-insert \Lsh"
911                 Item "Rsh" "math-insert \Rsh"
912                 Item "upuparrows" "math-insert \upuparrows"
913                 Item "downdownarrows" "math-insert \downdownarrows"
914                 Item "upharpoonleft" "math-insert \upharpoonleft"
915                 Item "upharpoonright" "math-insert \upharpoonright"
916 #               Item "restriction" "math-insert \restriction" # same as upharpoonright
917                 Item "downharpoonleft" "math-insert \downharpoonleft"
918                 Item "downharpoonright" "math-insert \downharpoonright"
919                 Item "leftrightharpoons" "math-insert \leftrightharpoons"
920                 Item "rightleftharpoons" "math-insert \rightleftharpoons"
921                 Item "rightsquigarrow" "math-insert \rightsquigarrow"
922                 Item "leftrightsquigarrow" "math-insert \leftrightsquigarrow"
923                 Item "nleftarrow" "math-insert \nleftarrow"
924                 Item "nrightarrow" "math-insert \nrightarrow"
925                 Item "nleftrightarrow" "math-insert \nleftrightarrow"
926                 Item "nLeftarrow" "math-insert \nLeftarrow"
927                 Item "nRightarrow" "math-insert \nRightarrow"
928                 Item "nLeftrightarrow" "math-insert \nLeftrightarrow"
929                 Item "multimap" "math-insert \multimap"
930                 Item "shortleftarrow" "math-insert \shortleftarrow"
931                 Item "shortrightarrow" "math-insert \shortrightarrow"
932                 Item "shortuparrow" "math-insert \shortuparrow"
933                 Item "shortdownarrow" "math-insert \shortdownarrow"
934                 Item "leftrightarroweq" "math-insert \leftrightarroweq"
935                 Item "curlyveedownarrow" "math-insert \curlyveedownarrow"
936                 Item "curlyveeuparrow" "math-insert \curlyveeuparrow"
937                 Item "nnwarrow" "math-insert \nnwarrow"
938                 Item "nnearrow" "math-insert \nnearrow"
939                 Item "sswarrow" "math-insert \sswarrow"
940                 Item "ssearrow" "math-insert \ssearrow"
941                 Item "curlywedgeuparrow" "math-insert \curlywedgeuparrow"
942                 Item "curlywedgedownarrow" "math-insert \curlywedgedownarrow"
943                 Item "leftrightarrowtriangle" "math-insert \leftrightarrowtriangle"
944                 Item "leftarrowtriangle" "math-insert \leftarrowtriangle"
945                 Item "rightarrowtriangle" "math-insert \rightarrowtriangle"
946                 Item "Mapsto" "math-insert \Mapsto"
947                 Item "mapsfrom" "math-insert \mapsfrom"
948                 Item "Mapsfrom" "math-insert \Mapsfrom"
949                 Item "Longmapsto" "math-insert \Longmapsto"
950                 Item "longmapsfrom" "math-insert \longmapsfrom"
951                 Item "Longmapsfrom" "math-insert \Longmapsfrom"
952                 Item "xleftarrow" "math-insert \xleftarrow"
953                 Item "xrightarrow" "math-insert \xrightarrow"
954 #               Item "mapstochar" "math-insert \mapstochar"
955 #               Item "Mapstochar" "math-insert \Mapstochar"
956 #               Item "mapsfromchar" "math-insert \mapsfromchar"
957 #               Item "Mapsfromchar" "math-insert \Mapsfromchar"
958 #               Item "arrownot" "math-insert \arrownot"
959 #               Item "Arrownot" "math-insert \Arrownot"
960 #               Item "longarrownot" "math-insert \longarrownot"
961 #               Item "Longarrownot" "math-insert \Longarrownot"
962 #               Item "LEFTarrow" "math-insert \LEFTarrow" # works in text mode only (produces \imath in math mode)
963 #               Item "RIGHTarrow" "math-insert \RIGHTarrow" # works in text mode only (produces \jmath in math mode)
964 #               Item "DOWNarrow" "math-insert \DOWNarrow" # works in text mode only (produces L in math mode)
965 #               Item "UParrow" "math-insert \UParrow" # works in text mode only (produces K in math mode)
966         End
967
968         Toolbar "latex_ams_rel" "Relations (extended)"
969                 Item "leqq" "math-insert \leqq"
970                 Item "geqq" "math-insert \geqq"
971                 Item "leqslant" "math-insert \leqslant"
972                 Item "geqslant" "math-insert \geqslant"
973                 Item "eqslantless" "math-insert \eqslantless"
974                 Item "eqslantgtr" "math-insert \eqslantgtr"
975                 Item "eqsim" "math-insert \eqsim"
976                 Item "lesssim" "math-insert \lesssim"
977                 Item "gtrsim" "math-insert \gtrsim"
978                 Item "apprge" "math-insert \apprge"
979                 Item "apprle" "math-insert \apprle"
980                 Item "lessapprox" "math-insert \lessapprox"
981                 Item "gtrapprox" "math-insert \gtrapprox"
982                 Item "approxeq" "math-insert \approxeq"
983                 Item "triangleq" "math-insert \triangleq"
984                 Item "lessdot" "math-insert \lessdot"
985                 Item "gtrdot" "math-insert \gtrdot"
986                 Item "lll" "math-insert \lll"
987                 Item "ggg" "math-insert \ggg"
988 #               Item "llless" "math-insert \llless" # same as lll
989 #               Item "gggtr" "math-insert \gggtr" # same as ggg
990                 Item "lessgtr" "math-insert \lessgtr"
991                 Item "gtrless" "math-insert \gtrless"
992                 Item "lesseqgtr" "math-insert \lesseqgtr"
993                 Item "gtreqless" "math-insert \gtreqless"
994                 Item "lesseqqgtr" "math-insert \lesseqqgtr"
995                 Item "gtreqqless" "math-insert \gtreqqless"
996                 Item "eqcirc" "math-insert \eqcirc"
997                 Item "circeq" "math-insert \circeq"
998                 Item "thicksim" "math-insert \thicksim"
999                 Item "thickapprox" "math-insert \thickapprox"
1000                 Item "backsim" "math-insert \backsim"
1001                 Item "backsimeq" "math-insert \backsimeq"
1002                 Item "subseteqq" "math-insert \subseteqq"
1003                 Item "supseteqq" "math-insert \supseteqq"
1004                 Item "Subset" "math-insert \Subset"
1005                 Item "Supset" "math-insert \Supset"
1006                 Item "sqsubset" "math-insert \sqsubset"
1007                 Item "sqsupset" "math-insert \sqsupset"
1008                 Item "preccurlyeq" "math-insert \preccurlyeq"
1009                 Item "succcurlyeq" "math-insert \succcurlyeq"
1010                 Item "curlyeqprec" "math-insert \curlyeqprec"
1011                 Item "curlyeqsucc" "math-insert \curlyeqsucc"
1012                 Item "precsim" "math-insert \precsim"
1013                 Item "succsim" "math-insert \succsim"
1014                 Item "precapprox" "math-insert \precapprox"
1015                 Item "succapprox" "math-insert \succapprox"
1016                 Item "vartriangleleft" "math-insert \vartriangleleft"
1017 #               Item "lhd" "math-insert \lhd" # same as vartriangleleft
1018                 Item "vartriangleright" "math-insert \vartriangleright"
1019 #               Item "rhd" "math-insert \rhd" # same as vartriangleright
1020                 Item "trianglelefteq" "math-insert \trianglelefteq"
1021 #               Item "unlhd" "math-insert \unlhd" # same as trianglelefteq
1022                 Item "trianglerighteq" "math-insert \trianglerighteq"
1023 #               Item "unrhd" "math-insert \unrhd" # same as trianglerighteq
1024                 Item "bumpeq" "math-insert \bumpeq"
1025                 Item "Bumpeq" "math-insert \Bumpeq"
1026                 Item "doteqdot" "math-insert \doteqdot"
1027 #               Item "Doteq" "math-insert \Doteq" # same as doteqdot
1028                 Item "risingdotseq" "math-insert \risingdotseq"
1029                 Item "fallingdotseq" "math-insert \fallingdotseq"
1030                 Item "vDash" "math-insert \vDash"
1031                 Item "Vvdash" "math-insert \Vvdash"
1032                 Item "Vdash" "math-insert \Vdash"
1033                 Item "shortmid" "math-insert \shortmid"
1034                 Item "shortparallel" "math-insert \shortparallel"
1035                 Item "smallsmile" "math-insert \smallsmile"
1036                 Item "smallfrown" "math-insert \smallfrown"
1037                 Item "blacktriangleleft" "math-insert \blacktriangleleft"
1038 #               Item "LHD" "math-insert \LHD" # same as blacktriangleleft
1039                 Item "blacktriangleright" "math-insert \blacktriangleright"
1040 #               Item "RHD" "math-insert \RHD" # same as blacktriangleright
1041                 Item "because" "math-insert \because"
1042                 Item "therefore" "math-insert \therefore"
1043                 Item "wasytherefore" "math-insert \wasytherefore"
1044                 Item "backepsilon" "math-insert \backepsilon"
1045                 Item "varpropto" "math-insert \varpropto"
1046                 Item "between" "math-insert \between"
1047                 Item "pitchfork" "math-insert \pitchfork"
1048                 Item "trianglelefteqslant" "math-insert \trianglelefteqslant"
1049                 Item "trianglerighteqslant" "math-insert \trianglerighteqslant"
1050                 Item "inplus" "math-insert \inplus"
1051                 Item "niplus" "math-insert \niplus"
1052                 Item "subsetplus" "math-insert \subsetplus"
1053                 Item "supsetplus" "math-insert \supsetplus"
1054                 Item "subsetpluseq" "math-insert \subsetpluseq"
1055                 Item "supsetpluseq" "math-insert \supsetpluseq"
1056                 Item "minuso" "math-insert \minuso"
1057                 Item "baro" "math-insert \baro"
1058                 Item "sslash" "math-insert \sslash"
1059                 Item "bbslash" "math-insert \bbslash"
1060                 Item "moo" "math-insert \moo"
1061                 Item "merge" "math-insert \merge"
1062                 Item "invneg" "math-insert \invneg"
1063                 Item "lbag" "math-insert \lbag"
1064                 Item "rbag" "math-insert \rbag"
1065                 Item "interleave" "math-insert \interleave"
1066                 Item "leftslice" "math-insert \leftslice"
1067                 Item "rightslice" "math-insert \rightslice"
1068                 Item "oblong" "math-insert \oblong"
1069                 Item "talloblong" "math-insert \talloblong"
1070                 Item "fatsemi" "math-insert \fatsemi"
1071                 Item "fatslash" "math-insert \fatslash"
1072                 Item "fatbslash" "math-insert \fatbslash"
1073                 Item "ldotp" "math-insert \ldotp"
1074                 Item "cdotp" "math-insert \cdotp"
1075                 Item "colon" "math-insert \colon"
1076                 Item "dblcolon" "math-insert \dblcolon"
1077                 Item "vcentcolon" "math-insert \vcentcolon"
1078                 Item "colonapprox" "math-insert \colonapprox"
1079                 Item "Colonapprox" "math-insert \Colonapprox"
1080                 Item "coloneq" "math-insert \coloneq"
1081                 Item "Coloneq" "math-insert \Coloneq"
1082                 Item "coloneqq" "math-insert \coloneqq"
1083                 Item "Coloneqq" "math-insert \Coloneqq"
1084                 Item "colonsim" "math-insert \colonsim"
1085                 Item "Colonsim" "math-insert \Colonsim"
1086                 Item "eqcolon" "math-insert \eqcolon"
1087                 Item "Eqcolon" "math-insert \Eqcolon"
1088                 Item "eqqcolon" "math-insert \eqqcolon"
1089                 Item "Eqqcolon" "math-insert \Eqqcolon"
1090                 Item "wasypropto" "math-insert \wasypropto"
1091                 Item "logof" "math-insert \logof"
1092                 Item "Join" "math-insert \Join"
1093         End
1094
1095         Toolbar "latex_ams_nrel" "Negative Relations (extended)"
1096                 Item "nless" "math-insert \nless"
1097                 Item "ngtr" "math-insert \ngtr"
1098                 Item "nleq" "math-insert \nleq"
1099                 Item "ngeq" "math-insert \ngeq"
1100                 Item "nleqslant" "math-insert \nleqslant"
1101                 Item "ngeqslant" "math-insert \ngeqslant"
1102                 Item "nleqq" "math-insert \nleqq"
1103                 Item "ngeqq" "math-insert \ngeqq"
1104                 Item "lneq" "math-insert \lneq"
1105                 Item "gneq" "math-insert \gneq"
1106                 Item "lneqq" "math-insert \lneqq"
1107                 Item "gneqq" "math-insert \gneqq"
1108                 Item "lvertneqq" "math-insert \lvertneqq"
1109                 Item "gvertneqq" "math-insert \gvertneqq"
1110                 Item "lnsim" "math-insert \lnsim"
1111                 Item "gnsim" "math-insert \gnsim"
1112                 Item "lnapprox" "math-insert \lnapprox"
1113                 Item "gnapprox" "math-insert \gnapprox"
1114                 Item "nprec" "math-insert \nprec"
1115                 Item "nsucc" "math-insert \nsucc"
1116                 Item "npreceq" "math-insert \npreceq"
1117                 Item "nsucceq" "math-insert \nsucceq"
1118                 Item "precneqq" "math-insert \precneqq"
1119                 Item "succneqq" "math-insert \succneqq"
1120                 Item "precnsim" "math-insert \precnsim"
1121                 Item "succnsim" "math-insert \succnsim"
1122                 Item "precnapprox" "math-insert \precnapprox"
1123                 Item "succnapprox" "math-insert \succnapprox"
1124                 Item "subsetneq" "math-insert \subsetneq"
1125                 Item "supsetneq" "math-insert \supsetneq"
1126                 Item "subsetneqq" "math-insert \subsetneqq"
1127                 Item "supsetneqq" "math-insert \supsetneqq"
1128                 Item "nsubseteq" "math-insert \nsubseteq"
1129                 Item "nsubseteqq" "math-insert \nsubseteqq"
1130                 Item "nsupseteq" "math-insert \nsupseteq"
1131                 Item "nsupseteqq" "math-insert \nsupseteqq"
1132                 Item "nvdash" "math-insert \nvdash"
1133                 Item "nvDash" "math-insert \nvDash"
1134                 Item "nVDash" "math-insert \nVDash"
1135                 Item "nVdash" "math-insert \nVdash"
1136                 Item "varsubsetneq" "math-insert \varsubsetneq"
1137                 Item "varsupsetneq" "math-insert \varsupsetneq"
1138                 Item "varsubsetneqq" "math-insert \varsubsetneqq"
1139                 Item "varsupsetneqq" "math-insert \varsupsetneqq"
1140                 Item "ntriangleleft" "math-insert \ntriangleleft"
1141                 Item "ntriangleright" "math-insert \ntriangleright"
1142                 Item "ntrianglelefteq" "math-insert \ntrianglelefteq"
1143                 Item "ntrianglerighteq" "math-insert \ntrianglerighteq"
1144                 Item "ncong" "math-insert \ncong"
1145                 Item "nsim" "math-insert \nsim"
1146                 Item "nmid" "math-insert \nmid"
1147                 Item "nshortmid" "math-insert \nshortmid"
1148                 Item "nparallel" "math-insert \nparallel"
1149                 Item "nshortparallel" "math-insert \nshortparallel"
1150                 Item "ntrianglelefteqslant" "math-insert \ntrianglelefteqslant"
1151                 Item "ntrianglerighteqslant" "math-insert \ntrianglerighteqslant"
1152         End
1153
1154         Toolbar "latex_ams_ops" "Operators (extended)"
1155                 Item "dotplus" "math-insert \dotplus"
1156                 Item "smallsetminus" "math-insert \smallsetminus"
1157                 Item "Cap" "math-insert \Cap"
1158 #               Item "doublecap" "math-insert \doublecap" # same as Cap
1159                 Item "Cup" "math-insert \Cup"
1160 #               Item "doublecup" "math-insert \doublecup" # same as Cup
1161                 Item "barwedge" "math-insert \barwedge"
1162                 Item "veebar" "math-insert \veebar"
1163                 Item "doublebarwedge" "math-insert \doublebarwedge"
1164                 Item "boxminus" "math-insert \boxminus"
1165                 Item "boxtimes" "math-insert \boxtimes"
1166                 Item "boxdot" "math-insert \boxdot"
1167                 Item "boxplus" "math-insert \boxplus"
1168                 Item "boxast" "math-insert \boxast"
1169                 Item "boxbar" "math-insert \boxbar"
1170                 Item "boxslash" "math-insert \boxslash"
1171                 Item "boxbslash" "math-insert \boxbslash"
1172                 Item "boxcircle" "math-insert \boxcircle"
1173                 Item "boxbox" "math-insert \boxbox"
1174                 Item "boxempty" "math-insert \boxempty"
1175                 Item "divideontimes" "math-insert \divideontimes"
1176                 Item "ltimes" "math-insert \ltimes"
1177                 Item "rtimes" "math-insert \rtimes"
1178                 Item "leftthreetimes" "math-insert \leftthreetimes"
1179                 Item "rightthreetimes" "math-insert \rightthreetimes"
1180                 Item "curlywedge" "math-insert \curlywedge"
1181                 Item "curlyvee" "math-insert \curlyvee"
1182                 Item "circleddash" "math-insert \circleddash"
1183                 Item "circledast" "math-insert \circledast"
1184                 Item "circledcirc" "math-insert \circledcirc"
1185                 Item "centerdot" "math-insert \centerdot"
1186                 Item "intercal" "math-insert \intercal"
1187                 Item "implies" "math-insert \implies"
1188                 Item "impliedby" "math-insert \impliedby"
1189                 Item "bigcurlyvee" "math-insert \bigcurlyvee"
1190                 Item "bigcurlywedge" "math-insert \bigcurlywedge"
1191                 Item "bigsqcap" "math-insert \bigsqcap"
1192                 Item "bigbox" "math-insert \bigbox"
1193                 Item "bigparallel" "math-insert \bigparallel"
1194                 Item "biginterleave" "math-insert \biginterleave"
1195                 Item "bignplus" "math-insert \bignplus"
1196                 Item "nplus" "math-insert \nplus"
1197                 Item "Yup" "math-insert \Yup"
1198                 Item "Ydown" "math-insert \Ydown"
1199                 Item "Yleft" "math-insert \Yleft"
1200                 Item "Yright" "math-insert \Yright"
1201                 Item "obar" "math-insert \obar"
1202                 Item "obslash" "math-insert \obslash"
1203                 Item "ocircle" "math-insert \ocircle"
1204                 Item "olessthan" "math-insert \olessthan"
1205                 Item "ogreaterthan" "math-insert \ogreaterthan"
1206                 Item "ovee" "math-insert \ovee"
1207                 Item "owedge" "math-insert \owedge"
1208                 Item "varcurlyvee" "math-insert \varcurlyvee"
1209                 Item "varcurlywedge" "math-insert \varcurlywedge"
1210                 Item "vartimes" "math-insert \vartimes"
1211                 Item "varotimes" "math-insert \varotimes"
1212                 Item "varoast" "math-insert \varoast"
1213                 Item "varobar" "math-insert \varobar"
1214                 Item "varodot" "math-insert \varodot"
1215                 Item "varoslash" "math-insert \varoslash"
1216                 Item "varobslash" "math-insert \varobslash"
1217                 Item "varocircle" "math-insert \varocircle"
1218                 Item "varoplus" "math-insert \varoplus"
1219                 Item "varominus" "math-insert \varominus"
1220                 Item "varovee" "math-insert \varovee"
1221                 Item "varowedge" "math-insert \varowedge"
1222                 Item "varolessthan" "math-insert \varolessthan"
1223                 Item "varogreaterthan" "math-insert \varogreaterthan"
1224                 Item "varbigcirc" "math-insert \varbigcirc"
1225         End
1226
1227         Toolbar "latex_delim" "Delimiters (fixed size)"
1228 #               Item "vert" "math-insert \vert" # same as |
1229                 Item "brokenvert" "math-insert \brokenvert"
1230 #               Item "lbrace" "math-insert \lbrace" # same as {
1231 #               Item "rbrace" "math-insert \rbrace" # same as }
1232                 Item "lfloor" "math-insert \lfloor"
1233                 Item "rfloor" "math-insert \rfloor"
1234                 Item "lceil" "math-insert \lceil"
1235                 Item "rceil" "math-insert \rceil"
1236 #               Item "backslash" "math-insert \backslash" # same as \
1237 #               Item "slash" "math-insert \slash" # same as /
1238 #               Item "langle" "math-insert \langle" # same as <
1239 #               Item "rangle" "math-insert \rangle" # same as >
1240                 Item "llbracket" "math-insert \llbracket"
1241                 Item "rrbracket" "math-insert \rrbracket"
1242                 Item "llfloor" "math-insert \llfloor"
1243                 Item "rrfloor" "math-insert \rrfloor"
1244                 Item "llceil" "math-insert \llceil"
1245                 Item "rrceil" "math-insert \rrceil"
1246                 Item "Lbag" "math-insert \Lbag"
1247                 Item "Rbag" "math-insert \Rbag"
1248                 Item "llparenthesis" "math-insert \llparenthesis"
1249                 Item "rrparenthesis" "math-insert \rrparenthesis"
1250                 Item "binampersand" "math-insert \binampersand"
1251                 Item "bindnasrepma" "math-insert \bindnasrepma"
1252         End
1253
1254         Toolbar "ipa_pulmonic" "IPA Pulmonic Consonants"
1255                 Item "Voiceless bilabial plosive" "unicode-insert 0x0070"
1256                 Item "Voiced bilabial plosive" "unicode-insert 0x0062"
1257                 Item "Voiceless alveolar plosive" "unicode-insert 0x0074"
1258                 Item "Voiced alveolar plosive" "unicode-insert 0x0064"
1259                 Item "Voiceless retroflex plosive" "unicode-insert 0x0288"
1260                 Item "Voiced retroflex plosive" "unicode-insert 0x0256"
1261                 Item "Voiceless palatal plosive" "unicode-insert 0x0063"
1262                 Item "Voiced palatal plosive" "unicode-insert 0x025f"
1263                 Item "Voiceless velar plosive" "unicode-insert 0x006b"
1264                 Item "Voiced velar plosive" "unicode-insert 0x0261"
1265                 Item "Voiceless uvular plosive" "unicode-insert 0x0071"
1266                 Item "Voiced uvular plosive" "unicode-insert 0x0262"
1267                 Item "Glottal plosive" "unicode-insert 0x0294"
1268                 Item "Voiced bilabial nasal" "unicode-insert 0x006d"
1269                 Item "Voiced labiodental nasal" "unicode-insert 0x0271"
1270                 Item "Voiced alveolar nasal" "unicode-insert 0x006e"
1271                 Item "Voiced retroflex nasal" "unicode-insert 0x0273"
1272                 Item "Voiced palatal nasal" "unicode-insert 0x0272"
1273                 Item "Voiced velar nasal" "unicode-insert 0x014b"
1274                 Item "Voiced uvular nasal" "unicode-insert 0x0274"
1275                 Item "Voiced bilabial trill" "unicode-insert 0x0299"
1276                 Item "Voiced alveolar trill" "unicode-insert 0x0072"
1277                 Item "Voiced uvular trill" "unicode-insert 0x0280"
1278 #               Item "Voiced labiodental flap" "unicode-insert 0x2c71" // Not yet covered by TIPA
1279                 Item "Voiced alveolar tap" "unicode-insert 0x027e"
1280                 Item "Voiced retroflex flap" "unicode-insert 0x027d"
1281                 Item "Voiceless bilabial fricative" "unicode-insert 0x0278"
1282                 Item "Voiced bilabial fricative" "unicode-insert 0x03b2"
1283                 Item "Voiceless labiodental fricative" "unicode-insert 0x0066"
1284                 Item "Voiced labiodental fricative" "unicode-insert 0x0076"
1285                 Item "Voiceless dental fricative" "unicode-insert 0x03b8"
1286                 Item "Voiced dental fricative" "unicode-insert 0x00f0"
1287                 Item "Voiceless alveolar fricative" "unicode-insert 0x0073"
1288                 Item "Voiced alveolar fricative" "unicode-insert 0x007a"
1289                 Item "Voiceless postalveolar fricative" "unicode-insert 0x0283"
1290                 Item "Voiced postalveolar fricative" "unicode-insert 0x0292"
1291                 Item "Voiceless retroflex fricative" "unicode-insert 0x0282"
1292                 Item "Voiced retroflex fricative" "unicode-insert 0x0290"
1293                 Item "Voiceless palatal fricative" "unicode-insert 0x00e7"
1294                 Item "Voiced palatal fricative" "unicode-insert 0x029d"
1295                 Item "Voiceless velar fricative" "unicode-insert 0x0078"
1296                 Item "Voiced velar fricative" "unicode-insert 0x0263"
1297                 Item "Voiceless uvular fricative" "unicode-insert 0x03c7"
1298                 Item "Voiced uvular fricative" "unicode-insert 0x0281"
1299                 Item "Voiceless pharyngeal fricative" "unicode-insert 0x0127"
1300                 Item "Voiced pharyngeal fricative" "unicode-insert 0x0295"
1301                 Item "Voiceless glottal fricative" "unicode-insert 0x0068"
1302                 Item "Voiced glottal fricative" "unicode-insert 0x0266"
1303                 Item "Voiceless alveolar lateral fricative" "unicode-insert 0x026c"
1304                 Item "Voiced alveolar lateral fricative" "unicode-insert 0x026e"
1305                 Item "Voiced labiodental approximant" "unicode-insert 0x028b"
1306                 Item "Voiced alveolar approximant" "unicode-insert 0x0279"
1307                 Item "Voiced retroflex approximant" "unicode-insert 0x027b"
1308                 Item "Voiced palatal approximant" "unicode-insert 0x006a"
1309                 Item "Voiced velar approximant" "unicode-insert 0x0270"
1310                 Item "Voiced alveolar lateral approximant" "unicode-insert 0x006c"
1311                 Item "Voiced retroflex lateral approximant" "unicode-insert 0x026d"
1312                 Item "Voiced palatal lateral approximant" "unicode-insert 0x028e"
1313                 Item "Voiced velar lateral approximant" "unicode-insert 0x029f"
1314         End
1315
1316         Toolbar "ipa_nonpulmonic" "IPA Non-Pulmonic Consonants"
1317                 Item "Bilabial click" "unicode-insert 0x0298"
1318                 Item "Dental click" "unicode-insert 0x01c0"
1319                 Item "(Post)alveolar click" "unicode-insert 0x01c3"
1320                 Item "Palatoalveolar click" "unicode-insert 0x01c2"
1321                 Item "Alveolar lateral click" "unicode-insert 0x01c1"
1322                 Item "Voiced bilabial implosive" "unicode-insert 0x0253"
1323                 Item "Voiced dental/alveolar implosive" "unicode-insert 0x0257"
1324                 Item "Voiced palatal implosive" "unicode-insert 0x0284"
1325                 Item "Voiced velar implosive" "unicode-insert 0x0260"
1326                 Item "Voiced uvular implosive" "unicode-insert 0x029b"
1327                 Item "Ejective mark" "unicode-insert 0x02bc"
1328         End
1329
1330         Toolbar "ipa_vowels" "IPA Vowels"
1331                 Item "Close front unrounded vowel" "unicode-insert 0x0069"
1332                 Item "Close front rounded vowel" "unicode-insert 0x0079"
1333                 Item "Close central unrounded vowel" "unicode-insert 0x0268"
1334                 Item "Close central rounded vowel" "unicode-insert 0x0289"
1335                 Item "Close back unrounded vowel" "unicode-insert 0x026f"
1336                 Item "Close back rounded vowel" "unicode-insert 0x0075"
1337                 Item "Near-close near-front unrounded vowel" "unicode-insert 0x026a"
1338                 Item "Near-close near-front rounded vowel" "unicode-insert 0x028f"
1339                 Item "Near-close near-back rounded vowel" "unicode-insert 0x028a"
1340                 Item "Close-mid front unrounded vowel" "unicode-insert 0x0065"
1341                 Item "Close-mid front rounded vowel" "unicode-insert 0x00f8"
1342                 Item "Close-mid central unrounded vowel" "unicode-insert 0x0258"
1343                 Item "Close-mid central rounded vowel" "unicode-insert 0x0275"
1344                 Item "Close-mid back unrounded vowel" "unicode-insert 0x0264"
1345                 Item "Close-mid back rounded vowel" "unicode-insert 0x006f"
1346                 Item "Mid-central vowel (Schwa)" "unicode-insert 0x0259"
1347                 Item "Open-mid front unrounded vowel" "unicode-insert 0x025b"
1348                 Item "Open-mid front rounded vowel" "unicode-insert 0x0153"
1349                 Item "Open-mid central unrounded vowel" "unicode-insert 0x025c"
1350                 Item "Open-mid central rounded vowel" "unicode-insert 0x025e"
1351                 Item "Open-mid back unrounded vowel" "unicode-insert 0x028c"
1352                 Item "Open-mid back rounded vowel" "unicode-insert 0x0254"
1353                 Item "Near-open front unrounded vowel" "unicode-insert 0x00e6"
1354                 Item "Near-open vowel" "unicode-insert 0x0250"
1355                 Item "Open front unrounded vowel" "unicode-insert 0x0061"
1356                 Item "Open front rounded vowel" "unicode-insert 0x0276"
1357                 Item "Open back unrounded vowel" "unicode-insert 0x0251"
1358                 Item "Open back rounded vowel" "unicode-insert 0x0252"
1359         End
1360
1361         Toolbar "ipa_others" "IPA Other Symbols"
1362                 Item "Voiceless labial-velar fricative" "unicode-insert 0x028d"
1363                 Item "Voiced labial-velar approximant" "unicode-insert 0x0077"
1364                 Item "Voiced labial-palatal approximant" "unicode-insert 0x0265"
1365                 Item "Voiceless epiglottal fricative" "unicode-insert 0x029c"
1366                 Item "Voiced epiglottal fricative" "unicode-insert 0x02a2"
1367                 Item "Epiglottal plosive" "unicode-insert 0x02a1"
1368                 Item "Voiceless alveolo-palatal fricative" "unicode-insert 0x0255"
1369                 Item "Voiced alveolo-palatal fricative" "unicode-insert 0x0291"
1370                 Item "Voiced alveolar lateral flap" "unicode-insert 0x027a"
1371                 Item "Simultaneous voiceless postalveolar and velar fricative" "unicode-insert 0x0267"
1372                 Item "Top tie bar" "ipamacro-insert deco toptiebar"
1373                 Item "Bottom tie bar" "ipamacro-insert deco bottomtiebar"
1374         End
1375
1376         Toolbar "ipa_suprasegmentals" "IPA Suprasegmentals"
1377                 Item "Long" "unicode-insert 0x02d0"
1378                 Item "Half-long" "unicode-insert 0x02d1"
1379                 Item "Extra short" "unicode-insert 0x0306"
1380                 Item "Primary stress" "unicode-insert 0x02c8"
1381                 Item "Secondary stress" "unicode-insert 0x02cc"
1382                 Item "Minor (foot) group" "unicode-insert 0x007c"
1383                 Item "Major (intonation) group" "unicode-insert 0x2016"
1384                 Item "Syllable break" "unicode-insert 0x002e"
1385                 Item "Linking (absence of a break)" "unicode-insert 0x203f"
1386         End
1387
1388         Toolbar "ipa_diacritics" "IPA Diacritics"
1389                 Item "Voiceless" "unicode-insert 0x0325"
1390                 Item "Voiceless (above)" "unicode-insert 0x030a"
1391                 Item "Voiced" "unicode-insert 0x032c"
1392                 Item "Breathy voiced" "unicode-insert 0x0324"
1393                 Item "Creaky voiced" "unicode-insert 0x0330"
1394                 Item "Linguolabial" "unicode-insert 0x033c"
1395                 Item "Dental" "unicode-insert 0x032a"
1396                 Item "Apical" "unicode-insert 0x033a"
1397                 Item "Laminal" "unicode-insert 0x033b"
1398                 Item "Aspirated" "unicode-insert 0x02b0"
1399                 Item "More rounded" "unicode-insert 0x0339"
1400                 Item "Less rounded" "unicode-insert 0x031c"
1401                 Item "Advanced" "unicode-insert 0x031f"
1402                 Item "Retracted" "unicode-insert 0x0320"
1403                 Item "Centralized" "unicode-insert 0x0308"
1404                 Item "Mid-centralized" "unicode-insert 0x033d"
1405                 Item "Syllabic" "unicode-insert 0x0329"
1406                 Item "Non-syllabic" "unicode-insert 0x032f"
1407                 Item "Rhoticity" "unicode-insert 0x02de"
1408                 Item "Labialized" "unicode-insert 0x02b7"
1409                 Item "Palatized" "unicode-insert 0x02b2"
1410                 Item "Velarized" "unicode-insert 0x02e0"
1411                 Item "Pharyngialized" "unicode-insert 0x02e4"
1412                 Item "Velarized or pharyngialized" "unicode-insert 0x0334"
1413                 Item "Raised" "unicode-insert 0x031d"
1414                 Item "Lowered" "unicode-insert 0x031e"
1415                 Item "Advanced tongue root" "unicode-insert 0x0318"
1416                 Item "Retracted tongue root" "unicode-insert 0x0319"
1417                 Item "Nasalized" "unicode-insert 0x0303"
1418                 Item "Nasal release" "unicode-insert 0x207f"
1419                 Item "Lateral release" "unicode-insert 0x02e1"
1420                 Item "No audible release" "unicode-insert 0x02fa"
1421         End
1422
1423         Toolbar "ipa_accents" "IPA Tones and Word Accents"
1424                 Item "Extra high (accent)" "unicode-insert 0x030b"
1425                 Item "Extra high (tone letter)" "unicode-insert 0x02e5"
1426                 Item "High (accent)" "unicode-insert 0x0300"
1427                 Item "High (tone letter)" "unicode-insert 0x02e6"
1428                 Item "Mid (accent)" "unicode-insert 0x0304"
1429                 Item "Mid (tone letter)" "unicode-insert 0x02e7"
1430                 Item "Low (accent)" "unicode-insert 0x0301"
1431                 Item "Low (tone letter)" "unicode-insert 0x02e8"
1432                 Item "Extra low (accent)" "unicode-insert 0x030f"
1433                 Item "Extra low (tone letter)" "unicode-insert 0x02e9"
1434                 Item "Downstep" "unicode-insert 0xa71c"
1435                 Item "Upstep" "unicode-insert 0xa71b"
1436                 Item "Rising (accent)" "unicode-insert 0x030c"
1437                 Item "Rising (tone letter)" "ipamacro-insert tone-rising"
1438                 Item "Falling (accent)" "unicode-insert 0x0302"
1439                 Item "Falling (tone letter)" "ipamacro-insert tone-falling"
1440                 Item "High rising (accent)" "unicode-insert 0x1dc4"
1441                 Item "High rising (tone letter)" "ipamacro-insert tone-high-rising"
1442                 Item "Low rising (accent)" "unicode-insert 0x1dc5"
1443                 Item "Low rising (tone letter)" "ipamacro-insert tone-low-rising"
1444                 Item "Rising-falling (accent)" "unicode-insert 0x1dc8"
1445                 Item "Rising-falling (tone letter)" "ipamacro-insert tone-high-rising-falling"
1446                 Item "Global rise" "unicode-insert 0x2197"
1447                 Item "Global fall" "unicode-insert 0x2198"
1448         End
1449
1450 End