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