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