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