2003-08-22 10:37:26 +00:00
|
|
|
# -*- text -*-
|
|
|
|
|
2007-01-06 13:42:15 +00:00
|
|
|
# file stdmenus.inc
|
2003-08-22 10:37:26 +00:00
|
|
|
# This file is part of LyX, the document processor.
|
|
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
|
|
|
|
# author Jean-Marc Lasgouttes
|
|
|
|
# author John Levon
|
2006-08-30 19:06:12 +00:00
|
|
|
# author Michael Gerz
|
2003-08-22 10:37:26 +00:00
|
|
|
|
|
|
|
# Full author contact details are available in file CREDITS.
|
|
|
|
|
2005-06-09 09:58:08 +00:00
|
|
|
# The interface is designed (partially) following the KDE Human Interface
|
2023-09-16 06:53:19 +00:00
|
|
|
# Guidelines (https://develop.kde.org/hig/)
|
2005-05-22 23:01:21 +00:00
|
|
|
|
2009-06-29 06:19:21 +00:00
|
|
|
# Casing Rules:
|
2015-02-26 19:43:05 +00:00
|
|
|
# Capitalize all words in the element, with the following exceptions:
|
|
|
|
# * Articles: a, an, the.
|
|
|
|
# * Conjunctions: and, but, for, not, so, yet ...
|
2009-06-29 06:19:21 +00:00
|
|
|
# * Prepositions of three or fewer letters: at, for, by, in, to ...
|
2009-07-05 16:24:04 +00:00
|
|
|
# (except when the preposition is part of a verb phrase, such as "Check In")
|
2023-09-16 06:53:19 +00:00
|
|
|
# (https://developer.gnome.org/hig/guidelines/writing-style.html)
|
2009-06-29 06:19:21 +00:00
|
|
|
|
2018-08-30 19:56:26 +00:00
|
|
|
Format 5
|
2011-01-18 15:42:27 +00:00
|
|
|
|
2003-04-15 02:30:53 +00:00
|
|
|
Menuset
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menubar
|
2003-04-15 02:30:53 +00:00
|
|
|
# Make the first 4 menus be as much as expected as possible
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "File|F" "file"
|
|
|
|
Submenu "Edit|E" "edit"
|
|
|
|
Submenu "View|V" "view"
|
|
|
|
Submenu "Insert|I" "insert"
|
|
|
|
Submenu "Navigate|N" "navigate"
|
|
|
|
Submenu "Document|D" "document"
|
|
|
|
Submenu "Tools|T" "tools"
|
|
|
|
Submenu "Help|H" "help"
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# FILE MENU
|
|
|
|
#
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "file"
|
|
|
|
Item "New|N" "buffer-new"
|
2021-02-10 08:36:32 +00:00
|
|
|
Item "New from Template...|m" "lyxfiles-open templates"
|
2021-01-04 19:52:20 +00:00
|
|
|
Item "Open...|O" "file-open"
|
2006-11-07 20:23:54 +00:00
|
|
|
Submenu "Open Recent|t" "file_lastfiles"
|
2021-02-10 08:36:32 +00:00
|
|
|
Item "Open Example...|p" "lyxfiles-open examples"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
|
|
|
Item "Close|C" "buffer-close"
|
2009-08-06 23:17:16 +00:00
|
|
|
Item "Close All" "buffer-close-all"
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Save|S" "buffer-write"
|
|
|
|
Item "Save As...|A" "buffer-write-as"
|
2019-03-23 09:17:33 +00:00
|
|
|
Item "Save As Template..." "buffer-write-as-template"
|
2007-08-06 15:34:02 +00:00
|
|
|
Item "Save All|l" "buffer-write-all"
|
2007-08-19 19:02:28 +00:00
|
|
|
Item "Revert to Saved|R" "buffer-reload"
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "Version Control|V" "file_vc"
|
|
|
|
Separator
|
|
|
|
Submenu "Import|I" "file_import"
|
|
|
|
Submenu "Export|E" "file_export"
|
|
|
|
OptItem "Fax...|F" "buffer-export fax"
|
|
|
|
Separator
|
2006-10-24 20:57:29 +00:00
|
|
|
Item "New Window|W" "window-new"
|
|
|
|
Item "Close Window|d" "window-close"
|
|
|
|
Separator
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Exit|x" "lyx-quit"
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2006-09-06 11:33:06 +00:00
|
|
|
Menu "file_lastfiles"
|
2003-05-16 12:53:20 +00:00
|
|
|
Lastfiles
|
|
|
|
End
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "file_vc"
|
|
|
|
OptItem "Register...|R" "vc-register"
|
2010-03-31 21:25:05 +00:00
|
|
|
OptItem "Check In Changes...|I" "vc-check-in"
|
|
|
|
OptItem "Check Out for Edit|O" "vc-check-out"
|
2013-02-05 20:31:58 +00:00
|
|
|
OptItem "Copy|p" "vc-copy"
|
|
|
|
OptItem "Rename|R" "vc-rename"
|
2010-01-07 16:57:10 +00:00
|
|
|
OptItem "Update Local Directory From Repository|d" "vc-repo-update"
|
2010-03-31 21:25:05 +00:00
|
|
|
OptItem "Revert to Repository Version|v" "vc-revert"
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "Undo Last Check In|U" "vc-undo-last"
|
2010-09-07 12:52:46 +00:00
|
|
|
OptItem "Compare with Older Revision...|C" "vc-compare"
|
2010-03-31 21:25:05 +00:00
|
|
|
OptItem "Show History...|H" "dialog-show vclog"
|
2009-06-26 12:35:21 +00:00
|
|
|
OptItem "Use Locking Property|L" "vc-locking-toggle"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "file_import"
|
|
|
|
ImportFormats
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "file_export"
|
2017-03-04 22:44:34 +00:00
|
|
|
ExportFormat
|
2011-10-15 13:27:00 +00:00
|
|
|
Item "Export As...|s" "buffer-export-as"
|
2017-03-04 22:44:34 +00:00
|
|
|
Separator
|
2003-05-16 12:53:20 +00:00
|
|
|
ExportFormats
|
2015-11-17 05:24:19 +00:00
|
|
|
Item "More Formats & Options...|r" "buffer-export custom"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# EDIT MENU
|
|
|
|
#
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit"
|
|
|
|
Item "Undo|U" "undo"
|
|
|
|
Item "Redo|R" "redo"
|
|
|
|
Separator
|
|
|
|
Item "Cut" "cut"
|
|
|
|
Item "Copy" "copy"
|
|
|
|
Item "Paste" "paste"
|
2006-11-07 21:38:02 +00:00
|
|
|
Submenu "Paste Recent|e" "edit_pasterecent"
|
2007-01-04 20:08:22 +00:00
|
|
|
Submenu "Paste Special" "edit_paste"
|
2005-05-22 23:01:21 +00:00
|
|
|
Separator
|
2011-08-18 14:27:48 +00:00
|
|
|
Item "Select Whole Inset" "inset-select-all"
|
2007-01-30 22:16:47 +00:00
|
|
|
Item "Select All" "command-sequence buffer-begin ; buffer-end-select"
|
|
|
|
Separator
|
2009-08-21 16:49:01 +00:00
|
|
|
Item "Find & Replace (Quick)...|F" "dialog-show findreplace"
|
2009-09-22 21:39:48 +00:00
|
|
|
Item "Find & Replace (Advanced)..." "dialog-show findreplaceadv"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2024-04-02 12:41:54 +00:00
|
|
|
Item "Move Paragraph Up|h" "paragraph-move-up"
|
2006-09-01 16:39:35 +00:00
|
|
|
Item "Move Paragraph Down|v" "paragraph-move-down"
|
|
|
|
Separator
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Paragraph Settings...|P" "layout-paragraph"
|
2018-05-08 05:46:53 +00:00
|
|
|
Submenu "Text Properties|x" "edit_textprops"
|
|
|
|
OptSubmenu "Custom Text Styles|S" "edit_textstyles"
|
2020-05-03 11:30:04 +00:00
|
|
|
Item "Manage Counter Values..." "dialog-show-new-inset counter"
|
2018-05-08 05:46:53 +00:00
|
|
|
LanguageSelector
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2003-04-15 02:30:53 +00:00
|
|
|
# Mathed b0rkage means these don't work properly
|
2003-05-16 12:53:20 +00:00
|
|
|
OptSubmenu "Table|T" "edit_tabular"
|
|
|
|
OptSubmenu "Math|M" "edit_math"
|
2006-09-06 11:33:06 +00:00
|
|
|
OptSubmenu "Rows & Columns|C" "edit_tabular_features"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2003-04-15 02:30:53 +00:00
|
|
|
# This is where the context-specific stuff is supposed to go.
|
|
|
|
# The idea is that everything on here can disappear and should
|
|
|
|
# only appear when relevant (getStatus). Only stuff that needs
|
|
|
|
# a right-click to bring up the dialog should appear here (it is not
|
|
|
|
# obvious what the context is for the others)
|
2006-11-07 21:38:02 +00:00
|
|
|
OptItem "Increase List Depth|I" "depth-increment"
|
|
|
|
OptItem "Decrease List Depth|D" "depth-decrement"
|
2023-10-13 07:17:39 +00:00
|
|
|
Separator
|
2010-02-08 17:15:00 +00:00
|
|
|
OptItem "Dissolve Inset" "inset-dissolve"
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "TeX Code Settings...|C" "inset-settings ert"
|
2003-04-26 17:30:13 +00:00
|
|
|
# 'a' shortcut to match Insert entry, shouldn't clash with Table Settings
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "Float Settings...|a" "inset-settings float"
|
|
|
|
OptItem "Text Wrap Settings...|W" "inset-settings wrap"
|
2003-07-15 23:52:37 +00:00
|
|
|
OptItem "Note Settings...|N" "inset-settings note"
|
2009-02-05 18:09:36 +00:00
|
|
|
OptItem "Phantom Settings...|h" "inset-settings phantom"
|
2003-08-17 11:28:23 +00:00
|
|
|
OptItem "Branch Settings...|B" "inset-settings branch"
|
2018-05-08 05:46:53 +00:00
|
|
|
OptItem "Box Settings...|S" "inset-settings box"
|
2009-04-19 15:03:56 +00:00
|
|
|
OptItem "Index Entry Settings...|y" "inset-settings index"
|
2018-05-08 05:46:53 +00:00
|
|
|
OptItem "Index Settings...|S" "inset-settings index_print"
|
2010-03-06 17:51:40 +00:00
|
|
|
OptItem "Info Settings...|n" "inset-settings info"
|
2009-01-03 19:32:11 +00:00
|
|
|
OptItem "Listings Settings...|g" "inset-settings listings"
|
2003-04-26 19:01:33 +00:00
|
|
|
# Hey, guess what's broken ? Surprise surprise, it's tabular stuff
|
|
|
|
# This is in the Table submenu instead for now.
|
|
|
|
# OptItem "Table Settings...|a" "inset-settings tabular"
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "Table Settings...|a" "layout-tabular"
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2005-05-22 23:01:21 +00:00
|
|
|
Menu "edit_paste"
|
2013-05-11 07:39:06 +00:00
|
|
|
OptItem "Paste from HTML|H" "paste html"
|
|
|
|
OptItem "Paste from LaTeX|L" "paste latex"
|
|
|
|
OptItem "Paste as LinkBack PDF" "paste linkback"
|
|
|
|
OptItem "Paste as PDF" "paste pdf"
|
|
|
|
OptItem "Paste as PNG" "paste png"
|
|
|
|
OptItem "Paste as JPEG" "paste jpeg"
|
|
|
|
OptItem "Paste as EMF" "paste emf"
|
|
|
|
Separator
|
2007-01-18 07:23:58 +00:00
|
|
|
Item "Plain Text|T" "clipboard-paste"
|
|
|
|
Item "Plain Text, Join Lines|J" "clipboard-paste paragraph"
|
2007-01-07 22:52:04 +00:00
|
|
|
Separator
|
2007-01-18 07:23:58 +00:00
|
|
|
Item "Selection|S" "primary-selection-paste"
|
|
|
|
Item "Selection, Join Lines|i" "primary-selection-paste paragraph"
|
2014-02-05 20:50:33 +00:00
|
|
|
# clipboard-paste-simple is commented because it is irritating (bug 8749)
|
|
|
|
# until somebody can explain why it is needed in addition to clipboard-paste
|
|
|
|
# Separator
|
|
|
|
# Item "Unformatted Text|U" "clipboard-paste-simple"
|
|
|
|
# Item "Unformatted, Join Lines|o" "clipboard-paste-simple paragraph"
|
2005-05-22 23:01:21 +00:00
|
|
|
End
|
|
|
|
|
2006-09-06 11:33:06 +00:00
|
|
|
Menu "edit_pasterecent"
|
2003-06-17 15:33:49 +00:00
|
|
|
PasteRecent
|
|
|
|
End
|
|
|
|
|
2018-05-08 05:46:53 +00:00
|
|
|
Menu "edit_textprops"
|
|
|
|
Item "Customize...|C" "dialog-show character"
|
|
|
|
Item "Apply Last Settings|A" "textstyle-apply"
|
2006-09-13 15:33:26 +00:00
|
|
|
Separator
|
2018-05-10 17:24:23 +00:00
|
|
|
Item "Capitalize|p" "word-capitalize"
|
2006-09-13 16:13:41 +00:00
|
|
|
Item "Uppercase|U" "word-upcase"
|
|
|
|
Item "Lowercase|L" "word-lowcase"
|
2024-10-14 16:10:05 +00:00
|
|
|
Item "Toggle Case|T" "word-togglecase"
|
2006-09-13 15:33:26 +00:00
|
|
|
End
|
|
|
|
|
2018-05-08 05:46:53 +00:00
|
|
|
Menu "edit_textstyles"
|
|
|
|
OptItem "Dissolve Text Style" "inset-dissolve charstyle"
|
|
|
|
CharStyles
|
|
|
|
End
|
|
|
|
|
2003-04-15 02:30:53 +00:00
|
|
|
# not much we can do to help here
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit_tabular"
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Multi-page Table|g" "tabular-feature toggle-longtabular"
|
|
|
|
Item "Formal Style|F" "tabular-feature toggle-booktabs"
|
2015-11-13 13:09:04 +00:00
|
|
|
Separator
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Multicolumn|M" "tabular-feature multicolumn"
|
|
|
|
Item "Multirow|u" "tabular-feature multirow"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Top Line|T" "tabular-feature toggle-line-top"
|
|
|
|
Item "Bottom Line|B" "tabular-feature toggle-line-bottom"
|
|
|
|
Item "Left Line|L" "tabular-feature toggle-line-left"
|
|
|
|
Item "Right Line|R" "tabular-feature toggle-line-right"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Top|p" "tabular-feature tabular-valign-top"
|
|
|
|
Item "Middle|i" "tabular-feature tabular-valign-middle"
|
|
|
|
Item "Bottom|o" "tabular-feature tabular-valign-bottom"
|
2003-08-14 15:45:09 +00:00
|
|
|
End
|
|
|
|
|
2006-09-06 11:33:06 +00:00
|
|
|
Menu "edit_tabular_features"
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Left|L" "tabular-feature align-left"
|
|
|
|
Item "Center|C" "tabular-feature align-center"
|
|
|
|
Item "Right|R" "tabular-feature align-right"
|
|
|
|
Separator
|
|
|
|
Item "Top|T" "tabular-feature valign-top"
|
|
|
|
Item "Middle|M" "tabular-feature valign-middle"
|
|
|
|
Item "Bottom|B" "tabular-feature valign-bottom"
|
|
|
|
Separator
|
|
|
|
Item "Add Row|A" "tabular-feature append-row"
|
|
|
|
Item "Delete Row|D" "tabular-feature delete-row"
|
|
|
|
Item "Copy Row|o" "tabular-feature copy-row"
|
|
|
|
Item "Move Row Up" "tabular-feature move-row-up"
|
|
|
|
Item "Move Row Down" "tabular-feature move-row-down"
|
|
|
|
# Item "Swap Rows|S" "tabular-feature swap-row" # currently broken
|
|
|
|
Separator
|
|
|
|
Item "Add Column|u" "tabular-feature append-column"
|
|
|
|
Item "Delete Column|e" "tabular-feature delete-column"
|
|
|
|
Item "Copy Column|p" "tabular-feature copy-column"
|
|
|
|
Item "Move Column Right|v" "tabular-feature move-column-right"
|
|
|
|
Item "Move Column Left" "tabular-feature move-column-left"
|
|
|
|
# Item "Swap Columns|w" "tabular-feature swap-column" # currently broken
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit_math"
|
2009-06-29 06:19:21 +00:00
|
|
|
Item "Number Whole Formula|N" "math-number-toggle"
|
|
|
|
Item "Number This Line|u" "math-number-line-toggle"
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "Change Limits Type|L" "edit_math_limits"
|
2007-11-01 11:08:04 +00:00
|
|
|
Submenu "Macro Definition" "edit_math_macro_definition"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
|
|
|
Submenu "Change Formula Type|F" "edit_math_mutate"
|
|
|
|
Separator
|
2018-05-08 05:46:53 +00:00
|
|
|
Submenu "Text Properties|T" "edit_math_fontstyles"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "Use Computer Algebra System|S" "edit_math_extern"
|
|
|
|
Separator
|
2006-09-01 16:39:35 +00:00
|
|
|
Item "Split Cell|C" "cell-split"
|
|
|
|
Separator
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Add Line Above|A" "tabular-feature add-hline-above"
|
|
|
|
Item "Add Line Below|B" "tabular-feature add-hline-below"
|
|
|
|
Item "Delete Line Above|D" "tabular-feature delete-hline-above"
|
|
|
|
Item "Delete Line Below|e" "tabular-feature delete-hline-below"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Add Line to Left" "tabular-feature add-vline-left"
|
|
|
|
Item "Add Line to Right" "tabular-feature add-vline-right"
|
|
|
|
Item "Delete Line to Left" "tabular-feature delete-vline-left"
|
|
|
|
Item "Delete Line to Right" "tabular-feature delete-vline-right"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2007-11-01 11:08:04 +00:00
|
|
|
Menu "edit_math_macro_definition"
|
2008-12-07 14:29:13 +00:00
|
|
|
Item "Append Argument" "math-macro-add-param"
|
|
|
|
Item "Remove Last Argument" "math-macro-remove-param"
|
2009-06-29 06:19:21 +00:00
|
|
|
Separator
|
2014-02-16 19:06:23 +00:00
|
|
|
Item "Transform First Non-Optional to Optional Argument" "math-macro-make-optional"
|
|
|
|
Item "Transform Last Optional to Non-Optional Argument" "math-macro-make-nonoptional"
|
2009-06-29 06:19:21 +00:00
|
|
|
Item "Insert Optional Argument" "math-macro-add-optional-param"
|
|
|
|
Item "Remove Optional Argument" "math-macro-remove-optional-param"
|
2008-12-07 14:29:13 +00:00
|
|
|
Separator
|
2009-06-29 06:19:21 +00:00
|
|
|
Item "Append Argument Eating From the Right" "math-macro-append-greedy-param"
|
|
|
|
Item "Append Optional Argument Eating From the Right" "math-macro-add-greedy-optional-param"
|
2009-07-05 16:24:04 +00:00
|
|
|
Item "Remove Last Argument Spitting Out to the Right" "math-macro-remove-greedy-param"
|
2007-11-01 11:08:04 +00:00
|
|
|
End
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit_math_limits"
|
|
|
|
Item "Default|t" "math-limits empty"
|
|
|
|
Item "Display|D" "math-limits limits"
|
|
|
|
Item "Inline|I" "math-limits nolimits"
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2009-01-16 10:35:57 +00:00
|
|
|
Menu "edit_math_fontstyles"
|
|
|
|
Item "Math Normal Font|N" "math-font-style mathnormal"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Math Calligraphic Family|C" "math-font-style mathcal"
|
2010-07-17 15:51:11 +00:00
|
|
|
Item "Math Formal Script Family|o" "math-font-style mathscr"
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Math Fraktur Family|F" "math-font-style mathfrak"
|
|
|
|
Item "Math Roman Family|R" "math-font-style mathrm"
|
|
|
|
Item "Math Sans Serif Family|S" "math-font-style mathsf"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Math Bold Series|B" "math-font-style mathbf"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Text Normal Font|T" "math-font-style textnormal"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Text Roman Family" "math-font-style textrm"
|
|
|
|
Item "Text Sans Serif Family" "math-font-style textsf"
|
|
|
|
Item "Text Typewriter Family" "math-font-style texttt"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Text Bold Series" "math-font-style textbf"
|
|
|
|
Item "Text Medium Series" "math-font-style textmd"
|
2006-10-04 19:29:15 +00:00
|
|
|
Separator
|
2009-01-16 10:35:57 +00:00
|
|
|
Item "Text Italic Shape" "math-font-style textit"
|
|
|
|
Item "Text Small Caps Shape" "math-font-style textsc"
|
|
|
|
Item "Text Slanted Shape" "math-font-style textsl"
|
|
|
|
Item "Text Upright Shape" "math-font-style textup"
|
2006-10-04 19:29:15 +00:00
|
|
|
End
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit_math_extern"
|
2006-11-07 21:38:02 +00:00
|
|
|
Item "Octave|O" "math-extern octave"
|
|
|
|
Item "Maxima|M" "math-extern maxima"
|
|
|
|
Item "Mathematica|a" "math-extern mathematica"
|
|
|
|
Separator
|
2009-06-29 06:19:21 +00:00
|
|
|
Item "Maple, Simplify|S" "math-extern maple simplify"
|
|
|
|
Item "Maple, Factor|F" "math-extern maple factor"
|
|
|
|
Item "Maple, Evalm|E" "math-extern maple evalm"
|
|
|
|
Item "Maple, Evalf|v" "math-extern maple evalf"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "edit_math_mutate"
|
|
|
|
Item "Inline Formula|I" "math-mutate simple"
|
|
|
|
Item "Displayed Formula|D" "math-mutate equation"
|
2006-11-12 09:50:57 +00:00
|
|
|
Item "Eqnarray Environment|E" "math-mutate eqnarray"
|
2009-06-29 06:27:12 +00:00
|
|
|
Item "AMS align Environment|a" "math-mutate align"
|
2003-07-22 15:24:01 +00:00
|
|
|
Item "AMS alignat Environment|t" "math-mutate alignat"
|
2009-06-29 06:27:12 +00:00
|
|
|
Item "AMS flalign Environment|f" "math-mutate flalign"
|
|
|
|
Item "AMS gather Environment|g" "math-mutate gather"
|
|
|
|
Item "AMS multline Environment|m" "math-mutate multline"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# VIEW MENU
|
|
|
|
#
|
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "view"
|
2019-05-28 03:51:31 +00:00
|
|
|
Item "Outline Pane|O" "dialog-toggle toc"
|
2016-08-28 20:57:17 +00:00
|
|
|
Item "Code Preview Pane|P" "dialog-toggle view-source"
|
2021-02-14 16:58:41 +00:00
|
|
|
Item "Messages Pane|M" "dialog-toggle progress"
|
2019-05-28 03:51:31 +00:00
|
|
|
Submenu "Toolbars|T" "toolbars"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2019-05-28 03:51:31 +00:00
|
|
|
OptItem "Unfold Math Macro|n" "math-macro-unfold"
|
|
|
|
OptItem "Fold Math Macro|d" "math-macro-fold"
|
|
|
|
Separator
|
|
|
|
Item "Split View Into Left and Right Half|L" "view-split horizontal"
|
|
|
|
Item "Split View Into Upper and Lower Half|U" "view-split vertical"
|
2012-09-29 15:16:52 +00:00
|
|
|
OptItem "Close Current View|w" "tab-group-close"
|
2019-05-28 03:51:31 +00:00
|
|
|
Item "Fullscreen|F" "ui-toggle fullscreen"
|
|
|
|
Separator
|
|
|
|
Item "Open All Insets|I" "inset-forall * inset-toggle open"
|
|
|
|
Item "Close All Insets|C" "inset-forall * inset-toggle close"
|
2006-11-02 16:01:36 +00:00
|
|
|
Separator
|
2009-06-29 06:19:21 +00:00
|
|
|
Documents
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2006-11-02 16:01:36 +00:00
|
|
|
Menu "toolbars"
|
|
|
|
Toolbars
|
2016-10-09 07:15:20 +00:00
|
|
|
Separator
|
2017-05-07 12:18:17 +00:00
|
|
|
Item "Lock Toolbars|L" "toolbar-movable *"
|
2016-11-24 12:10:03 +00:00
|
|
|
Separator
|
2016-11-23 16:30:49 +00:00
|
|
|
Item "Small-sized Icons" "icon-size small"
|
|
|
|
Item "Normal-sized Icons" "icon-size normal"
|
|
|
|
Item "Big-sized Icons" "icon-size big"
|
|
|
|
Item "Huge-sized Icons" "icon-size huge"
|
|
|
|
Item "Giant-sized Icons" "icon-size giant"
|
2006-11-02 16:01:36 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
#
|
|
|
|
# INSERT MENU
|
|
|
|
#
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert"
|
2003-04-15 02:30:53 +00:00
|
|
|
# Try and group things a little better, and percolate the most
|
|
|
|
# commonly used to good positions (exception being mathed, but
|
|
|
|
# most people using mathed learn key shortcuts quite quickly anyway)
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "Math|h" "insert_math"
|
2006-11-07 20:23:54 +00:00
|
|
|
Submenu "Special Character|p" "insert_special"
|
2006-11-25 17:03:30 +00:00
|
|
|
Submenu "Formatting|o" "insert_formatting"
|
2018-08-08 08:07:57 +00:00
|
|
|
Submenu "Field|i" "insert_fields"
|
2019-05-31 13:46:58 +00:00
|
|
|
Submenu "List/Contents/References|/" "insert_toc"
|
2003-08-14 15:47:20 +00:00
|
|
|
Submenu "Float|a" "insert_float"
|
2003-08-17 11:28:23 +00:00
|
|
|
Submenu "Note|N" "insert_note"
|
2007-05-31 12:07:48 +00:00
|
|
|
Submenu "Branch|B" "insert_branches"
|
2022-12-03 12:29:25 +00:00
|
|
|
Submenu "Custom Inset" "insert_custom"
|
2003-05-16 12:53:20 +00:00
|
|
|
Submenu "File|e" "insert_file"
|
2014-08-06 07:36:31 +00:00
|
|
|
Submenu "Box[[Menu]]|x" "insert_box"
|
2019-05-31 08:58:03 +00:00
|
|
|
OptSubmenu "Regular Expression" "context-edit-regexp"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2005-05-08 10:02:38 +00:00
|
|
|
Item "Citation...|C" "dialog-show-new-inset citation"
|
2006-11-07 20:23:54 +00:00
|
|
|
Item "Cross-Reference...|R" "dialog-show-new-inset ref"
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Label...|L" "label-insert"
|
2012-12-30 17:29:02 +00:00
|
|
|
Captions
|
2009-04-16 07:29:01 +00:00
|
|
|
Indices
|
2022-04-19 09:46:08 +00:00
|
|
|
OptSubmenu "Index Properties" "index_properties"
|
2024-08-12 10:33:16 +00:00
|
|
|
Item "Nomenclature Entry|y" "nomencl-insert"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
|
|
|
Item "Table...|T" "tabular-insert"
|
|
|
|
Item "Graphics...|G" "dialog-show-new-inset graphics"
|
2009-08-20 11:19:55 +00:00
|
|
|
Item "URL|U" "flex-insert URL"
|
|
|
|
Item "Hyperlink...|k" "href-insert"
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Footnote|F" "footnote-insert"
|
|
|
|
Item "Marginal Note|M" "marginalnote-insert"
|
2018-01-05 10:08:23 +00:00
|
|
|
Item "Program Listing[[Menu]]" "listing-insert"
|
2018-01-01 12:40:49 +00:00
|
|
|
Separator
|
2017-12-30 16:54:09 +00:00
|
|
|
EnvironmentSeparators
|
2018-01-01 12:40:49 +00:00
|
|
|
Separator
|
2012-11-19 13:21:02 +00:00
|
|
|
Arguments
|
2018-01-05 10:08:23 +00:00
|
|
|
Separator
|
2014-08-06 07:36:31 +00:00
|
|
|
Item "TeX Code" "ert-insert"
|
2010-03-28 13:47:50 +00:00
|
|
|
Item "Preview|w" "preview-insert"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert_special"
|
2008-02-07 13:18:07 +00:00
|
|
|
Item "Symbols...|b" "dialog-show symbols"
|
2007-12-06 11:04:56 +00:00
|
|
|
Item "Ellipsis|i" "specialchar-insert dots"
|
|
|
|
Item "End of Sentence|E" "specialchar-insert end-of-sentence"
|
2024-04-01 21:25:40 +00:00
|
|
|
Item "Plain Double Quotation Mark|Q" "quote-insert outer auto plain"
|
2024-04-02 01:54:44 +00:00
|
|
|
Item "Plain Single Quotation Mark|S" "quote-insert inner auto plain"
|
2016-12-24 13:27:00 +00:00
|
|
|
Item "Inner Quotation Mark|n" "quote-insert inner"
|
2022-10-26 08:52:21 +00:00
|
|
|
Item "Non-Breaking Hyphen|y" "specialchar-insert nobreakdash"
|
2007-12-06 11:04:56 +00:00
|
|
|
Item "Breakable Slash|a" "specialchar-insert slash"
|
2014-02-02 23:32:45 +00:00
|
|
|
Item "Visible Space|V" "space-insert visible"
|
2007-12-06 11:04:56 +00:00
|
|
|
Item "Menu Separator|M" "specialchar-insert menu-separator"
|
2012-03-06 07:54:22 +00:00
|
|
|
Item "Phonetic Symbols|P" "ipa-insert"
|
2015-11-02 19:52:21 +00:00
|
|
|
Submenu "Logos|L" "insert_logos"
|
|
|
|
End
|
|
|
|
|
2018-08-05 07:51:12 +00:00
|
|
|
Menu "insert_fields"
|
|
|
|
Item "Date (Current)|D" "info-insert date"
|
2023-02-25 17:52:31 +00:00
|
|
|
Item "Date (Last Modification of Document)|L" "info-insert moddate"
|
2020-10-13 21:18:00 +00:00
|
|
|
Item "Date (Fixed)|F" "info-insert fixdate"
|
2018-08-06 18:07:15 +00:00
|
|
|
Separator
|
2018-08-07 10:14:45 +00:00
|
|
|
Item "Time (Current)|T" "info-insert time"
|
2023-02-26 18:51:48 +00:00
|
|
|
Item "Time (Last Modification of Document)|M" "info-insert modtime"
|
2020-10-13 21:18:00 +00:00
|
|
|
Item "Time (Fixed)|x" "info-insert fixtime"
|
2018-08-07 10:14:45 +00:00
|
|
|
Separator
|
|
|
|
Item "File Name (Excl. Extension)|N" "info-insert buffer name-noext"
|
2018-08-18 12:30:24 +00:00
|
|
|
OptItem "Version Control Revision|V" "info-insert vcs revision"
|
2018-08-07 12:57:44 +00:00
|
|
|
Item "User Name|U" "info-insert lyxrc user_name"
|
|
|
|
Item "User Email|E" "info-insert lyxrc user_email"
|
2018-08-07 10:14:45 +00:00
|
|
|
Separator
|
2018-08-06 18:07:15 +00:00
|
|
|
Item "Other...|O" "info-insert"
|
2018-08-05 07:51:12 +00:00
|
|
|
End
|
|
|
|
|
2015-11-02 19:52:21 +00:00
|
|
|
Menu "insert_logos"
|
|
|
|
Item "LyX Logo|L" "specialchar-insert lyx"
|
|
|
|
Item "TeX Logo|T" "specialchar-insert tex"
|
|
|
|
Item "LaTeX Logo|a" "specialchar-insert latex"
|
|
|
|
Item "LaTeX2e Logo|e" "specialchar-insert latex2e"
|
2003-07-29 17:44:44 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
Menu "insert_formatting"
|
2010-11-23 20:09:08 +00:00
|
|
|
Item "Superscript|S" "script-insert superscript"
|
|
|
|
Item "Subscript|u" "script-insert subscript"
|
2003-07-29 17:44:44 +00:00
|
|
|
Separator
|
2022-10-26 08:52:21 +00:00
|
|
|
Item "Normal Space|e" "space-insert normal"
|
|
|
|
Item "Non-breaking Normal Space|p" "space-insert protected"
|
|
|
|
Item "Non-breaking Thin Space|T" "space-insert thin"
|
2011-08-27 10:45:59 +00:00
|
|
|
Item "Horizontal Space...|o" "command-alternatives dialog-show-new-inset space;dialog-show-new-inset mathspace"
|
2010-09-12 07:01:24 +00:00
|
|
|
Item "Horizontal Line...|L" "dialog-show-new-inset line"
|
2006-11-07 21:38:02 +00:00
|
|
|
Item "Vertical Space...|V" "dialog-show-new-inset vspace"
|
2010-11-17 15:35:36 +00:00
|
|
|
Submenu "Phantom|m" "insert_phantom"
|
2003-07-29 17:44:44 +00:00
|
|
|
Separator
|
2008-03-21 16:02:08 +00:00
|
|
|
Item "Hyphenation Point|H" "specialchar-insert hyphenation"
|
2007-12-06 11:04:56 +00:00
|
|
|
Item "Ligature Break|k" "specialchar-insert ligature-break"
|
2017-03-06 13:49:30 +00:00
|
|
|
Item "Optional Line Break|B" "specialchar-insert allowbreak"
|
2008-03-26 08:10:01 +00:00
|
|
|
Item "Ragged Line Break|R" "newline-insert newline"
|
|
|
|
Item "Justified Line Break|J" "newline-insert linebreak"
|
2006-11-25 17:03:30 +00:00
|
|
|
Separator
|
2008-03-25 09:26:03 +00:00
|
|
|
Item "New Page|N" "newpage-insert newpage"
|
|
|
|
Item "Page Break|a" "newpage-insert pagebreak"
|
2023-06-14 00:12:44 +00:00
|
|
|
Item "Prevent Page Break|g" "newpage-insert nopagebreak"
|
2008-03-25 09:26:03 +00:00
|
|
|
Item "Clear Page|C" "newpage-insert clearpage"
|
|
|
|
Item "Clear Double Page|D" "newpage-insert cleardoublepage"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert_math"
|
2010-12-04 16:43:41 +00:00
|
|
|
# Always use "math-mode on" instead of "math-display" etc. because this disables the commands in math mode
|
|
|
|
Item "Inline Formula|I" "math-mode on"
|
|
|
|
Item "Display Formula|D" "command-sequence math-mode on; math-mutate equation"
|
2010-12-03 02:55:52 +00:00
|
|
|
Item "Numbered Formula|N" "command-sequence math-mode on; math-mutate equation; math-number-toggle;"
|
2004-11-07 09:39:34 +00:00
|
|
|
Item "Eqnarray Environment|E" "command-sequence math-mode on; math-mutate eqnarray;"
|
2009-06-29 06:27:12 +00:00
|
|
|
Item "AMS align Environment|a" "command-sequence math-mode on; math-mutate align;"
|
|
|
|
Item "AMS alignat Environment|t" "command-sequence math-mode on; math-mutate alignat;"
|
|
|
|
Item "AMS flalign Environment|f" "command-sequence math-mode on; math-mutate flalign;"
|
|
|
|
Item "AMS gather Environment|g" "command-sequence math-mode on; math-mutate gather;"
|
|
|
|
Item "AMS multline Environment|m" "command-sequence math-mode on; math-mutate multline;"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2010-12-04 16:43:41 +00:00
|
|
|
# "math-matrix" and "math-insert" create an inline formula first if called from text mode
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Array Environment|y" "math-matrix 2 2"
|
2010-12-04 16:43:41 +00:00
|
|
|
Item "Cases Environment|C" "math-insert \cases"
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Aligned Environment|l" "command-sequence math-insert \aligned; tabular-feature append-column"
|
|
|
|
Item "AlignedAt Environment|v" "command-sequence math-insert \alignedat; tabular-feature append-column"
|
2010-12-04 16:43:41 +00:00
|
|
|
Item "Gathered Environment|h" "math-insert \gathered"
|
2016-01-27 17:22:32 +00:00
|
|
|
Item "Split Environment|S" "command-sequence math-insert \split; tabular-feature append-column"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2008-06-15 09:23:23 +00:00
|
|
|
Item "Delimiters...|r" "dialog-show mathdelimiter"
|
|
|
|
Item "Matrix...|x" "dialog-show mathmatrix"
|
2007-11-01 11:08:04 +00:00
|
|
|
Item "Macro|o" "math-macro newmacroname newcommand"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert_float"
|
|
|
|
FloatInsert
|
2003-04-15 02:30:53 +00:00
|
|
|
# This has got to be better than "Wrap", anyway
|
2022-11-24 16:14:31 +00:00
|
|
|
Item "Wrapped Figure|F" "wrap-insert figure"
|
|
|
|
Item "Wrapped Table|T" "wrap-insert table"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert_toc"
|
2010-09-12 07:56:08 +00:00
|
|
|
Item "Table of Contents|C" "inset-insert toc"
|
2003-05-16 12:53:20 +00:00
|
|
|
FloatListInsert
|
2009-04-16 07:29:01 +00:00
|
|
|
IndicesLists
|
2012-04-16 19:40:59 +00:00
|
|
|
Item "List of Listings|L" "inset-insert toc CommandInset toc LatexCommand lstlistoflistings \end_inset"
|
2007-04-29 22:21:00 +00:00
|
|
|
Item "Nomenclature|N" "nomencl-print"
|
2017-01-02 11:00:56 +00:00
|
|
|
Item "Bib(la)TeX Bibliography...|B" "dialog-show-new-inset bibtex"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "insert_file"
|
|
|
|
Item "LyX Document...|X" "file-insert"
|
2007-01-18 07:23:58 +00:00
|
|
|
Item "Plain Text...|T" "file-insert-plaintext"
|
|
|
|
Item "Plain Text, Join Lines...|J" "file-insert-plaintext-para"
|
2003-07-29 17:44:44 +00:00
|
|
|
Separator
|
2005-05-22 23:01:21 +00:00
|
|
|
Item "External Material...|M" "dialog-show-new-inset external"
|
2003-07-29 17:44:44 +00:00
|
|
|
Item "Child Document...|d" "dialog-show-new-inset include"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2010-12-09 13:01:59 +00:00
|
|
|
Menu "insert_box"
|
|
|
|
Item "Frameless|l" "box-insert Frameless"
|
|
|
|
Item "Simple Frame|F" "box-insert Boxed"
|
|
|
|
Item "Oval, Thin|a" "box-insert ovalbox"
|
|
|
|
Item "Oval, Thick|v" "box-insert Ovalbox"
|
|
|
|
Item "Drop Shadow|w" "box-insert Shadowbox"
|
|
|
|
Item "Shaded Background|B" "box-insert Shaded"
|
|
|
|
Item "Double Frame|u" "box-insert Doublebox"
|
|
|
|
End
|
|
|
|
|
2022-04-19 09:46:08 +00:00
|
|
|
Menu "index_properties"
|
2022-10-31 05:51:38 +00:00
|
|
|
OptItem "Subentry|b" "indexmacro-insert subentry"
|
2022-04-19 09:46:08 +00:00
|
|
|
OptItem "Sortkey|k" "indexmacro-insert sortkey"
|
|
|
|
OptItem "See|e" "indexmacro-insert see"
|
|
|
|
OptItem "See also|a" "indexmacro-insert seealso"
|
|
|
|
End
|
|
|
|
|
2003-07-30 11:39:36 +00:00
|
|
|
Menu "insert_note"
|
2003-07-30 13:08:12 +00:00
|
|
|
Item "LyX Note|N" "note-insert Note"
|
|
|
|
Item "Comment|C" "note-insert Comment"
|
2024-08-06 18:50:29 +00:00
|
|
|
Item "Greyed Out|G" "note-insert Greyedout"
|
2003-07-30 11:39:36 +00:00
|
|
|
End
|
|
|
|
|
2006-09-06 11:33:06 +00:00
|
|
|
Menu "insert_branches"
|
2003-08-17 11:28:23 +00:00
|
|
|
Branches
|
2009-07-11 09:38:31 +00:00
|
|
|
Separator
|
|
|
|
Item "Insert New Branch...|I" "branch-add-insert"
|
2003-08-17 11:28:23 +00:00
|
|
|
End
|
2015-02-26 19:43:05 +00:00
|
|
|
|
2009-01-30 00:56:37 +00:00
|
|
|
Menu "insert_phantom"
|
2010-11-16 19:43:32 +00:00
|
|
|
Item "Phantom|P" "phantom-insert Phantom"
|
|
|
|
Item "Horizontal Phantom|H" "phantom-insert HPhantom"
|
|
|
|
Item "Vertical Phantom|V" "phantom-insert VPhantom"
|
2009-01-30 00:56:37 +00:00
|
|
|
End
|
2003-11-12 14:38:26 +00:00
|
|
|
|
2007-08-24 12:45:40 +00:00
|
|
|
Menu "insert_custom"
|
|
|
|
Custom
|
|
|
|
End
|
|
|
|
|
2003-04-15 02:30:53 +00:00
|
|
|
#
|
|
|
|
# DOCUMENT MENU
|
|
|
|
#
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "document"
|
2022-11-25 02:15:50 +00:00
|
|
|
OptItem "Cancel Export|P" "export-cancel"
|
2019-05-28 04:23:32 +00:00
|
|
|
Separator
|
2006-09-06 11:33:06 +00:00
|
|
|
Submenu "Change Tracking|C" "document_change"
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "Build Program|B" "build-program"
|
2005-05-22 23:01:21 +00:00
|
|
|
Item "LaTeX Log|L" "dialog-show latexlog"
|
2015-05-25 08:50:57 +00:00
|
|
|
Item "Start Appendix Here|x" "appendix"
|
2003-05-24 15:06:22 +00:00
|
|
|
Separator
|
2012-10-13 18:34:16 +00:00
|
|
|
ViewFormats
|
|
|
|
UpdateFormats
|
|
|
|
OptItem "View Master Document|M" "master-buffer-view"
|
|
|
|
OptItem "Update Master Document|a" "master-buffer-update"
|
|
|
|
Separator
|
2015-05-25 08:50:57 +00:00
|
|
|
Item "Compressed|o" "buffer-toggle-compression"
|
2015-05-14 18:53:47 +00:00
|
|
|
Item "Disable Editing|E" "buffer-toggle-read-only"
|
2003-06-19 16:49:45 +00:00
|
|
|
Item "Settings...|S" "dialog-show document"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2006-09-06 11:33:06 +00:00
|
|
|
Menu "document_change"
|
2006-05-08 18:09:19 +00:00
|
|
|
Item "Track Changes|T" "changes-track"
|
|
|
|
Item "Merge Changes...|M" "changes-merge"
|
2006-08-30 19:06:12 +00:00
|
|
|
Item "Accept Change|A" "change-accept"
|
|
|
|
Item "Reject Change|R" "change-reject"
|
|
|
|
Item "Accept All Changes|c" "all-changes-accept"
|
|
|
|
Item "Reject All Changes|e" "all-changes-reject"
|
2023-02-18 11:19:56 +00:00
|
|
|
Item "Accept All Changes (incl. relatives)|p" "ifrelatives master-buffer-forall all-changes-accept"
|
|
|
|
Item "Reject All Changes (incl. relatives)|j" "ifrelatives master-buffer-forall all-changes-reject"
|
2006-05-08 18:09:19 +00:00
|
|
|
Item "Show Changes in Output|S" "changes-output"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# NAVIGATE MENU
|
|
|
|
#
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "navigate"
|
|
|
|
Submenu "Bookmarks|B" "navigate_bookmarks"
|
2005-03-30 17:33:32 +00:00
|
|
|
Item "Next Note|N" "note-next"
|
2006-10-04 21:43:40 +00:00
|
|
|
Item "Next Change|C" "change-next"
|
2006-11-07 20:23:54 +00:00
|
|
|
Item "Next Cross-Reference|R" "reference-next"
|
2009-04-27 07:39:37 +00:00
|
|
|
OptItem "Go to Label|L" "label-goto"
|
2012-05-07 19:25:44 +00:00
|
|
|
Item "Forward Search|F" "forward-search"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
|
|
|
Toc
|
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "navigate_bookmarks"
|
2007-03-29 03:41:55 +00:00
|
|
|
Item "Save Bookmark 1|S" "bookmark-save 1"
|
|
|
|
Item "Save Bookmark 2" "bookmark-save 2"
|
|
|
|
Item "Save Bookmark 3" "bookmark-save 3"
|
|
|
|
Item "Save Bookmark 4" "bookmark-save 4"
|
|
|
|
Item "Save Bookmark 5" "bookmark-save 5"
|
2006-11-01 15:55:17 +00:00
|
|
|
Item "Clear Bookmarks|C" "bookmark-clear"
|
|
|
|
Separator
|
2009-04-22 17:09:37 +00:00
|
|
|
Item "Navigate Back|B" "bookmark-goto 0"
|
2006-11-01 15:55:17 +00:00
|
|
|
Bookmarks
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# TOOLS MENU
|
|
|
|
#
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "tools"
|
2003-06-19 16:49:45 +00:00
|
|
|
Item "Spellchecker...|S" "dialog-show spellchecker"
|
2003-05-16 12:53:20 +00:00
|
|
|
OptItem "Thesaurus...|T" "thesaurus-entry"
|
2008-01-08 15:18:00 +00:00
|
|
|
Item "Statistics...|a" "statistics"
|
2018-02-10 17:18:43 +00:00
|
|
|
Item "Check TeX|h" "buffer-chktex"
|
2005-05-22 23:01:21 +00:00
|
|
|
Item "TeX Information|I" "dialog-show texinfo"
|
2009-10-24 15:47:05 +00:00
|
|
|
Item "Compare...|C" "dialog-show compare"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2003-04-15 02:30:53 +00:00
|
|
|
# A LOT of applications have Tools->Prefs. Remember this
|
|
|
|
# should be rarely used - Edit menu is not a good place to
|
|
|
|
# have it.
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Reconfigure|R" "reconfigure"
|
2004-03-31 18:51:11 +00:00
|
|
|
Item "Preferences...|P" "dialog-show prefs"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-10-13 09:50:10 +00:00
|
|
|
|
2003-04-15 02:30:53 +00:00
|
|
|
#
|
|
|
|
# HELP MENU
|
|
|
|
#
|
2003-05-16 12:53:20 +00:00
|
|
|
Menu "help"
|
|
|
|
Item "Introduction|I" "help-open Intro"
|
|
|
|
Item "Tutorial|T" "help-open Tutorial"
|
|
|
|
Item "User's Guide|U" "help-open UserGuide"
|
2009-08-19 09:14:23 +00:00
|
|
|
Item "Additional Features|F" "help-open Additional"
|
2008-08-09 17:01:20 +00:00
|
|
|
Item "Embedded Objects|O" "help-open EmbeddedObjects"
|
|
|
|
Item "Math|M" "help-open Math"
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "Customization|C" "help-open Customization"
|
2007-10-11 15:55:31 +00:00
|
|
|
Item "Shortcuts|S" "help-open Shortcuts"
|
2008-08-01 15:04:22 +00:00
|
|
|
Item "LyX Functions|y" "help-open LFUNs"
|
2003-05-16 12:53:20 +00:00
|
|
|
Item "LaTeX Configuration|L" "help-open LaTeXConfig"
|
2008-10-23 10:28:03 +00:00
|
|
|
Submenu "Specific Manuals|p" "examples"
|
2003-05-16 12:53:20 +00:00
|
|
|
Separator
|
2005-05-22 23:01:21 +00:00
|
|
|
Item "About LyX|X" "dialog-show aboutlyx"
|
2003-05-16 12:53:20 +00:00
|
|
|
End
|
2003-04-15 02:30:53 +00:00
|
|
|
|
2008-10-23 10:28:03 +00:00
|
|
|
Menu "examples"
|
2019-03-29 13:52:39 +00:00
|
|
|
Item "Beamer Presentations|B" "help-open Presentations/Beamer"
|
|
|
|
Item "Braille|a" "help-open Modules/Braille"
|
|
|
|
Item "Colored boxes|r" "help-open Modules/Fancy_Colored_Boxes"
|
|
|
|
Item "Feynman-diagram|F" "help-open Graphics_and_Insets/Feynman_Diagrams"
|
|
|
|
Item "Knitr|K" "help-open Modules/Rnw_%28knitr%29"
|
|
|
|
Item "LilyPond|P" "help-open Modules/LilyPond_Book"
|
|
|
|
Item "Linguistics|L" "help-open Modules/Linguistics"
|
|
|
|
Item "Multilingual Captions|C" "help-open Modules/Multilingual_Captions"
|
|
|
|
Item "Paralist|t" "help-open Modules/Paragraph_Lists_%28paralist%29"
|
|
|
|
Item "PDF comments|D" "help-open Modules/PDF_Comments"
|
|
|
|
Item "PDF forms|o" "help-open Modules/PDF_Form"
|
|
|
|
Item "Hazard and Precautionary Statements|H" "help-open Modules/Hazard_and_Precautionary_Statements"
|
|
|
|
Item "Sweave|S" "help-open Modules/Sweave"
|
|
|
|
Item "XY-pic|X" "help-open Graphics_and_Insets/XY-Pic"
|
2008-10-23 10:28:03 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
|
2003-04-15 02:30:53 +00:00
|
|
|
End
|
2008-03-25 16:02:26 +00:00
|
|
|
|