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