home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Demos / DE_FrameMaker / FrameMaker.app / fminit2.0 / english / kbmap < prev    next >
Text File  |  1992-08-24  |  67KB  |  2,375 lines

  1. Frame Maker Keyboard:Function Mappings - 26Sep89
  2.  
  3. ------------------------------------------------------------------------------
  4. 900829 sbs for FrameMaker 2.1
  5. Added NextStepEncoding -> maker mappings for the 8-bit characters.
  6.  
  7.     Various national keyboards deliver keys with different values for
  8.     the modifier bits.  For example, the Belgian ``azerty'' keyboard
  9.     requires that you type SHIFT-2 to enter the digit 2; other
  10.     keyboards require that you not use SHIFT.
  11.     In an attempt to avoid lots of support problems, FrameMaker now
  12.     discards the SHIFT bit for the purpose of key matching.  So,
  13.     SHIFT-2 and 2 are equivalent.  The SHIFT bit is only discarded
  14.     when matching printable characters, so SHIFT-CTRL-E and CTRL-E will
  15.     continue to be distinct.  However, a problem arises from the
  16.     definition of ``printable.''  If a new NextStep character is added,
  17.     a FrameMaker internal table must be modified to account for
  18.     this.  (This table could be computed from the keyboard map itself,
  19.     except that the table is used to generate the keyboard map!)
  20. ------------------------------------------------------------------------------
  21. For the NeXT keyboard the Alt mask means the symbol font encoding is
  22. on instead of the alternate mask being down, because the NeXT event
  23. handling has already processed the alternate key.
  24. ------------------------------------------------------------------------------
  25.  
  26. Mappings in this file define FrameMaker's keyboard mappings, documented in
  27. FrameMaker's written documentation.
  28.  
  29. Changing these mappings may cause you confusion when reading the manuals,
  30. and may confuse other users on your system.
  31. Therefore, change this file with care.
  32.  
  33. This file maps keyboard sequences to maker function sequences.
  34. Each mapping is surrounded by angle brackets and has the format shown
  35. below (the key sequence can be up to 15 key values in length, and the
  36. function sequence can contain up to 150 function values) Each mapping
  37. can span several lines. The layout used below is simply for readability.
  38.  
  39. Within each mapping the following characters are supported:
  40.     \!    means ascii escape (0x1b)
  41.     \s    means ascii space  (0x20)
  42.     \\    means ascii \       (0x5C)
  43.     \xhhh    means a hex number indicated by one or more hex digits,
  44.         terminated by a non-hex digit.
  45.         ex: \x12A means 0x12A.
  46.     \other    a `\` followed by any other character, including space,
  47.         means that character. (i.e. '\w' means 'w', '\:' means ':'
  48.     space    All space characters unless preceeded by `\` are ignored.
  49.     :    A colon (when not immediately following a '\') separates
  50.         the key sequence from the func. sequence
  51.     other    All other printing characters represent themselves.
  52.         Nonprinting characers (newline, tab, etc.) are ignored.
  53.  
  54.  
  55. Within the key sequence, individual keys are represented using
  56. either regular characters or hex values.  Hex values are used to represent
  57. key values AND the state of the SHIFT, ALT, and CONTROL keys.
  58. The key values are in the range 0x0..0xFF.  0x100 is added to the key value if
  59. either shift key is down.  0x200 is added for the control key.  And 0x400 is
  60. added for either alt key.  Due to keyboard variations, it is impossible to
  61. use a less general approach than this (for example, on a Sun-3, ^1 returns a
  62. keyvalue of 0x31, ^2 returns 0x0, ^6 returns 0x1E, and ^- returns 0x1F).
  63.  
  64. On the NeXT, a 0x800 is added to the keyvalue if the key pressed represents
  65. a symbol font character described in the keyboard mapping diagram of the
  66. standard font family, in Appendix D of the NeXT User Manual.
  67.  
  68. Sample key sequence string designations:
  69.     String    Meaning
  70.     ------    -----------------------------------------
  71.     a    the unshifted A key
  72.     A    the shifted A key (we can at least figure that out!)
  73.     1    the unshifted 1 key
  74.     !    the shifted 1 key
  75.     \x31    the unshifted 1 key represented another way
  76.     \x140    the shifted 2 key ('@') SHIFT + '@'
  77.     \x061    the unshifted a key
  78.     \x141    the shifted A key
  79.     \x201    the A key with the Control key held down
  80.     \x4e1    the A key with a Alt key held down
  81.     \x5c1    the A key with shift and Alt keys down
  82.     \x681    the A key with Control & Alt keys down
  83.     \x781    the A key with Shift, Control, & Alt keys down
  84.     \x8ac    the left arrow key down
  85.     \xcb8    the / key with the alt key held down.
  86.  
  87. Each mapping can have 3 scopes:
  88. \M means the key mapping is active only when a math expression
  89.     is selected (IP or highlighting).
  90. \? (or nothing) means the key mapping is active only when a math
  91.     expression is NOT selected.
  92. \A means the key mapping is active no matter what's selected.
  93.  
  94. Within the Function sequence, functions are represented by individual
  95. characters or by hex values.  The characters represent themselves ("a" means
  96. put an "a" character in the document).  Hex values below 0xFF also mean put
  97. this value in the document (use hex values below 0x20 with care!).  Maker
  98. functions, like "bring up the paragraph window" or "highlight the next word"
  99. are indicated by hex values greater than 0xFF.  Values for all maker functions
  100. available from the keyboard are listed in the file fm_commands.h.
  101.  
  102. Now, for the actual mappings.
  103.  
  104.  
  105. Key Name        Function name(s)
  106.     Key Codes        Function sequence
  107. ------------------------------------------
  108.  
  109. Character Format
  110. ----------------
  111. Esc c w            Display the Character Formats Catalog Window
  112.     <\A \!cw      : \xF24>
  113. Esc q c, Command-8, Ctrl-8    Quick key for Character Format Catalog
  114.     <\A \!qc      : \xF40>
  115.     <\A \x238        : \xF40>
  116.     <\A \x7b4     : \xF40>
  117. Esc c b, Command-2        Set characters to bold
  118.     <\A \!cb      : \x260>
  119.     <\A \x732   : \x260>
  120.     <\A \x762     : \x260>
  121. Esc c i, Command-3, Command-i        Set characters to italic
  122.     <\A \!ci      : \x261>
  123.     <\A \x733   : \x261>
  124.     <\A \x769   : \x261>
  125. Esc c u, Command-4        Set characters to underline
  126.     <\A \!cu      : \x262>
  127.     <\A \x734   : \x262>
  128. Esc c s, Command-5        Set characters to strike through
  129.     <\A \!cs         : \x26C>
  130.     <\A \x735   : \x26C>
  131. Esc c d, Command-1        Set characters to Default Pgf Font (plain in TextLines)
  132.     <\A \!cd      : \x26D>
  133.     <\A \x731   : \x26D>
  134. Esc c p            Set characters to plain
  135.     <\A \!cp      : \x263>
  136. Esc c o            Set characters to overline
  137.     <\A \!co      : \x26E>
  138. Esc c h            Set characters to change bar
  139.     <\A \!ch      : \x26F>
  140. Esc c k            Set characters to kerned
  141.     <\A \!ck      : \x270>
  142. Esc c +            Set characters to superscript
  143.     <\A \!c\x12b     : \x264>
  144. Esc c minus        Set characters to subscript
  145.     <\A \!c-      : \x265>
  146. Esc c 2            Set characters to double underline (NOT IMPL)
  147.     \A \!c2     : \x278
  148. Esc c 1            Set characters to numeric underline (NOT IMPL)
  149.     \A \!c1     : \x279
  150. Esc c =            Set characters to normal
  151.     <\A \!c=     : \x266>
  152. Esc c S            Set characters to small caps
  153.     <\A \!cS      : \x273>
  154. Esc c C            Set characters to initial caps
  155.     <\A \!cC      : \x274>
  156. Esc c U            Set characters to upper case
  157.     <\A \!cU      : \x275>
  158. Esc c L            Set characters to lower case
  159.     <\A \!cL      : \x276>
  160. Esc c A            Set characters to as-typed case
  161.     <\A \!cA      : \x277>
  162. Esc c =            Set characters to normal
  163.     <\A \!c=      : \x266>
  164. Esc c ], Esc + s    Increment text size 1 pt.
  165.     <\A \!c]      : \x267>
  166.     <\A \!\x12b s : \x267>
  167. Esc c [, Esc minus s    Decrement text size 1pt.
  168.     <\A \!c[      : \x268>
  169.     <\A \!-s      : \x268>
  170. Esc cl     Squeeze spacing 20% of an em
  171.     <\A \!cl      : \x269>
  172. Esc cr    Spread spacing 20% of an em
  173.     <\A \!cr      : \x26A>
  174. Esc c c            Repeat last font-related command
  175.     <\A \!cc         : \x26B>
  176.  
  177. Deletion
  178. --------
  179. Delete, Backspace    Delete back one character
  180. Ctrl-d                Delete forward one character
  181. Alt-Delete&Alt-Backspace
  182.                     Delete back to start of word
  183. Alt-d                Delete forward to end of word
  184. Ctrl-k                Delete forward to end of line
  185. Alt-k                Delete forward to end of sentence
  186. Ctrl-u                Delete backward from insertion point to start of line
  187.     (above commands built in)
  188. Shift Delete : Same as Delete key
  189.     <\A \x108    : \x112>
  190.  
  191. Esc k b             Delete backward to previous word start
  192.     <\A \!kb    : \x160>
  193. Esc k f             Delete forward to next word end
  194.     <\A \!kf    : \x161>
  195. Esc k s             Delete forward to next sentence start
  196.     <\A \!ks    : \x162>
  197. Esc k a             Delete backward to previous sentence end
  198.     <\A \!ka    : \x163>
  199.  
  200. Diacritics
  201. ----------
  202. The pattern is: Esc mod char
  203.     where: Esc is the Escape key, mod is one of ' ~ ` % ^ * or ,
  204.     and char is a character, typically a vowel.
  205.  
  206. The mod keys represent diacritics:
  207.     ' = acute       ~ = tilde       ` = grave
  208.     % = dieresis    ^ = circumflex  * = ring
  209.     , = cedilla
  210.  
  211. acute aeiou
  212. <\!'a : \x87> <\!'e : \x8e> <\!'i : \x92> <\!'o : \x97> <\!'u : \x9c>
  213. <\!'A : \xe7> <\!'E : \x83> <\!'I : \xea> <\!'O : \xee> <\!'U : \xf2>
  214.  
  215. next
  216. <\x4C2 a: \x87> <\x4C2 e: \x8e> <\x4C2 i: \x92> <\x4C2 o: \x97> <\x4C2 u: \x9c>
  217. <\x4C2 A: \xe7> <\x4C2 E: \x83> <\x4C2 I: \xea> <\x4C2 O: \xee> <\x4C2 U: \xf2>
  218.  
  219. tilde ano
  220. <\!~a : \x8b> <\!~n : \x96> <\!~o : \x9b>
  221. <\!~A : \xcc> <\!~N : \x84> <\!~O : \xcd>
  222.  
  223. next
  224. <\x4C4 a: \x8b> <\x4C4 n: \x96> <\x4C4 o: \x9b>
  225. <\x4C4 A: \xcc> <\x4C4 N: \x84> <\x4C4 O: \xcd>
  226.  
  227. grave aeiou
  228. <\!`a : \x88> <\!`e : \x8f> <\!`i : \x93> <\!`o : \x98> <\!`u : \x9d>
  229. <\!`A : \xcb> <\!`E : \xe9> <\!`I : \xed> <\!`O : \xf1> <\!`U : \xf4>
  230.  
  231. next
  232. <\x4C1 a: \x88> <\x4C1 e: \x8f> <\x4C1 i: \x93> <\x4C1 o: \x98> <\x4C1 u: \x9d>
  233. <\x4C1 A: \xcb> <\x4C1 E: \xe9> <\x4C1 I: \xed> <\x4C1 O: \xf1> <\x4C1 U: \xf4>
  234.  
  235. dieresis aeiouy
  236. <\!%a : \x8a> <\!%e : \x91> <\!%i : \x95> <\!%o : \x9a> <\!%u : \x9f>
  237. <\!%y : \xd8>
  238. <\!%A : \x80> <\!%E : \xe8> <\!%I : \xec> <\!%O : \x85> <\!%U : \x86>
  239. <\!%Y : \xd9>
  240.  
  241. next
  242. <\x4C8 a: \x8a> <\x4C8 e: \x91> <\x4C8 i: \x95> <\x4C8 o: \x9a> <\x4C8 u: \x9f>
  243. <\x4C8 y: \xd8>
  244. <\x4C8 A: \x80> <\x4C8 E: \xe8> <\x4C8 I: \xec> <\x4C8 O: \x85> <\x4C8 U: \x86>
  245. <\x4C8 Y: \xd9>
  246.  
  247. circumflex aeiou
  248. <\!^a : \x89> <\!^e : \x90> <\!^i : \x94> <\!^o : \x99> <\!^u : \x9e>
  249. <\!^A : \xe5> <\!^E : \xe6> <\!^I : \xeb> <\!^O : \xef> <\!^U : \xf3>
  250.  
  251. next
  252. <\x5C3 a: \x89> <\x5C3 e: \x90> <\x5C3 i: \x94> <\x5C3 o: \x99> <\x5C3 u: \x9e>
  253. <\x5C3 A: \xe5> <\x5C3 E: \xe6> <\x5C3 I: \xeb> <\x5C3 O: \xef> <\x5C3 U: \xf3>
  254.  
  255. ring a
  256. <\!*A : \x81> <\!*a : \x8c>
  257.  
  258. next
  259. <\x4CA A: \x81> <\x4CA a: \x8c>
  260.  
  261. cedilla c
  262. <\!,C : \x82> <\!,c : \x8d>
  263.  
  264. next
  265. <\x4CB C : \x82> <\x4CB c : \x8d>
  266.  
  267. Edit Menu
  268. ---------
  269. Esc e u, Command-Z Undo
  270.     <\A \!eu    : \x320>
  271. Ctrl-w, Esc e x, Command-x        Cut
  272.     <\A \x217   : \x321>
  273.     <\A \!ex    : \x321>
  274. Esc e c, Command-c                Copy
  275.     <\A \!ec    : \x322>
  276. Ctrl-y, Esc e p, Command-v        Paste
  277.     <\A \x219   : \x323>
  278.     <\A \!ep    : \x323>
  279. Esc e b            Clear
  280.     <\A \!eb    : \x324>
  281. Esc e f            Copy Char Format
  282.     <\A \!ef    : \x325>
  283. Esc e r            Copy Pgf Format (restore 1.3 mapping- note
  284.                                  change to menu string)
  285.     <\A \!er    : \x326>
  286. Esc e w            copy column Width
  287.     <\A \!ew   : \xF9C>
  288. Esc e D            copy conDition setting
  289.     <\A \!eD   : \xF9D>
  290. Esc e a            Select all
  291.     <\A \!ea    : \x327>
  292. Ctrl-s, Esc e s, Command-f        Search
  293.     <\A \x213   : \x329>
  294.     <\A \!es    : \x329>
  295. Esc e l            Spelling Checker
  296.     <\A \!el    : \x32A>
  297. Esc e C            Capitalization
  298.     <\A \!eC    : \x32B>
  299.  
  300. File Menu
  301. ---------
  302. Esc d n            New
  303.     <\A \!dn         : \x300>
  304. Esc d o            Open
  305.     <\A \!do         : \x301>
  306. Esc d s, Ctrl-x Ctrl-s    Save
  307.     <\A \!ds         : \x310>
  308.     <\A \x218 \x213    : \x310>
  309. Esc d a, Ctrl-x Ctrl-w    Save As
  310.     <\A \!da         : \x311>
  311.     <\A \x218 \x217    : \x311>
  312. Esc d r            Revert
  313.     <\A \!dr         : \x312>
  314. Esc d p            Print
  315.     <\A \!dp         : \x313>
  316. Esc d i            Import
  317.     <\A \!di         : \x314>
  318. Esc d g            Generate
  319.     <\A \!dg         : \x315>
  320. Esc d u            Use Formats From
  321.     <\A \!du         : \x316>
  322. Esc d k            Keyboard
  323.     <\A \!dk         : \x317>
  324. Esc d c            Capture
  325.     <\A \!dc         : \x256>
  326. Esc d P            Preferences
  327.     <\A \!dP         : \x318>
  328. Esc d q            Quit
  329.     <\A \!dq         : \x399>
  330. Esc d O            Open All
  331.     <\A \!dO         : \x31A>
  332. Esc d Q            Quit All
  333.     <\A \!dQ         : \x31B>
  334. Esc d S            Save All
  335.     <\A \!dS         : \x31C>
  336. Esc d f            Add file to book
  337.     <\A \!df         : \x30A>
  338. Esc d d            File Setup (book)
  339.     <\A \!dd         : \x30B>
  340. Esc d e            Rearrange Files (book)
  341.     <\A \!de         : \x30C>
  342. Ctrl-]            Start/Stop recording keys
  343.     (Built-in)
  344. Esc F l k        Lock Doc
  345.     <\A \!Flk         : \xf00>
  346.  
  347. Fill Pattern
  348. ------------
  349. Esc zero f        Set to first fill pattern (black)
  350.     <\A \!0f            : \x3B4>
  351. Esc 9 f            Set to last fill pattern (stripes)
  352.     <\A \!9f            : \x3B5>
  353. Esc + f            Increment fill pattern
  354.     <\A \!\x12b f    : \x3B6>
  355. Esc minus f        Decrement fill pattern
  356.     <\A \!-f         : \x3B7>
  357.  
  358. Format Menu
  359. -----------
  360. Esc f c            Character
  361.     <\A \!fc         : \x330>
  362. Esc f p,         Paragraphs
  363.     <\A \!fp         : \x331>
  364. Esc f l            Flow
  365.     <\A \!fl         : \x332>
  366. Esc f d            Document
  367.     <\A \!fd         : \x333>
  368. Esc f b            Change Bars
  369.     <\A \!fb         : \x334>
  370. Esc f n            Footnote Properties
  371.     <\A \!fn         : \x335>
  372. Esc f e            Equations
  373.     <\A \!fe         : \x336>
  374.  
  375. Graphics Menu
  376. -------------
  377. Esc g g            Group
  378.     <\A \!gg         : \x382>
  379. Esc g u            Ungroup
  380.     <\A \!gu         : \x383>
  381. Esc g f            Front
  382.     <\A \!gf         : \x380>
  383. Esc g b            Back
  384.     <\A \!gb         : \x381>
  385. Esc g a            Align
  386.     <\A \!ga         : \x384>
  387. Esc g d            Distribute
  388.     <\A \!gd         : \x385>
  389. Esc g r            Reshape
  390.     <\A \!gr         : \x376>
  391. Esc g s            Smooth
  392.     <\A \!gs         : \x374>
  393. Esc g m            Unsmooth
  394.     <\A \!gm         : \x375>
  395. Esc g v            Flip U/D
  396.     <\A \!gv         : \x370>
  397. Esc g h            Flip L/R
  398.     <\A \!gh         : \x371>
  399. Esc g t            Rotate
  400.     <\A \!gt         : \x372>
  401. Esc g T            Rotate Clockwise
  402.     <\A \!gT         : \x386>
  403. Esc g z            Scale
  404.     <\A \!gz         : \x373>
  405. Esc g n            Set # Sides
  406.     <\A \!gn         : \x378>
  407. Esc g o            Properties (Object)
  408.     <\A \!go         : \x387>
  409. Esc g O            Pick up properties (Object)
  410.     <\A \!gO         : \x388>
  411. Esc g y            Gravity Toggle
  412.     <\A \!gy         : \x37b>
  413. Esc g p            Snap Toggle
  414.     <\A \!gp         : \x37A>
  415.  
  416. Highlighting
  417. ------------
  418. Esc h c            Select current character, then next one
  419.     <\A \!hc         : \x240>
  420. Esc h w            Select current word, then next one
  421.     <\A \!hw         : \x241>
  422. Esc h l            Select current line, then next one
  423.     <\A \!hl         : \x242>
  424. Esc h s            Select current sentence, then next one
  425.     <\A \!hs         : \x243>
  426. Esc h p            Select current paragraph, then next one
  427.     <\A \!hp         : \x244>
  428. Esc h b            Shift selection left 1 character
  429.     <\A \!hb         : \x245>
  430. Esc h f            Shift selection right 1 character
  431.     <\A \!hf         : \x246>
  432. Esc h zero        Unhighlight
  433.     <\A \!h0         : \x247 >
  434.  
  435. Esc H C             Extend one character to the left
  436.     <\A \!HC    : \x410>
  437. Esc H W             Select current word, then extend to previous one
  438.     <\A \!HW    : \x411>
  439. Esc H L             Select current line, then extend to previous one
  440.     <\A \!HL    : \x412>
  441. Esc H S             Select current sentence, then extend to previous one
  442.     <\A \!HS    : \x413>
  443. Esc H P             Select current paragraph, then extend to previous one
  444.     <\A \!HP    : \x414>
  445.  
  446. Esc h u             Extend one line up
  447.     <\A \!hu    : \x415>
  448. Esc h d             Extend one line down
  449.     <\A \!hd    : \x416>
  450. Esc h t             Extend to top of column
  451.     <\A \!ht    : \x417>
  452. Esc h m             Extend to bottom of column
  453.     <\A \!hm    : \x418>
  454. Esc h g             Extend to beginning of flow
  455.     <\A \!hg    : \x419>
  456. Esc h e             Extend to end of flow
  457.     <\A \!he    : \x41A>
  458.  
  459. Esc H c             Extend one character to the right
  460.     <\A \!Hc    : \x510>
  461. Esc H w             Select current word, then extend to next one
  462.     <\A \!Hw    : \x511>
  463. Esc H l             Select current line, then extend to next one
  464.     <\A \!Hl    : \x512>
  465. Esc H s             Select current sentence, then extend to next one
  466.     <\A \!Hs    : \x513>
  467. Esc H p             Select current paragraph, then extend to next one
  468.     <\A \!Hp    : \x514>
  469. Esc h F                Select text with the same character format
  470.     <\A \!hF    : \x515>
  471. Esc h C                Select text with the same condition tags
  472.     <\A \!hC    : \x516>
  473.  
  474. Object Selection
  475. ----------------
  476. Esc o f             Select first object on current page
  477.     <\A \!of    : \x600>
  478. Esc o n             Select next object on current page
  479.     <\A \!on    : \x601>
  480. Esc o e             Extend object selection to next object on current page
  481.     <\A \!oe    : \x602>
  482.  
  483. Insertion Point
  484. ---------------
  485. cntrl-alt-t             Top of Column
  486.     <\A \x614     : \x100>
  487. Ctrl-p        Up 1 line
  488.      \A \x4ad         : \x101
  489.     <\A \x8ad         : \x101>
  490. Ctrl-n        Down 1 line
  491.      \A \x4af         : \x102
  492.     <\A \x8af         : \x102>
  493. Ctrl-f        Right 1 character
  494.      \A \x4ae         : \x103
  495.     <\A \x8ae         : \x103>
  496. Ctrl-b        Left 1 character
  497.      \A \x4ac         : \x104
  498.     <\A \x8ac         : \x104>
  499.  
  500. Ctrl-a            Beginning of line
  501. Ctrl-e            End of line
  502. Alt-b            Beginning of word
  503. Alt-f            End of word
  504. Alt-a            Beginning of sentence
  505. Alt-e            End of sentence
  506. Alt-[            Beginning of paragraph
  507. Alt-]            End of paragraph
  508. Ctrl-alt-{        Beginning of flow (\x10F)
  509.     (built in)
  510.  
  511. shift-cntrl-alt-t        Bottom of Column
  512.     <\A \x714 : \x10E >
  513.  
  514. Ctrl-alt-}        End of flow
  515.     <\A \x71d : \x110 \x106 >
  516.  
  517. Esc b w             Forward ip to next word start
  518.     <\A \!bw    : \x140>
  519. Esc b s             Forward ip to next sentence start
  520.     <\A \!bs    : \x141>
  521. Esc b p             Forward ip to next paragraph start
  522.     <\A \!bp    : \x142>
  523. Esc b f             First text column on current page
  524.     <\A \!bf    : \x143>
  525. Esc b n             Next text column on current page
  526.     <\A \!bn    : \x144>
  527.  
  528.  
  529. Line Width
  530. ----------
  531. Esc zero w        Set to thinnest width
  532.     <\A \!0w             : \x3AC>
  533. Esc 9 w            Set to thickest width
  534.     <\A \!9w             : \x3AD>
  535. Esc + w            Increment line width
  536.     <\A \!\x12b w    : \x3AE>
  537. Esc minus w        Decrement line width
  538.     <\A \!-w             : \x3AF>
  539.  
  540. Main Window
  541. -----------
  542. Esc d n            New
  543.     <\A \!dn             : \x300>
  544. Ctrl-x Ctrl-f, Esc d o    Open
  545.     <\A \x218 \x206     : \x301>
  546.     <\A \!do             : \x301>
  547. Alt-? ,  Esc d h    Help
  548.      \A \x5bf             : \x302     XXX now using this for questiondown
  549.     <\A \!dh             : \x302>
  550. Esc d I            Info
  551.     <\A \!dI             : \x303>
  552.  
  553. Miscellaneous
  554. -------------
  555. Esc Alt-8        Set all items to No Change in dialog
  556.     <\A \! \x738     : \xF4A>
  557. Esc Alt-9        Reset dialog
  558.     <\A \! \x739     : \xF4B>
  559. Ctrl-o            Open line (same as Return R10 )
  560.     <\A \x20f     : \x0a \x104>
  561. Ctrl-t            Transpose characters
  562.     <\A \x214         : \x224>
  563. Esc space h, Alt-space    Nonbreaking space (not word delimiter)
  564.     <\A \!\ h         : \x228>
  565.     <\A \x480         : \x228>
  566. Esc space 1        Number space
  567.     <\A \!\ 1         : \x22A>
  568. Esc space t        Thin space
  569.     <\A \!\ t         : \x22B>
  570. Esc space m        Em space
  571.     <\A \!\ m         : \x22C>
  572. Esc space n        En space
  573.     <\A \!\ n         : \x22D>
  574. Esc hyphen h, Nonbreaking hyphen (not word delimiter)
  575.     <\A \!-h         : \x227>
  576. Esc hyphen d, Ctrl-hyphen    Discretionary hyphen
  577.     <\A \!-d         : \x225>
  578.     <\A \x21f         : \x225>
  579. Esc n s,      No hyphenation in word
  580.     <\A \!ns         : \x226>
  581. Alt Return , Enter , Command Hard Return
  582.     <\A \x40d      : \x229>
  583.     <\A \x003      : \x229>
  584.     <\A \x703      : \x229>
  585.  
  586. ctrl ' (apostrophe)      ASCII apostrophe
  587.     <\A \x227        : \x27>
  588. ctrl-"             Straight quote
  589.     <\x322          : " >
  590.  
  591. Esc Z Z c       Print cache usage
  592.     <\A \!ZZc      : \xF05>
  593.  
  594. Esc Z Z m       Print memory usage
  595.     <\A \!ZZm      : \xF04>
  596.  
  597. Esc D t c , Esc Z Z s      Toggle Save As Text mode
  598.     <\A \!Dtc      : \xF03>
  599.     <\A \!ZZs      : \xF03>
  600.  
  601. Page Menu
  602. ---------
  603. Esc p f, Shift-command-6
  604.     <\A \!pf         : \x340>
  605. Esc p l, Shift-command-7
  606.     <\A \!pl         : \x341>
  607. Esc p b            Body
  608.     <\A \!pb         : \x342>
  609. Esc p m            Master
  610.     <\A \!pm         : \x343>
  611. Esc p r            Reference
  612.     <\A \!pr         : \x344>
  613. Ctrl-g, Esc p g        Go To
  614.     <\A \x207         : \x345>
  615.     <\A \!pg         : \x345>
  616. Esc p a            Add
  617.     <\A \!pa         : \x346>
  618. Esc p d            Delete
  619.     <\A \!pd         : \x347>
  620. Esc p t            Column Layout
  621.     <\A \!pt         : \x348>
  622. Esc p c            Column Connections
  623.     <\A \!pc         : \x349>
  624. Esc p o            Rotate Page
  625.     <\A \!po         : \x34E>
  626. Esc p O            Rotate Page Clockwise
  627.     <\A \!pO         : \x34F>
  628. Esc p k            Background
  629.     <\A \!pk         : \x34A>
  630. Esc p z            Freeze Pagination
  631.     <\A \!pz         : \x34B>
  632. Esc p p, Previous
  633.     <\A \!pp         : \x34C>
  634. Ctrl-v, Esc p n, Next
  635.     <\A \x216         : \x34D>
  636.     <\A \!pn         : \x34D>
  637. Esc C S            Split column below IP
  638.     <\A \!CS         : \x35A>
  639. Esc C C            Connect columns
  640.     <\A \!CC         : \x35B>
  641. Esc C H            Cut Head (Disconnect from previous column in flow)
  642.     <\A \!CH         : \x35C>
  643. Esc C T            Cut Tail (Disconnect from next column in flow)
  644.     <\A \!CT         : \x35D>
  645. Esc p N            Rename master/reference page
  646.     <\A \!pN         : \xF3A>
  647.  
  648. Paragraph Format
  649. ----------------
  650. Esc j w            Display Paragraph Formats Catalog Window
  651.     <\A \!jw         : \xF23>
  652. Esc q p, Alt-9, Ctrl-9    Quick key for paragraphs
  653.     <\A \!qp         : \xF41>
  654.     <\A \x739         : \xF41>
  655.     <\A \x239         : \xF41>
  656. Esc j +, Esc + l    Increment line leading 1 pt.
  657.     <\A \!j\x12b     : \x280>
  658.     <\A \!\x12b l    : \x280>
  659. Esc j minus, Esc minus l    Decrement line leading 1 pt.
  660.     <\A \!j-         : \x281>
  661.     <\A \!-l         : \x281>
  662. Esc j c            Center paragraph/objects
  663.     <\A \!jc         : \x282>
  664. Esc j l            Left justify paragraph/objects
  665.     <\A \!jl         : \x283>
  666. Esc j r            Right justify paragraph/objects
  667.     <\A \!jr         : \x284>
  668. Esc j f            Fully justify paragraph/objects
  669.     <\A \!jf         : \x285>
  670. Esc j t            Top align selected objects
  671.     <\A \!jt         : \x290>
  672. Esc j m            Top/bottom (middle) align selected objects
  673.     <\A \!jm         : \x291>
  674. Esc j b            Bottom align selected objects
  675.     <\A \!jb         : \x292>
  676. Esc j x            Set paragraph line spacing to fixed (default font size
  677.                 plus leading)
  678.     <\A \!jx         : \x287>
  679. Esc j o            Set paragraph line spacing to floating (largest font
  680.                 size plus leading)
  681.     <\A \!jo         : \x288>
  682. Esc j U            Make all paragraphs with current paragraph's tag
  683.                 match current paragraph's format (Unify)
  684.     <\A \!jU         : \x289>
  685. Esc j j            Repeat last paragraph-related command
  686.     <\A \!jj         : \x286>
  687. Esc j h            Turn hyphenation on
  688.     <\A \!jh         : \x27E>
  689. Esc j n            Turn hyphenation off
  690.     <\A \!jn         : \x27F>
  691. Esc j P            Start paragraph at top of page
  692.     <\A \!jP         : \x28A>
  693. Esc j C            Start paragraph at top of column
  694.     <\A \!jC         : \x28B>
  695. Esc j L            Start paragraph at top of left page
  696.     <\A \!jL         : \x28C>
  697. Esc j R            Start paragraph at top of right page
  698.     <\A \!jR         : \x28D>
  699. Esc j A            Start paragraph anywhere
  700.     <\A \!jA         : \x28E>
  701.  
  702. Pen Pattern
  703. -----------
  704. Esc zero p        Set to first pen pattern (black)
  705.     <\A \!0p             : \x3B0>
  706. Esc 9 p            Set to last pen pattern (diagonal stripes)
  707.     <\A \!9p             : \x3B1>
  708. Esc + p            Increment pen pattern
  709.     <\A \!\x12b p    : \x3B2>
  710. Esc minus p        Decrement pen pattern
  711.     <\A \!-p             : \x3B3>
  712.  
  713. Search and Replace
  714. ---------------------------
  715. Esc s p    Search backward
  716.     <\A \!sp         : \x230>
  717.     <\A \x764         : \x230>
  718. Esc s n, Search forward
  719.     <\A \!sn         : \x231>
  720.     <\A \x767        : \x231>
  721. Ctrl-%, Esc r o        Change
  722.     <\A \x325         : \x232>
  723.     <\A \!ro         : \x232>
  724. Esc r g            Change All
  725.     <\A \!rg         : \x233>
  726. Esc r a            Change & Search Again
  727.     <\A \!ra         : \x234>
  728. Esc s s            Display Set Search String dialog box
  729.     <\A \!ss          : \x235>
  730.  
  731. Special Menu
  732. ------------
  733. Esc q v, Ctrl-0    Quick Key for Variables
  734.     <\A \!qv         : \xF42>
  735.     <\A \x230        : \xF42>
  736. Esc q C, Ctrl-3    Quick Key for Conditional Text "In"
  737.     <\A \!qC         : \xF44>
  738.     <\A \x233        : \xF44>
  739. Esc q D, Ctrl-4    Quick Key for Conditional Text "NotIn"
  740.     <\A \!qD         : \xF45>
  741.     <\A \x234        : \xF45>
  742. Esc q U, Ctrl-5    Quick Key for Conditional Text "Unconditional"
  743.     <\A \!qU         : \xF46>
  744.     <\A \x235        : \xF46>
  745. Esc s a            Anchored Frame
  746.     <\A \!sa         : \x350>
  747. Esc s f            Footnote
  748.     <\A \!sf         : \x351>
  749. Esc s c            Cross Reference
  750.     <\A \!sc         : \x352>
  751. Esc s v            Variable
  752.     <\A \!sv         : \x353>
  753. Esc s i            Inset
  754.     <\A \!si         : \x354>
  755. Esc i E            editors
  756.     <\A \!iE        : \x357>
  757. Esc s m            Markers
  758.     <\A \!sm         : \x355>
  759. Esc m k            Insert new marker. Like New Marker button.
  760.     <\A \!mk        : \x356>
  761. Esc s C            Conditional Text
  762.     <\A \!sC        : \x357>
  763.  
  764. Spelling
  765. --------
  766. Esc l s            Start checking current selection/word
  767.     <\A \!ls         : \x3C0>
  768. Esc l e         Start checking entire document
  769.     <\A \!le         : \x3C1>
  770. Esc l p            Start checking current page
  771.     <\A \!lp         : \x3CB>
  772. Esc l c w        Correct word
  773.     <\A \!lcw         : \x3C2>
  774. Esc l a p        Add word to personal dictionary (Learn)
  775.     <\A \!lap         : \x3C3>
  776. Esc l a d        Add word to document dictionary
  777.     <\A \!lad         : \x3C4>
  778. Esc l a c        Add word and correction to auto corrections
  779.     <\A \!lac         : \x3C5>
  780. Esc l x p        Delete word from personal dictionary
  781.     <\A \!lxp         : \x3C6>
  782. Esc l x d        Delete word from document dictionary
  783.     <\A \!lxd         : \x3C7>
  784. Esc l c a        Clear auto corrections
  785.     <\A \!lca         : \x3C8>
  786. Esc l c d        Change dictionaries
  787.     <\A \!lcd         : \x3C9>
  788. Esc l o            Spelling Checker Options
  789.     <\A \!lo        : \x3CC>
  790. Esc l b            Batch spell check
  791.     <\A \!lb         : \x3CE>
  792. Esc l r            Clear no-need-to-recheck flags
  793.     <\A \!lr        : \x3CA>
  794. Esc l -            Show Word's Hyphenation
  795.     <\A \!l-         : \x3CD>
  796. Esc l R            Reformat entire document
  797.     <\A \!lR         : \x3CF>
  798.  
  799.  
  800. Tools
  801. -----
  802. Esc one w        Display Tools Window
  803.     <\A \!1w         : \xF22>
  804. Esc one s        Smart selection tool
  805.     <\A \!1s         : \xF20>
  806. Esc one o        Object selection tool
  807.     <\A \!1o         : \xF21>
  808. Esc one l        Line
  809.     <\A \!1l         : \x3A0>
  810. Esc one r        Rectangle
  811.     <\A \!1r         : \x3A1>
  812. Esc one R        Rounded Rectangle
  813.     <\A \!1R         : \x3A5>
  814. Esc one p g        Polygon
  815.     <\A \!1pg        : \x3A2>
  816. Esc one p l        Polyline
  817.     <\A \!1pl        : \x3A3>
  818. Esc one a        Arc
  819.     <\A \!1a         : \x3A4>
  820. Esc one e        Ellipse
  821.     <\A \!1e         : \x3A6>
  822. Esc one t l        TextLine
  823.     <\A \!1tl        : \x3A7>
  824. Esc one t c        TextColumn
  825.     <\A \!1tc        : \x3A8>
  826. Esc one f        Freehand
  827.     <\A \!1f         : \x3A9>
  828. Esc one m        Frame
  829.     <\A \!1m         : \x3AA>
  830. Esc one one        Select last-used tool
  831.     <\A \!11         : \x3AB>
  832.  
  833. View Menu
  834. ---------
  835. Esc v b            Borders
  836.     <\A \!vb         : \x361>
  837. Esc v t            Text Symbols
  838.     <\A \!vt         : \x362>
  839. Esc v r            Rulers
  840.     <\A \!vr         : \x363>
  841. Esc v g            Grid
  842.     <\A \!vg         : \x364>
  843. Esc v o            Options
  844.     <\A \!vo         : \x360>
  845. Esc v s            Spot Colors
  846.     <\A \!vs         : \x365>
  847. Esc v v            Toggle draw/don't draw preference setting
  848.     <\A \!vv         : \x366>
  849. Esc v C            Condition Visibility
  850.     <\A \!vC        : \x367>
  851. Esc v O            Toggle Condition Use Format Override
  852.     <\A \!vO        : \x368>
  853.  
  854. View Different Separations
  855. --------------------------
  856. Esc v 1            View separation 1
  857.     <\A \!v1         : \x36D>
  858. Esc v 2            View separation 2
  859.     <\A \!v2         : \x36E>
  860. Esc v 3            View separation 3
  861.     <\A \!v3         : \x36F>
  862.  
  863. Window Menu
  864. -----------
  865. Ctrl-l,  Esc w r    Redisplay Window
  866.     <\A \x20c         : \x398>
  867.     <\A \!wr         : \x398>
  868. Esc w h        Hide Window
  869.     <\A \!wh        : \x396>
  870. Esc w h        Expose Window
  871.     <\A \!we        : \x395>
  872. Esc z i            Zoom in
  873.     <\A \!zi         : \xF30>
  874. Esc z o            Zoom out
  875.     <\A \!zo         : \xF31>
  876. Esc z p            Zoom fit page in window
  877.     <\A \!zp         : \xF32>
  878. Esc z w            Zoom fit window to page
  879.     <\A \!zw         : \xF33>
  880. Esc z z            Zoom to 100%
  881.     <\A \!zz         : \xF35>
  882.  
  883. Dialog resource building
  884. ------------------------
  885. Esc r e s            Save document to dbre resource file
  886.     <\A \!res         : \xF70>
  887. Esc r e t 1            Test document as a modal dialog
  888.     <\A \!ret1        : \xF71>
  889. Esc r e t 2            Test document as a modeless dialog
  890.     <\A \!ret2        : \xF72>
  891. Esc r e f            Set stuff item
  892.     <\A \!ref        : \xF73>
  893.  
  894. Table Commands
  895. --------------
  896. Esc t i            Insert table
  897.     <\A \!ti       : \xF80>
  898. Esc t f            Table format
  899.     <\A \!tf       : \xF81>
  900. Esc t r            Row format
  901.     <\A \!tr       : \xF85>
  902. Esc t x            Custom ruling and shading
  903.     <\A \!tx       : \xF86>
  904. Esc t a            Add rows or columns
  905.     <\A \!ta       : \xF87>
  906. Esc t z            Resize column
  907.     <\A \!tz       : \xF88>
  908. Esc t l            Straddle/unstraddle
  909.     <\A \!tl       : \xF89>
  910. Esc t v            Convert text to table/convert table to text
  911.     <\A \!tv       : \xF8A>
  912. Esc t I         Move IP out of table if it was in
  913.     <\A \!tI       : \xFC0>
  914.  
  915. Esc t e            Edit ruling style
  916.     <\A \!te       : \xF8C>
  917.  
  918. Esc Tab         Tab for table cell
  919.     <\A \!\x9      : \x223>
  920.  
  921. Should be taken out eventually.
  922. Esc z t            Table debug
  923.     <\A \!zt       : \xF8B>
  924.  
  925. Table dialog bypass shortcuts
  926. -----------------------------
  927. Esc t u t         Unify table formats
  928.     <\A \!tut      : \xF90>
  929. Esc t d a        Add rows above
  930.     <\A \!tda        : \xF92>
  931. Ctrl <CR>, Esc t d b        Add rows below
  932.     <\A \x20D        : \xF93>
  933.     <\A \!tdb        : \xF93>
  934. Esc t d l        Add columns to left
  935.     <\A \!tdl        : \xF94>
  936. Esc t d r        Add columns to right
  937.     <\A \!tdr        : \xF95>
  938. Esc t d c        Clear leaving cells empty
  939.     <\A \!tdc        : \xF96>
  940. Esc t d x        Clear removing cells
  941.     <\A \!tdx        : \xF97>
  942. Esc t p r        Paste replacing selection
  943.     <\A \!tpr        : \xF98>
  944. Esc t p b        Paste before
  945.     <\A \!tpb        : \xF99>
  946. Esc t p a        Paste after
  947.     <\A \!tpa        : \xF9A>
  948. Esc t d z       Column width shrink wrap
  949.     <\A \!tdz      : \xFD0>
  950.  
  951. Keyboard table selection
  952. ------------------------
  953. Esc t h e         Select the current cell, then next
  954.     <\A \!the       : \xFA0>
  955. Esc t h r         Select the current row, then next
  956.     <\A \!thr       : \xFA1>
  957. Esc t h c         Select the current column, then next
  958.     <\A \!thc       : \xFA2>
  959. Esc t h t         Select the current table
  960.     <\A \!tht       : \xFA3>
  961. Esc t h a         Select all text in the cell
  962.     <\A \!tha       : \xFA4>
  963. Esc t h b         Select the current column body cells only, then next
  964.     <\A \!thb       : \xFA5>
  965. Esc t h 0         Clear table selection and put ip at top left cell
  966.                   Same as !tms below
  967.     <\A \!th0       : \xFB0>
  968.  
  969. Keyboard table insertion point navigation
  970. -----------------------------------------
  971. Esc t m s         Move insertion point to top left cell of table selection
  972.     <\A \!tms       : \xFB0>
  973. Esc t m r         Move insertion point to cell on right
  974.                   When at edge, wrap around the same row
  975.     <\A \!tmr       : \xFB1>
  976. Esc t m l         Move insertion point to cell on left
  977.                   When at edge, wrap around the same row
  978.     <\A \!tml       : \xFB2>
  979. Esc t m u         Move insertion point to cell above
  980.     <\A \!tmu       : \xFB3>
  981. Ctrl-Shift-Tab      Move insertion point to cell above and select text
  982.     <\A \x309        : \xFB3 \xFA4>
  983. Esc t m d         Move insertion point to cell below
  984.     <\A \!tmd       : \xFB4>
  985. Ctrl-Tab          Move insertion point to cell below and select text
  986.     <\A \x209        : \xFB4 \xFA4>
  987. Esc t m a         Move insertion point to left most cell in current row
  988.     <\A \!tma       : \xFB5>
  989. Esc t m e         Move insertion point to right most cell in current row
  990.     <\A \!tme       : \xFB6>
  991. Esc t m n         Move insertion point to cell on right
  992.                   When at edge, wrap to next row
  993.     <\A \!tmn       : \xFB7>
  994. Esc t m p         Move insertion point to cell on left
  995.                   When at edge, wrap to next row
  996.     <\A \!tmp       : \xFB8>
  997. Esc t m t         Move insertion point to top cell in current column
  998.     <\A \!tmt       : \xFB9>
  999. Esc t m b         Move insertion point to bottom cell in current column
  1000.     <\A \!tmb       : \xFBA>
  1001.  
  1002. Symbols
  1003. -------
  1004.  
  1005. shift-Alt-e         macron
  1006.     <\A \xdc5     : \xF8>
  1007.  
  1008. Alt-l         lslash
  1009.     <\A \xf8     : l >
  1010.     <\x4f8     : l >
  1011.  
  1012. shift-Alt-l     Lslash
  1013.     <\A \xe8     : L >
  1014.     <\x5e8     : L >
  1015.  
  1016. Alt-]         quoteright
  1017.     <\A \x427     : \xD5>
  1018.  
  1019. Ctrl-`             grave
  1020.     <\A \x260     : \x60>
  1021.  
  1022.  
  1023. Kerning
  1024. -------
  1025. Ctrl-up    Move (1 point/zoom%) up
  1026.     <\A \xaad : \x11A>
  1027. Ctrl-down    Move (1 point/zoom%) down
  1028.     <\A \xaaf : \x11B>
  1029. Ctrl-left    Move (1 point/zoom%) left
  1030.     <\A \xaac : \x11C>
  1031. Ctrl-right    Move (1 point/zoom%) right
  1032.     <\A \xaae : \x11D>
  1033. Shift-up        Move (6 points/zoom%) up
  1034.     <\A \x9ad : \x121>
  1035. Shift-down    Move (6 points/zoom%) down
  1036.     <\A \x9af : \x122>
  1037. Shift-left    Move (6 points/zoom%) left
  1038.     <\A \x9ac : \x123>
  1039. Shift-right    Move (6 points/zoom%) right
  1040.     <\A \x9ae : \x124>
  1041.  
  1042. Command-i        Set characters to italic
  1043.     <\A \x769   : \x261>
  1044. Command-8    Quick key for Character Format Catalog
  1045.     <\A \x738     : \xF40>
  1046. Command-2        Set characters to bold
  1047.     <\A \x732   : \x260>
  1048.  
  1049. shift-alt-3
  1050.     <\A \xDBA   : \x506 \xBA \x505>
  1051. alt-5
  1052.     <\A \xCA5   : \x506 \xA5 \x505>
  1053. shift-alt-7
  1054.     <\A \xDAB   : \x506 \xAB \x505>
  1055. alt-8
  1056.     <\A \xCB0   : \x506 \xB0 \x505>
  1057. alt-=
  1058.     <\A \xCB9   : \x506 \xB9 \x505>
  1059. shift-alt-=
  1060.     <\A \xDB1   : \x506 \xB1 \x505>    symbol plusminus
  1061.     <\A \xd1    : \x506 \xb1 \x505>    plusminus
  1062.     <\A \x1d1   : \x506 \xb1 \x505>
  1063.     <\A \x4d1   : \x506 \xb1 \x505>
  1064.     <\A \x5d1   : \x506 \xb1 \x505>
  1065. alt-w
  1066.     <\A \xCC8   : \x506 \xC8 \x505>
  1067. shift-alt-w
  1068.     <\A \xDC7   : \x506 \xC7 \x505>
  1069. alt-r
  1070.     <\A \xCD2   : \x506 \xD2 \x505>
  1071. shift-alt-r
  1072.     <\A \xDE2   : \x506 \xE2 \x505>
  1073. alt-t
  1074.     <\A \xCE4   : \x506 \xD4 \x505>
  1075. shift-alt-t
  1076.     <\A \xDD4   : \x506 \xE4 \x505>
  1077. shift-alt-y
  1078.     <\A \xDDB  : \x506 \xD8 \x505>
  1079. alt-p
  1080.     <\A \xC70   : \x506 \x70 \x505>
  1081. shift-alt-p
  1082.     <\A \xD50   : \x506 \x50 \x505>
  1083. alt-d
  1084.     <\A \xD44   : \x506 \x44 \x505>
  1085. shift-alt-d
  1086.     <\A \xDB6   : \x506 \xB6 \x505>
  1087. alt-;
  1088.     <\A \xCB2   : \x506 \xB2 \x505>
  1089. shift-alt-;
  1090.     <\A \xDA2   : \x506 \xA2 \x505>
  1091. shift-alt-z
  1092.     <\A \xD57   : \x506 \x57 \x505>
  1093. alt-x
  1094.     <\xCB4   : \x506 \xB4 \x505>    symbol multiply
  1095.     <\x9e   : \x506 \xb4 \x505>    multiply
  1096.     <\x19e   : \x506 \xb4 \x505>
  1097.     <\x49e   : \x506 \xb4 \x505>
  1098.     <\x59e   : \x506 \xb4 \x505>
  1099. shift-alt-x
  1100.     <\xDCE   : \x506 \xCE \x505>
  1101. alt-c
  1102.     <\xCE3   : \x506 \xE3 \x505>
  1103. shift-alt-c
  1104.     <\xDD3   : \x506 \xD3 \x505>    copyrightserif
  1105. alt-v
  1106.     <\xCD6   : \x506 \xD6 \x505>    radical
  1107. shift-alt-v
  1108.     <\xDE0   : \x506 \xE0 \x505>    lozenge
  1109. alt-b
  1110.     <\xCE5   : \x506 \xE5 \x505>    summation
  1111. shift-alt-b
  1112.     <\xDF2   : \x506 \xF2 \x505>    integral
  1113. shift-alt-m     logical-not
  1114.     <\x9d8        : \x506 \xd8 \x505>
  1115.     <\xdd8        : \x506 \xd8 \x505>
  1116. shift-alt-,
  1117.     <\A \xDA3   : \x506 \xA3 \x505>
  1118. shift-alt-.
  1119.     <\A \xDB3   : \x506 \xB3 \x505>
  1120. alt-/
  1121.     <\A \xCB8    : \x506 \xB8 \x505 >    symbol divide
  1122.     <\A \x8B8    : \x506 \xB8 \x505 >
  1123.     <\A \x9f    : \x506 \xB8 \x505 >    divide
  1124.     <\A \x19f    : \x506 \xB8 \x505 >
  1125.     <\A \x49f    : \x506 \xB8 \x505 >
  1126.     <\A \x59f    : \x506 \xB8 \x505 >
  1127. shift-alt-`
  1128.     <\A \xDBB   : \x506 \xBB \x505>    approxequal
  1129. alt-1
  1130.     <\A \xCAD   : \x506 \xAD \x505>    arrowup
  1131.     <\A \xDAD   : \x506 \xAD \x505>
  1132. shift-alt-f
  1133.     <\A \xDAC   : \x506 \xAC \x505>    arrowleft
  1134.     <\A \xCAC   : \x506 \xAC \x505>
  1135. shift-alt-n
  1136.     <\A \xDAF   : \x506 \xAF \x505>    arrowdown
  1137.     <\A \xCAF   : \x506 \xAF \x505>
  1138. shift-alt-'
  1139.     <\A \xDAE   : \x506 \xAE \x505>    arrowright
  1140.     <\A \xCAE   : \x506 \xAE \x505>
  1141.  
  1142. Rotation commands
  1143. Esc 1 2
  1144.     <\A \!12         : \x500>
  1145. Esc 1 3
  1146.     <\A \!13          : \x501>
  1147.  
  1148. Added by dpb -
  1149. Esc x x 1        Rotate Object
  1150.     <\A \!xx1        : \x389>
  1151. Esc x x 2        Rotate Object interactive
  1152.     <\A \!xx2        : \x38A>
  1153.  
  1154.  
  1155. Input focus to current document kit and modeless dialogs
  1156. --------------------------------------------------------
  1157. Esc f i d         Current document
  1158.     <\A \!fid       : \x620>
  1159. Esc f i s         Search
  1160.     <\A \!fis       : \x621>
  1161. Esc f i m         Marker
  1162.     <\A \!fim       : \x622>
  1163. Esc f i l         Spelling
  1164.     <\A \!fil       : \x623>
  1165. Esc f i 8         Paragraph format catalog
  1166.     <\A \!fi8       : \x624>
  1167. Esc f i 9         Character format catalog
  1168.     <\A \!fi9       : \x625>
  1169. Esc f i p         Paragraph format
  1170.     <\A \!fip       : \x626>
  1171. Esc f i c         Character format
  1172.     <\A \!fic       : \x627>
  1173. Esc f i 1         Tools
  1174.     <\A \!fi1       : \x628>
  1175. Esc f i o         Conditional text
  1176.     <\A \!fio       : \x629>
  1177. Esc f i r         Custom ruling and shading
  1178.     <\A \!fir       : \x62B>
  1179. Esc f i t         Table format
  1180.     <\A \!fit       : \x62C>
  1181. Esc f i q         Equation
  1182.     <\A \!fiq       : \x62D>
  1183.  
  1184.     MATH
  1185.     ----
  1186.  
  1187. Equations menu
  1188. --------------
  1189. Esc m w            Display Equations Window
  1190.     <\A \!mw              : \xF26>
  1191. Esc m s            Small equation
  1192.     <\A \!ms              : \xF50>
  1193. Esc m m            Medium equation
  1194.     <\A \!mm              : \xF51>
  1195. Esc m l            Large equation
  1196.     <\A \!ml              : \xF52>
  1197. Esc m p         Shrinkwrap
  1198.     <\A \!mp              : \xF53>
  1199. Esc m e            Expand (unwrap)
  1200.     <\A \!me              : \xF54>
  1201. Esc m r    p        Remove Parentheses
  1202.     <\M \!mrp        : \x201c>
  1203.  
  1204. Esc m t, Ctrl-T        Toggle Format
  1205.     <\M \!mt        : \x1904>
  1206.     <\M \x314        : \x1904>
  1207. Esc m n, Ctrl-N        New Operand
  1208.     <\M \!mn        : \x1902>
  1209.     <\M \x30e        : \x1902>
  1210. '            Insert String
  1211.     <\M \x27        : \x27>
  1212.  
  1213.  
  1214. Greek letters:
  1215. -------------
  1216. Alt-a : alpha        <\M \x4ca : \x1300>
  1217. Alt-b : beta        <\M \xce5 : \x1301>
  1218. Alt-c : chi        <\M \xce3 : \x1302>
  1219. Alt-d : delta        <\M \xd44 : \x1303>
  1220. Alt-D : Delta        <\M \xdb6 : \x1304>
  1221. Alt-e : epsilon    <\M \x4c2 : \x1305>
  1222. Alt-f : phi        <\M \x4a6 : \x1306>
  1223. Alt-j : varphi        <\M \x4c6  :\x1307>
  1224. Alt-F : Phi        <\M \xdac : \x1308>
  1225. Alt-g : gamma        <\M \x4f1 : \x1309>
  1226. Alt-G : Gamma        <\M \x5e1 : \x130a>
  1227. With NextStep 2.0, alt-h was changed from /eta (68) to /ordfeminine (e3).
  1228. This still doesn't help people who customize their keyboards.
  1229. Alt-h : eta        <\M \x468 : \x130b>
  1230. Alt-h : eta        <\M \x4e3 : \x130b>
  1231. Alt-i : iota        <\M \x4c1 : \x130c>
  1232. Alt-k : kappa        <\M \x4ce : \x130d>
  1233. Alt-7 : cpartial    <\M \x4b7 : \x132e>
  1234. Alt-l : lambda        <\M \x4f8 : \x130e>
  1235. Alt-L : Lambda        <\M \x5e8 : \x130f>
  1236. Alt-m : mu        <\M \xc6d : \x1310>
  1237. Alt-n : nu        <\M \x4c4 : \x1311>
  1238. Alt-p : pi        <\M \xc70 : \x1312>
  1239. Alt-P : Pi        <\M \xd50 : \x1313>
  1240. Alt-q : theta        <\M \x4fa : \x1314>
  1241. Alt-J :vartheta    <\M \x5ae : \x1315>
  1242. Alt-Q : Theta        <\M \x5ea : \x1316>
  1243. Alt-r : rho        <\M \xcd2 : \x1317>
  1244. Alt-s : sigma        <\M \x4fb : \x1318>
  1245. Alt-E : varsigma    <\M \xdc5 : \x1319>
  1246. Alt-E : varsigma    <\M \x5c5 : \x1319>    NextStepEncoding "macron"
  1247. Alt-S : Sigma        <\M \x5a7 : \x131a>
  1248. Alt-t : tau        <\M \xce4 : \x131b>
  1249. Alt-u : upsilon    <\M \x4c8 : \x131c>
  1250. Alt-U : Upsilon    <\M \x5cd : \x131d>
  1251. Alt-o : omega        <\M \x4f9 : \x131e>
  1252. Alt-I : varpi        <\M \x5f5 : \x131f>
  1253. Alt-O : Omega        <\M \x5e9 : \x1320>
  1254. Alt-x : xi        <\M \xcb4 : \x1321>
  1255. Alt-X : Xi        <\M \xdce : \x1322>
  1256. Alt-y : psi        <\M \x4a5 : \x1323>
  1257. Alt-Y : Psi        <\M \xddb : \x1324>
  1258. Alt-z : zeta        <\M \x4cf : \x1325>
  1259.  
  1260.  
  1261. Diacritical Marks:
  1262. Back Quote   : Prime            <\M \`   : \x1503>
  1263. Alt-minus   : bar            <\M \x4b1: \x1502>
  1264. Alt-Shift-6 : Hat            <\M \x5c3: \x1504>
  1265. Alt-Shift-V : Vector            <\M \xde0: \x1505>
  1266. Alt-Shift-~ : SubTilde            <\M \xdbb: \x1506>
  1267. Alt-Shift-_ : SubBox            <\M \x5d0: \x1507>
  1268.  
  1269.  
  1270. Unusual symbols
  1271. Alt-1        infty             <\M \xcad  : \x1326 >
  1272. Alt-2        bot             <\M \x4b2  : \x1327 >
  1273. Alt-period    ldots             <\M \x4bc  : \x1328 >
  1274. Alt-3        aleph             <\M \x4a3  : \x1329 >
  1275. Alt-4        Im             <\M \x4a2  : \x132a >
  1276. Alt-$        Re             <\M \x5a8  : \x132b >
  1277. Alt-5        wp             <\M \xca5  : \x132c >
  1278. Alt-0        emptyset         <\M \x4ad  : \x132d >
  1279. Alt-6        nabla             <\M \x4b6  : \x132f >
  1280. Alt-'        prime             <\M \x4a9  : \x1330 >
  1281. Alt-"        pprime             <\M \xdae  : \x1331 >
  1282. Alt-)        degree             <\M \x5bb  : \x1332 >
  1283.  
  1284.  
  1285. Templates
  1286. ---------
  1287.  
  1288. N-ary
  1289. =                       equal
  1290.     <\M =                : \x1901 >
  1291.     <\M \![211z          : \x1901 >
  1292. Esc m =,                force equals
  1293.     <\M\!m=              : \x100e >
  1294. +, NPad +        plus
  1295.     <\M \x12b            : \x100d >
  1296.     <\M \![253z          : \x100d >
  1297. *, NPad *        mult
  1298.     <\M *        : \x100b >
  1299.     <\M \![213z          : \x100b >
  1300. Ctrl-q :        equiv
  1301.     <\M \x211 \x13a      : \x1020 >
  1302. Ctrl-q ;        approx
  1303.     <\M \x211 ;         : \x1022 >
  1304. Ctrl-q 5        propto
  1305.     <\M \x211 5         : \x1021 >
  1306. Ctrl-period        cdot
  1307.     <\M \x22e          : \x1033 >
  1308. Ctrl-q K        notsubset
  1309.     <\M \x211 \x14b      : \x102d >
  1310. Ctrl-'            ni
  1311.     <\M \x227          : \x1032 >
  1312. Ctrl-j            jotdot
  1313.     <\M \x20a          : \x1010 >
  1314. Ctrl-q D        otimes
  1315.     <\M \x211 \x144      : \x1011 >
  1316. Ctrl-q E        oplus
  1317.     <\M \x211 \x145      : \x1012 >
  1318. Ctrl-Alt-=        notequal
  1319.     <\M \xeb9          : \x1019 >
  1320. @            cong
  1321.     <\M \x140          : \x1023 >
  1322. Ctrl-m ~        sim
  1323.     <\M \x20d ~          : \x1024 >
  1324. Ctrl-q Y        wedge
  1325.     <\M \x211 \x159      : \x1030 >
  1326. Ctrl-q Z        vee
  1327.     <\M \x211 \x15a      : \x1031 >
  1328. Ctrl-q N        in
  1329.     <\M \x211 \x14e      : \x102e >
  1330. Ctrl-q L        subset
  1331.     <\M \x211 \x14c      : \x102b >
  1332. Ctrl-q I        superset
  1333.     <\M \x211 \x149      : \x1029 >
  1334. Ctrl-less_than        leq
  1335.     <\M \x33c          : \x101b >    NeXT
  1336. Ctrl->            geq
  1337.     <\M \x33e          : \x101d >    NeXT
  1338. Ctrl-q ,        leftarrow
  1339.     <\M \x211 ,         : \x1013 >
  1340. Ctrl-q period        rightarrow
  1341.     <\M \x211 .         : \x1014 >
  1342. Ctrl-q +        lrarrow
  1343.     <\M \x211 \x12b      : \x1015 >
  1344. ,            comma
  1345.     <\M,         : \x100f >
  1346. Ctrl-m p        parallel
  1347.     <\M \x20d p         : \x1026 >
  1348. Ctrl-m r        perp
  1349.     <\M \x20d r         : \x1025 >
  1350. Ctrl-m i        cap
  1351.     <\M \x20d i         : \x1027 >
  1352. Ctrl-m u        cup
  1353.     <\M \x20d u         : \x1028 >
  1354. Ctrl-q O        notin
  1355.     <\M \x211 \x14f      : \x102f >
  1356. Ctrl-q J        subseteq
  1357.     <\M \x211 \x14a      : \x102c >
  1358. Ctrl-q M        supseteq
  1359.     <\M \x211 \x14d      : \x102a >
  1360. Ctrl-Alt-less_than    ll
  1361.     <\M \xfa3          : \x101f >
  1362. Ctrl-Alt->        gg
  1363.     <\M \xfb3          : \x101e >
  1364. Ctrl-q \        Leftarrow
  1365.     <\M \x211 \\         : \x1016 >
  1366. Ctrl-q ^        Rightarrow
  1367.     <\M \x211 \x15e      : \x1017 >
  1368. Ctrl-q [        LRarrow
  1369.     <\M \x211 [         : \x1018 >
  1370.  
  1371. Multi-Format
  1372. [            square brackets
  1373.     <\M [        : \x1075 \x1605 \x1904 \x1606 >
  1374. {            Braces
  1375.     <\M {        : \x1075 \x1605 \x1904 \x1904 \x1606 >
  1376. Ctrl-(            lparen
  1377.     <\M \x328        : \x1071 >    NeXT
  1378. Ctrl-m [        lparen square bracket
  1379.     <\M \x20d [      : \x1071 \x1605 \x1904 \x1606 >
  1380. Ctrl-m {        lparen brace
  1381.     <\M \x20d {      : \x1071 \x1605 \x1904 \x1904 \x1606 >
  1382. )            rparen
  1383.     <\M )         : \x1072 >
  1384. ]            rparen square bracket
  1385.     <\M ]         : \x1072 \x1605 \x1904 \x1606 >
  1386. }            rparen brace
  1387.     <\M }         : \x1072 \x1605 \x1904 \x1904 \x1606 >
  1388. /, NPad /        over
  1389.     <\M /        : \x107c >
  1390.     <\M \![212z        : \x107c >
  1391. Ctrl-m /        div
  1392.     <\M \x20d /      : \x1087 >
  1393. Ctrl-Alt-/        fract
  1394.     <\M \xeb8          : \x1088 >
  1395.  
  1396. Large
  1397. Ctrl-i            int
  1398.     <\M \x209          : \x106d >
  1399. Ctrl-Alt-i        oint
  1400.     <\M \x609          : \x106e >
  1401. Ctrl-S            sum
  1402.     <\M \x313          : \x106b >
  1403. Ctrl-P            prod
  1404.     <\M \x310          : \x106c >
  1405. Ctrl-m I        bigcap
  1406.     <\M \x20d \x149      : \x1070 >
  1407. Ctrl-m U        bigcup
  1408.     <\M \x20d \x155      : \x106f >
  1409.  
  1410. w/ Additional Operands
  1411. Ctrl-Alt-t        optotal
  1412.     <\M \x614          : \x1069 >
  1413. Ctrl-Alt-p        oppartial
  1414.     <\M \x610          : \x106a >
  1415. Ctrl-r            sqrt
  1416.     <\M \x212          : \x1055 >
  1417. Ctrl-t            o_TOTAL
  1418.     <\M \x214          : \x1809 >
  1419. Ctrl-p            o_PARTIAL
  1420.     <\M \x210          : \x180a >
  1421. |            substitution
  1422.     <\M \|        : \x1034 >
  1423. Binary
  1424. minus, NPad minus    minus (negate)
  1425.     <\M \x2d            : \x103a >
  1426.     <\M \![254z            : \x103a >
  1427. Ctrl-m B        bket
  1428.     <\M \x20d \x142      : \x1083 >
  1429. Ctrl-m N        inprod
  1430.     <\M \x20d \x14e      : \x1084 >
  1431. Ctrl-m h        choice
  1432.     <\M \x20d h         : \x1080 >
  1433. Esc m h, Ctrl-;        list
  1434.     <\M \!mhl        : \x100a >
  1435.     <\M \x23b        : \x100a >
  1436. Esc m v, Ctrl-a        atop
  1437.     <\M \!mvl         : \x1009 >
  1438.     <\M \x201          : \x1009 >
  1439. Ctrl-L            lim
  1440.     <\M \x30c          : \x107f >
  1441. Ctrl-8            bullet
  1442.     <\M \x238          : \x1085 >
  1443. Ctrl-m C        cmut
  1444.     <\M \x20d \x143      : \x1081 >
  1445. Ctrl-E            sn
  1446.     <\M \x305          : \x107e >
  1447. Ctrl-*            cross
  1448.     <\M \x32a        : \x1086 >    NeXT
  1449. Ctrl-m A        acmut
  1450.     <\M \x20d \x141      : \x1082 >
  1451.  
  1452. Indices
  1453. Ctrl-Alt-^    pre-superscript
  1454.     <\M \x71e          : \x18a7 >
  1455. Ctrl-^        superscript
  1456.     <\M \x31e          : \x18a5 >
  1457. Ctrl-Alt-_    pre-subscript
  1458.     <\M \x71f          : \x18a8 >
  1459. Ctrl-_        subscript
  1460.     <\M \x31f          : \x18a6 >
  1461. Ctrl-n            o_ADDINDEX
  1462.     <\M \x20e          : \x18a4 >
  1463.  
  1464. Functions
  1465. Ctrl-f            function
  1466.     <\M \x206          : \x100c >
  1467.  
  1468.  
  1469. Unaries
  1470. Ctrl-minus        o_NEGATE
  1471.     <\M \x21f          : \x1900 >
  1472. Ctrl-=            uequal
  1473.     <\M \x23d          : \x105d >
  1474. Ctrl-m a        forall
  1475.     <\M \x20d a         : \x1061 >
  1476. Ctrl-m e        exists
  1477.     <\M \x20d e         : \x1062 >
  1478. Ctrl-m t        therefore
  1479.     <\M \x20d t         : \x1060 >
  1480. Ctrl-m n        neg
  1481.     <\M \x20d n         : \x105f >
  1482. Ctrl-m x        box
  1483.     <\M \x20d x         : \x105a >
  1484. Ctrl-,            ucomma
  1485.     <\M \x22c          : \x1067 >
  1486. ;            semicolon
  1487.     <\M \;         : \x1068 >
  1488. Ctrl-m lessthan        dangle
  1489.     <\M \x20d <          : \x1078 >
  1490. Ctrl-q 1        pm
  1491.     <\M \x211 1         : \x1038 >
  1492. Ctrl-q P        angle
  1493.     <\M \x211 \x150      : \x105e >
  1494. Ctrl-Alt-d        var
  1495.     <\M \x604          : \x1064 >
  1496. Ctrl-d            diff
  1497.     <\M \x204          : \x1063 >
  1498. Ctrl-q Q        grad
  1499.     <\M \x211 \x151      : \x1056 >
  1500. Ctrl-m v        div
  1501.     <\M \x20d v         : \x1057 >
  1502. Ctrl-m o        boxdot
  1503.     <\M \x20d o         : \x105b >
  1504. Ctrl-|            abs
  1505.     <\M \x31c          : \x1076 >
  1506. Ctrl-q i        ceil
  1507.     <\M \x211 i         : \x108a >
  1508. Ctrl-m b        bra
  1509.     <\M \x20d b         : \x1079 >
  1510. Ctrl-m d        dagger
  1511.     <\M \x20d d         : \x1036 >
  1512. Ctrl-m 1        mp
  1513.     <\M \x20d 1         : \x1039 >
  1514. Ctrl-Alt-D        change
  1515.     <\M \x704          : \x1066 >
  1516. Ctrl-D            partial
  1517.     <\M \x304          : \x1065 >
  1518. Ctrl-m c        curl
  1519.     <\M \x20d c         : \x1058 >
  1520. Ctrl-m l        lap
  1521.     <\M \x20d l         : \x1059 >
  1522. Ctrl-m 2        box2
  1523.     <\M \x20d 2         : \x105c >
  1524. Ctrl-Alt-|        norm
  1525.     <\M \x71c          : \x1077 >
  1526. Ctrl-q k        floor
  1527.     <\M \x211 k         : \x1089 >
  1528. Ctrl-m k        ket
  1529.     <\M \x20d k         : \x107a >
  1530. Ctrl-m s        ast
  1531.     <\M \x20d s         : \x1037 >
  1532. Ctrl-m D        downbrace
  1533.     <\M \x20d D      : \x1074 >
  1534. Ctrl-m P        upbrace
  1535.     <\M \x20d P      : \x1073 >
  1536.  
  1537.  
  1538. Matrices
  1539. ------
  1540. Esc x m, Ctrl-x        Create 1x1 matrix
  1541.     <\M \!xm         : \x1008>
  1542.     <\M \x218          : \x1008>
  1543. Esc x r, Ctrl-R        Add Row
  1544.     <\M \!xr         : \x18a0>
  1545.     <\M \x312          : \x18a0 >
  1546. E x c, Ctrl-C        Add Column
  1547.     <\M \!xc         : \x18a1 >
  1548.     <\M \x303          : \x18a1 >
  1549. Esc x R, Ctrl-Alt-R    Delete Row
  1550.     <\M \!x \x152      : \x18a2 >
  1551.     <\M \x712          : \x18a2 >
  1552. Esc x C, Ctrl-Alt-C    Delete Column
  1553.     <\M \!x \x143      : \x18a3 >
  1554.     <\M \x703          : \x18a3 >
  1555. Esc x t:        Transpose Matrix
  1556.     <\M \!xt         : \x200f >
  1557. Esc x a:        Matrix Algebra
  1558.     <\M \!xa         : \x2017 >
  1559.  
  1560.  
  1561. Computation
  1562. -----------
  1563.                 Differentiate
  1564.     <\M \!mvd        : \x2004>
  1565.                 Differentiate Once
  1566.     <\M \!mvD        : \x2005>
  1567.                 Evaluate
  1568.     <\M \!mve        : \x201b>
  1569.                 Factor
  1570.     <\M \!muf        : \x200c>
  1571.                 Factor Some
  1572.     <\M \!muF        : \x200d>
  1573.                 Integrate
  1574.     <\M \!mvi        : \x2006>
  1575.                 Distribute
  1576.     <\M \!mud        : \x2011>
  1577.                 Number Crunch
  1578.     <\M \!mvn        : \x2007>
  1579.                 Show All Digits
  1580.     <\M \!mv.        : \x2008>
  1581.                 Long Division
  1582.     <\M \!mdl        : \x200e>
  1583.                 Order in Sum
  1584.     <\M \!mao        : \x2018>
  1585.                 Order in Sum other way
  1586.     <\M \!maO        : \x2019>
  1587.                 Pull out one term
  1588.     <\M \!moe        : \x2009>
  1589.                 Pull out all terms
  1590.     <\M \!moE        : \x200a>
  1591.                 Add fractions
  1592.     <\M \!maa        : \x201a>
  1593.                 Simplify
  1594.     <\M \!mos        : \x2000>
  1595.                 Simplify Some
  1596.     <\M \!moS        : \x2001>
  1597.                 Multiply out
  1598.     <\M \!mum        : \x2002>
  1599.                 Multiply out once
  1600.     <\M \!muM        : \x2003>
  1601.                 Isolate Term
  1602.     <\M \!moi        : \x2016>
  1603.                 Enter Definition
  1604.     <\M \!mre        : \x2204>
  1605.                 Apply Definition
  1606.     <\M \!mra        : \x2205>
  1607.     Designate Dummy
  1608.     <\M \!mrd               : \x1508>
  1609.                 Eval Substitutions
  1610.     <\M \!mvs        : \x200b>
  1611.                 Distribute over =
  1612.     <\M \!muD        : \x2010>
  1613.                 Remove Division
  1614.     <\M \!mdd        : \x2012>
  1615.                 Remove Division Once
  1616.     <\M \!mdD         : \x2013>
  1617.                 Remove Neg Powers
  1618.     <\M \!mdn         : \x2014>
  1619.                 Remove Neg Powers Once
  1620.     <\M \!mdN        : \x2015>
  1621.  
  1622.  
  1623. Tab                Move to Next Prompt
  1624.     <\M \x9           : \x1600>
  1625. Delete, Backspace, NPad Delete    Delete
  1626.     <\M \x7f        : \x1609>
  1627.     <\M \x8           : \x1609>
  1628.     <\M \![249z           : \x1609>
  1629. Esc e x, Ctrl-w            Cut
  1630.     <\M \!ex        : \x2200>
  1631.     <\M \x217        : \x2200>
  1632. Esc e c, Alt-w            Copy
  1633.     <\M \!ec        : \x2201>
  1634.     <\M \xcc8        : \x2201>
  1635. Esc e p, Ctrl-y            Paste
  1636.     < \M \!ep        : \x2202>
  1637.     < \M \x219        : \x2202>
  1638. Esc e b                Clear
  1639.     <\M \!eb        : \x2203>
  1640.  
  1641.  
  1642. These are the NeXT arrow keys for Math
  1643.  
  1644. Ctrl-            -\ : Move Left                <\M \xaac : \x2103>
  1645. Ctrl-Alt-    -\ : Move Left Into                <\M \xeac : \x2104>
  1646. Ctrl-Shift-    -\ : Move Left All The Way        <\M \xbac : \x2105>
  1647. Ctrl-            \- : Move Right                <\M \xaae : \x2100>
  1648. Ctrl-Alt-    \- : Move Right    Into            <\M \xeae : \x2101>
  1649. Ctrl-Shift-    \- : Move Right    All The Way        <\M \xbae : \x2102>
  1650. Ctrl-             ^ : Move Up                <\M \xaad : \x2106>
  1651. Ctrl-              v : Move Down                <\M \xaaf : \x2107>
  1652. Ctrl-Alt-Shift-Left:  Swap Left            <\M \xfac : \x2108>
  1653. Ctrl-Alt-Shift-Right: Swap Right            <\M \xfae : \x2109>
  1654.  
  1655. Shift-Alt up        : kern up    6 points 121
  1656.     <\M \xdad     : \x1704>
  1657. Shift-Alt down        : kern down  6 points 122
  1658.     <\M \xdaf     : \x1705>
  1659. Shift-Alt left        : kern left  6 points 123
  1660.     <\M \xdac     : \x1706>
  1661. Shift-Alt right    : kern right 6 points 124
  1662.     <\M \xdae     : \x1707>
  1663.  
  1664. Shift up    : kern up  1 point
  1665.     <\M \x9ad : \x11A>
  1666. Shift-down    : kern down 1 point
  1667.     <\M \x9af : \x11B>
  1668. Shift-left    : kern left 1 point
  1669.     <\M \x9ac : \x11C>
  1670. Shift-right    : kern right 1 point
  1671.     <\M \x9ae : \x11D>
  1672.  
  1673. International keys.
  1674. <\A \xc1 : \x60>    grave
  1675. <\x4c1 \x4c1 : \x60>    grave
  1676. <\A \x85 : \x80>    Adieresis
  1677. <\A \x485 : \x80>    Adieresis
  1678. <\A \x86 : \x81>    Aring
  1679. <\A \x586 : \x81>    Aring
  1680. <\A \x87 : \x82>    Ccedilla
  1681. <\A \x587 : \x82 > Ccedille
  1682. <\A \x89 : \x83>    Eacute
  1683. <\A \x589 : \x83>    Eacute
  1684. <\A \x91 : \x84>    Ntilde
  1685. <\A \x591 : \x84>    Ntilde
  1686. <\A \x96 : \x85>    Odieresis
  1687. <\A \x596 : \x85>    Odieresis
  1688. <\A \x9a : \x86>    Udieresis
  1689. <\A \x59a : \x86>    Udieresis
  1690. <\x4a9 : \x27>    quotesingle
  1691. <\A \xd6 : \x87>    aacute
  1692. <\A \x4d6 : \x87>    aacute
  1693. <\A \xd5 : \x88>    agrave
  1694. <\A \x4d5 : \x88>    agrave
  1695. <\A \xd7 : \x89>    acircumflex
  1696. <\A \x4d7 : \x89>    acircumflex
  1697. <\A \xd9 : \x8a>    adieresis
  1698. <\A \x4d9 : \x8a>    adieresis
  1699. <\A \xd8 : \x8b>    atilde
  1700. <\A \x4d8 : \x8b>    atilde
  1701. <\A \xda : \x8c>    aring
  1702. <\A \x4da : \x8c>    aring
  1703. <\A \xdb : \x8d>    ccedilla
  1704. <\A \x4db : \x8d > ccedille
  1705. <\A \xdd : \x8e>    eacute
  1706. <\A \x4dd : \x8e>    eacute
  1707. <\A \xdc : \x8f>    egrave
  1708. <\A \x4dc : \x8f>    egrave
  1709. <\A \xde : \x90>    ecircumflex
  1710. <\A \x4de : \x90>    ecircumflex
  1711. <\A \xdf : \x91>    edieresis
  1712. <\A \x5df : \x91>    edieresis
  1713. <\A \xe2 : \x92>    iacute
  1714. <\A \x4e2 : \x92>    iacute
  1715. <\A \xe0 : \x93>    igrave
  1716. <\A \x4e0 : \x93>    igrave
  1717. <\A \xe4 : \x94>    icircumflex
  1718. <\A \x4e4 : \x94>    icircumflex
  1719. <\A \xe5 : \x95>    idieresis
  1720. <\A \x4e5 : \x95>    idieresis
  1721. <\A \xe7 : \x96>    ntilde
  1722. <\A \x4e7 : \x96>    ntilde
  1723. <\A \xed : \x97>    oacute
  1724. <\A \x4ed : \x97>    oacute
  1725. <\A \xec : \x98>    ograve
  1726. <\A \x4ec : \x98>    ograve
  1727. <\A \xee : \x99>    ocircumflex
  1728. <\A \x4ee : \x99>    ocircumflex
  1729. <\A \xf0 : \x9a>    odieresis
  1730. <\A \x4f0 : \x9a>    odieresis
  1731. <\A \xef : \x9b>    otilde
  1732. <\A \x4ef : \x9b>    otilde
  1733. <\A \xf3 : \x9c>    uacute
  1734. <\A \x4f3 : \x9c>    uacute
  1735. <\A \xf2 : \x9d>    ugrave
  1736. <\A \x4f2 : \x9d>    ugrave
  1737. <\A \xf4 : \x9e>    ucircumflex
  1738. <\A \x4f4 : \x9e>    ucircumflex
  1739. <\A \xf6 : \x9f>    udieresis
  1740. <\A \x4f6 : \x9f>    udieresis
  1741. <\A \xb2 : \xa0>    dagger
  1742. <\x4b2 : \xa0>    dagger
  1743. <\A \xa2 : \xa2>    cent
  1744. <\x4a2 : \xa2>    cent
  1745. <\A \xa3 : \xa3>    sterling
  1746. <\x4a3 : \xa3>    sterling
  1747. <\A \xa7 : \xa4>    section
  1748. <\x4a7 : \xa4>    section
  1749. <\A \xb7 : \xa5>    bullet
  1750. <\x4b7 : \xa5>    bullet
  1751. <\A \xb6 : \xa6>    paragraph
  1752. <\x4b6 : \xa6>    paragraph
  1753. <\A \xfb : \xa7>    germandbls
  1754. <\x4fb : \xa7>    germandbls
  1755. <\A \xb0 : \xa8>    registered
  1756. <\A \x4b0 : \xa8>    registered
  1757. <\A \xa0 : \xa9>    copyright
  1758. <\A \x4a0 : \xa9>    copyright
  1759. <\A \xc2 : \xab>    acute
  1760. <\A \x4c2 \x4c2 : \xab>    acute
  1761. <\A \xc8 : \xac>    dieresis
  1762. <\A \x4c8 \x4c8 : \xac>    dieresis
  1763. <\A \xe1 : \xae>    AE
  1764. <\x5e1 : \xae>    AE
  1765. <\A \xe9 : \xaf>    Oslash
  1766. <\x5e9 : \xaf>    Oslash
  1767. <\A \xa5 : \xb4>    yen
  1768. <\x4a5 : \xb4>    yen
  1769. <\A \xe3 : \xbb>    ordfeminine
  1770. <\x4e3 : \xbb>    ordfeminine
  1771. <\A \xeb : \xbc>    ordmasculine
  1772. <\A \x4eb : \xbc>    ordmasculine
  1773. <\A \xf1 : \xbe>    ae
  1774. <\x4f1 : \xbe>    ae
  1775. <\A \xf9 : \xbf>    oslash
  1776. <\x4f9 : \xbf>    oslash
  1777. <\A \xbf : \xc0>    questiondown
  1778. <\A \x4bf : \xc0>    questiondown
  1779. <\A \xa1 : \xc1>    exclamdown
  1780. <\A \x5a1 : \xc1 > exclamdown
  1781. <\A \xbe : \xc2>    logicalnot
  1782. <\A \x4be : \xc2>    logicalnot
  1783. <\A \xa6 : \xc4>    florin
  1784. <\x4a6 : \xc4>    florin
  1785. <\A \xab : \xc7>    guillemotleft
  1786. <\A \x4ab : \xc7>    guillemotleft
  1787. <\A \xbb : \xc8>    guillemotright
  1788. <\x4bb : \xc8>    guillemotright
  1789. <\A \xbc : \xc9>    ellipsis
  1790. <\A \x4bc : \xc9>    ellipsis
  1791. <\A \x81 : \xcb>    Agrave
  1792. <\A \x581 : \xcb>    Agrave
  1793. <\A \x84 : \xcc>    Atilde
  1794. <\A \x584 : \xcc>    Atilde
  1795. <\A \x95 : \xcd>    Otilde
  1796. <\A \x595 : \xcd>    Otilde
  1797. <\A \xea : \xce>    OE
  1798. <\x5ea : \xce>    OE
  1799. <\A \xfa : \xcf>    oe
  1800. <\x4fa : \xcf>    oe
  1801. <\A \xb1 : \xd0>    endash
  1802. <\x4b1 : \xd0>    endash
  1803. <\A \xd0 : \xd1>    emdash
  1804. <\x4d0 : \xd1>    emdash
  1805. <\A \xaa : \xd2>    quotedblleft
  1806. <\A \x4aa : \xd2>    quotedblleft
  1807. <\A \xba : \xd3>    quotedblright
  1808. <\A \x4ba : \xd3>    quotedblright
  1809. <\A \xfd : \xd8>    ydieresis
  1810. <\A \x5fd : \xd8>    ydieresis
  1811. <\A \xa4 : \xda>    fraction
  1812. <\A \x4a4 : \xda>    fraction
  1813. <\A \xa8 : \xdb>    currency
  1814. <\x4a8 : \xdb>    currency
  1815. <\A \xac : \xdc>    guilsinglleft
  1816. <\A \x4ac : \xdc>    guilsinglleft
  1817. <\A \xad : \xdd>    guilsinglright
  1818. <\x4ad : \xdd>    guilsinglright
  1819. <\A \xae : \xde>    fi
  1820. <\x4ae : \xde>    fi
  1821. <\A \xaf : \xdf>    fl
  1822. <\A \x4af : \xdf>    fl
  1823. <\A \xb3 : \xe0>    daggerdbl
  1824. <\A \x4b3 : \xe0>    daggerdbl
  1825. <\A \xb4 : \xe1>    periodcentered
  1826. <\A \x4b4 : \xe1>    periodcentered
  1827. <\A \xb8 : \xe2>    quotesinglbase
  1828. <\A \x5b8 : \xe2>    quotesinglbase
  1829. <\A \xb9 : \xe3>    quotedblbase
  1830. <\A \x5b9 : \xe3>    quotedblbase
  1831. <\A \xbd : \xe4>    perthousand
  1832. <\A \x4bd : \xe4>    perthousand
  1833. <\A \x83 : \xe5>    Acircumflex
  1834. <\A \x583 : \xe5>    Acircumflex
  1835. <\A \x8a : \xe6>    Ecircumflex
  1836. <\A \x58a : \xe6>    Ecircumflex
  1837. <\A \x82 : \xe7>    Aacute
  1838. <\A \x582 : \xe7>    Aacute
  1839. <\A \x8b : \xe8>    Edieresis
  1840. <\A \x58b : \xe8>    Edieresis
  1841. <\A \x88 : \xe9>    Egrave
  1842. <\A \x588 : \xe9>    Egrave
  1843. <\A \x8d : \xea>    Iacute
  1844. <\A \x58d : \xea>    Iacute
  1845. <\A \x8e : \xeb>    Icircumflex
  1846. <\A \x58e : \xeb>    Icircumflex
  1847. <\A \x8f : \xec>    Idieresis
  1848. <\A \x58f : \xec > Idieresis
  1849. <\A \x8c : \xed>    Igrave
  1850. <\A \x58c : \xed>    Igrave
  1851. <\A \x93 : \xee>    Oacute
  1852. <\A \x593 : \xee>    Oacute
  1853. <\A \x94 : \xef>    Ocircumflex
  1854. <\A \x594 : \xef>    Ocircumflex
  1855. <\A \x92 : \xf1>    Ograve
  1856. <\A \x592 : \xf1>    Ograve
  1857. <\A \x98 : \xf2>    Uacute
  1858. <\A \x598 : \xf2>    Uacute
  1859. <\A \x99 : \xf3>    Ucircumflex
  1860. <\A \x599 : \xf3>    Ucircumflex
  1861. <\A \x97 : \xf4>    Ugrave
  1862. <\A \x597 : \xf4>    Ugrave
  1863. <\A \xf5 : \xf5>    dotlessi
  1864. <\x4f5 : \xf5>    dotlessi
  1865. <\A \xc3 : \xf6>    circumflex
  1866. <\A \x4c3 \x4c3 : \xf6>    circumflex
  1867. <\A \xc4 : \xf7>    tilde
  1868. <\A \x4c4 \x4c4 : \xf7>    tilde
  1869. <\A \xc5 : \xf8>    macron
  1870. <\x5c5 : \xf8>    macron
  1871. <\A \xc6 : \xf9>    breve
  1872. <\x4c6 : \xf9>    breve
  1873. <\A \xc7 : \xfa>    dotaccent
  1874. <\A \x4c7 : \xfa>    dotaccent
  1875. <\A \xca : \xfb>    ring
  1876. <\A \x4ca \x4ca : \xfb>    ring
  1877. <\A \xcb : \xfc>    cedilla
  1878. <\A \x4cb \x4cb : \xfc>    cedilla
  1879. <\A \xcd : \xfd>    hungarumlaut
  1880. <\x4cd : \xfd>    hungarumlaut
  1881. <\A \xce : \xfe>    ogonek
  1882. <\x4ce : \xfe>    ogonek
  1883. <\A \xcf : \xff>    caron
  1884. <\x4cf : \xff>    caron
  1885.  
  1886. Odd characters on NeXT's international keyboards.
  1887.  
  1888. mu can be delivered in either Symbol or NextStepEncoding (thanks, guys).
  1889. <\M \x9d : \x1310>    mu
  1890. <\M \x19d : \x1310>    mu
  1891. <\M \x96d : \x1310>    symbol mu
  1892. <\x9d : \x506 \x6d \x505> mu
  1893. <\x19d : \x506 \x6d \x505> mu
  1894.  
  1895. <\xa9 : ' >        quotesingle
  1896.  
  1897. <\M \x8b0 : \x1332>    degree (math only)
  1898.  
  1899. All of 7-bit USASCII.
  1900. <\A \x420 : \x20>    /space
  1901. <\A \x421 : \x21>    /exclam
  1902. <\A \x422 : \x22>    /quotedbl
  1903. <\A \x423 : \x23>    /numbersign
  1904. <\A \x424 : \x24>    /dollar
  1905. <\A \x425 : \x25>    /percent
  1906. <\A \x426 : \x26>    /ampersand
  1907.  \A \x427 : \x27     /quoteright
  1908. <\A \x428 : \x28>    /parenleft
  1909. <\A \x429 : \x29>    /parenright
  1910. <\A \x42a : \x2a>    /asterisk
  1911. <\A \x42b : \x2b>    /plus
  1912. <\A \x42c : \x2c>    /comma
  1913. <\A \x42d : \x2d>    /hyphen
  1914. <\A \x42e : \x2e>    /period
  1915. <\A \x42f : \x2f>    /slash
  1916. <\A \x430 : \x30>    /zero
  1917. <\A \x431 : \x31>    /one
  1918. <\A \x432 : \x32>    /two
  1919. <\A \x433 : \x33>    /three
  1920. <\A \x434 : \x34>    /four
  1921. <\A \x435 : \x35>    /five
  1922. <\A \x436 : \x36>    /six
  1923. <\A \x437 : \x37>    /seven
  1924. <\A \x438 : \x38>    /eight
  1925. <\A \x439 : \x39>    /nine
  1926. <\A \x43a : \x3a>    /colon
  1927. <\A \x43b : \x3b>    /semicolon
  1928. <\A \x43c : \x3c>    /less
  1929. <\A \x43d : \x3d>    /equal
  1930. <\A \x43e : \x3e>    /greater
  1931. <\A \x43f : \x3f>    /question
  1932. <\A \x440 : \x40>    /at
  1933. <\A \x441 : \x41>    /A
  1934. <\A \x442 : \x42>    /B
  1935. <\A \x443 : \x43>    /C
  1936. <\A \x444 : \x44>    /D
  1937. <\A \x445 : \x45>    /E
  1938. <\A \x446 : \x46>    /F
  1939. <\A \x447 : \x47>    /G
  1940. <\A \x448 : \x48>    /H
  1941. <\A \x449 : \x49>    /I
  1942. <\A \x44a : \x4a>    /J
  1943. <\A \x44b : \x4b>    /K
  1944. <\A \x44c : \x4c>    /L
  1945. <\A \x44d : \x4d>    /M
  1946. <\A \x44e : \x4e>    /N
  1947. <\A \x44f : \x4f>    /O
  1948. <\A \x450 : \x50>    /P
  1949. <\A \x451 : \x51>    /Q
  1950. <\A \x452 : \x52>    /R
  1951. <\A \x453 : \x53>    /S
  1952. <\A \x454 : \x54>    /T
  1953. <\A \x455 : \x55>    /U
  1954. <\A \x456 : \x56>    /V
  1955. <\A \x457 : \x57>    /W
  1956. <\A \x458 : \x58>    /X
  1957. <\A \x459 : \x59>    /Y
  1958. <\A \x45a : \x5a>    /Z
  1959. <\A \x45b : \x5b>    /bracketleft
  1960. <\A \x45c : \x5c>    /backslash
  1961. <\A \x45d : \x5d>    /bracketright
  1962. <\A \x45e : \x5e>    /asciicircum
  1963. <\A \x45f : \x5f>    /underscore
  1964. <\A \x460 : \x60>    /quoteleft
  1965. <\A \x461 : \x61>    /a
  1966. <\A \x462 : \x62>    /b
  1967. <\A \x463 : \x63>    /c
  1968. <\A \x464 : \x64>    /d
  1969. <\A \x465 : \x65>    /e
  1970. <\A \x466 : \x66>    /f
  1971. <\A \x467 : \x67>    /g
  1972. <\A \x468 : \x68>    /h
  1973. <\A \x469 : \x69>    /i
  1974. <\A \x46a : \x6a>    /j
  1975. <\A \x46b : \x6b>    /k
  1976. <\A \x46c : \x6c>    /l
  1977. <\A \x46d : \x6d>    /m
  1978. <\A \x46e : \x6e>    /n
  1979. <\A \x46f : \x6f>    /o
  1980. <\A \x470 : \x70>    /p
  1981. <\A \x471 : \x71>    /q
  1982. <\A \x472 : \x72>    /r
  1983. <\A \x473 : \x73>    /s
  1984. <\A \x474 : \x74>    /t
  1985. <\A \x475 : \x75>    /u
  1986. <\A \x476 : \x76>    /v
  1987. <\A \x477 : \x77>    /w
  1988. <\A \x478 : \x78>    /x
  1989. <\A \x479 : \x79>    /y
  1990. <\A \x47a : \x7a>    /z
  1991. <\A \x47b : \x7b>    /braceleft
  1992. <\A \x47c : \x7c>    /bar
  1993. <\A \x47d : \x7d>    /braceright
  1994. <\A \x47e : \x7e>    /asciitilde
  1995.  
  1996. All of the Symbol characters.
  1997. They are in the Document-only space because many/most of them
  1998. map to commands in Math mode.
  1999. <\x820 : \x506 \x20 \x505>    /space
  2000. <\xc20 : \x506 \x20 \x505>    /space
  2001. <\x821 : \x506 \x21 \x505>    /exclam
  2002. <\xc21 : \x506 \x21 \x505>    /exclam
  2003. <\x822 : \x506 \x22 \x505>    /universal
  2004. <\xc22 : \x506 \x22 \x505>    /universal
  2005. <\x823 : \x506 \x23 \x505>    /numbersign
  2006. <\xc23 : \x506 \x23 \x505>    /numbersign
  2007. <\x824 : \x506 \x24 \x505>    /existential
  2008. <\xc24 : \x506 \x24 \x505>    /existential
  2009. <\x825 : \x506 \x25 \x505>    /percent
  2010. <\xc25 : \x506 \x25 \x505>    /percent
  2011. <\x826 : \x506 \x26 \x505>    /ampersand
  2012. <\xc26 : \x506 \x26 \x505>    /ampersand
  2013. <\x827 : \x506 \x27 \x505>    /suchthat
  2014. <\xc27 : \x506 \x27 \x505>    /suchthat
  2015. <\x828 : \x506 \x28 \x505>    /parenleft
  2016. <\xc28 : \x506 \x28 \x505>    /parenleft
  2017. <\x829 : \x506 \x29 \x505>    /parenright
  2018. <\xc29 : \x506 \x29 \x505>    /parenright
  2019. <\x82a : \x506 \x2a \x505>    /asteriskmath
  2020. <\xc2a : \x506 \x2a \x505>    /asteriskmath
  2021. <\x82b : \x506 \x2b \x505>    /plus
  2022. <\xc2b : \x506 \x2b \x505>    /plus
  2023. <\x82c : \x506 \x2c \x505>    /comma
  2024. <\xc2c : \x506 \x2c \x505>    /comma
  2025. <\x82d : \x506 \x2d \x505>    /minus
  2026. <\xc2d : \x506 \x2d \x505>    /minus
  2027. <\x82e : \x506 \x2e \x505>    /period
  2028. <\xc2e : \x506 \x2e \x505>    /period
  2029. <\x82f : \x506 \x2f \x505>    /slash
  2030. <\xc2f : \x506 \x2f \x505>    /slash
  2031. <\x830 : \x506 \x30 \x505>    /zero
  2032. <\xc30 : \x506 \x30 \x505>    /zero
  2033. <\x831 : \x506 \x31 \x505>    /one
  2034. <\xc31 : \x506 \x31 \x505>    /one
  2035. <\x832 : \x506 \x32 \x505>    /two
  2036. <\xc32 : \x506 \x32 \x505>    /two
  2037. <\x833 : \x506 \x33 \x505>    /three
  2038. <\xc33 : \x506 \x33 \x505>    /three
  2039. <\x834 : \x506 \x34 \x505>    /four
  2040. <\xc34 : \x506 \x34 \x505>    /four
  2041. <\x835 : \x506 \x35 \x505>    /five
  2042. <\xc35 : \x506 \x35 \x505>    /five
  2043. <\x836 : \x506 \x36 \x505>    /six
  2044. <\xc36 : \x506 \x36 \x505>    /six
  2045. <\x837 : \x506 \x37 \x505>    /seven
  2046. <\xc37 : \x506 \x37 \x505>    /seven
  2047. <\x838 : \x506 \x38 \x505>    /eight
  2048. <\xc38 : \x506 \x38 \x505>    /eight
  2049. <\x839 : \x506 \x39 \x505>    /nine
  2050. <\xc39 : \x506 \x39 \x505>    /nine
  2051. <\x83a : \x506 \x3a \x505>    /colon
  2052. <\xc3a : \x506 \x3a \x505>    /colon
  2053. <\x83b : \x506 \x3b \x505>    /semicolon
  2054. <\xc3b : \x506 \x3b \x505>    /semicolon
  2055. <\x83c : \x506 \x3c \x505>    /less
  2056. <\xc3c : \x506 \x3c \x505>    /less
  2057. <\x83d : \x506 \x3d \x505>    /equal
  2058. <\xc3d : \x506 \x3d \x505>    /equal
  2059. <\x83e : \x506 \x3e \x505>    /greater
  2060. <\xc3e : \x506 \x3e \x505>    /greater
  2061. <\x83f : \x506 \x3f \x505>    /question
  2062. <\xc3f : \x506 \x3f \x505>    /question
  2063. <\x840 : \x506 \x40 \x505>    /congruent
  2064. <\xc40 : \x506 \x40 \x505>    /congruent
  2065. <\x841 : \x506 \x41 \x505>    /Alpha
  2066. <\xc41 : \x506 \x41 \x505>    /Alpha
  2067. <\x842 : \x506 \x42 \x505>    /Beta
  2068. <\xc42 : \x506 \x42 \x505>    /Beta
  2069. <\x843 : \x506 \x43 \x505>    /Chi
  2070. <\xc43 : \x506 \x43 \x505>    /Chi
  2071. <\x844 : \x506 \x44 \x505>    /Delta
  2072. <\xc44 : \x506 \x44 \x505>    /Delta
  2073. <\x845 : \x506 \x45 \x505>    /Epsilon
  2074. <\xc45 : \x506 \x45 \x505>    /Epsilon
  2075. <\x846 : \x506 \x46 \x505>    /Phi
  2076. <\xc46 : \x506 \x46 \x505>    /Phi
  2077. <\x847 : \x506 \x47 \x505>    /Gamma
  2078. <\xc47 : \x506 \x47 \x505>    /Gamma
  2079. <\x848 : \x506 \x48 \x505>    /Eta
  2080. <\xc48 : \x506 \x48 \x505>    /Eta
  2081. <\x849 : \x506 \x49 \x505>    /Iota
  2082. <\xc49 : \x506 \x49 \x505>    /Iota
  2083. <\x84a : \x506 \x4a \x505>    /theta1
  2084. <\xc4a : \x506 \x4a \x505>    /theta1
  2085. <\x84b : \x506 \x4b \x505>    /Kappa
  2086. <\xc4b : \x506 \x4b \x505>    /Kappa
  2087. <\x84c : \x506 \x4c \x505>    /Lambda
  2088. <\xc4c : \x506 \x4c \x505>    /Lambda
  2089. <\x84d : \x506 \x4d \x505>    /Mu
  2090. <\xc4d : \x506 \x4d \x505>    /Mu
  2091. <\x84e : \x506 \x4e \x505>    /Nu
  2092. <\xc4e : \x506 \x4e \x505>    /Nu
  2093. <\x84f : \x506 \x4f \x505>    /Omicron
  2094. <\xc4f : \x506 \x4f \x505>    /Omicron
  2095. <\x850 : \x506 \x50 \x505>    /Pi
  2096. <\xc50 : \x506 \x50 \x505>    /Pi
  2097. <\x851 : \x506 \x51 \x505>    /Theta
  2098. <\xc51 : \x506 \x51 \x505>    /Theta
  2099. <\x852 : \x506 \x52 \x505>    /Rho
  2100. <\xc52 : \x506 \x52 \x505>    /Rho
  2101. <\x853 : \x506 \x53 \x505>    /Sigma
  2102. <\xc53 : \x506 \x53 \x505>    /Sigma
  2103. <\x854 : \x506 \x54 \x505>    /Tau
  2104. <\xc54 : \x506 \x54 \x505>    /Tau
  2105. <\x855 : \x506 \x55 \x505>    /Upsilon
  2106. <\xc55 : \x506 \x55 \x505>    /Upsilon
  2107. <\x856 : \x506 \x56 \x505>    /sigma1
  2108. <\xc56 : \x506 \x56 \x505>    /sigma1
  2109. <\x857 : \x506 \x57 \x505>    /Omega
  2110. <\xc57 : \x506 \x57 \x505>    /Omega
  2111. <\x858 : \x506 \x58 \x505>    /Xi
  2112. <\xc58 : \x506 \x58 \x505>    /Xi
  2113. <\x859 : \x506 \x59 \x505>    /Psi
  2114. <\xc59 : \x506 \x59 \x505>    /Psi
  2115. <\x85a : \x506 \x5a \x505>    /Zeta
  2116. <\xc5a : \x506 \x5a \x505>    /Zeta
  2117. <\x85b : \x506 \x5b \x505>    /bracketleft
  2118. <\xc5b : \x506 \x5b \x505>    /bracketleft
  2119. <\x85c : \x506 \x5c \x505>    /therefore
  2120. <\xc5c : \x506 \x5c \x505>    /therefore
  2121. <\x85d : \x506 \x5d \x505>    /bracketright
  2122. <\xc5d : \x506 \x5d \x505>    /bracketright
  2123. <\x85e : \x506 \x5e \x505>    /perpendicular
  2124. <\xc5e : \x506 \x5e \x505>    /perpendicular
  2125. <\x85f : \x506 \x5f \x505>    /underscore
  2126. <\xc5f : \x506 \x5f \x505>    /underscore
  2127. <\x860 : \x506 \x60 \x505>    /radicalex
  2128. <\xc60 : \x506 \x60 \x505>    /radicalex
  2129. <\x861 : \x506 \x61 \x505>    /alpha
  2130. <\xc61 : \x506 \x61 \x505>    /alpha
  2131. <\x862 : \x506 \x62 \x505>    /beta
  2132. <\xc62 : \x506 \x62 \x505>    /beta
  2133. <\x863 : \x506 \x63 \x505>    /chi
  2134. <\xc63 : \x506 \x63 \x505>    /chi
  2135. <\x864 : \x506 \x64 \x505>    /delta
  2136. <\xc64 : \x506 \x64 \x505>    /delta
  2137. <\x865 : \x506 \x65 \x505>    /epsilon
  2138. <\xc65 : \x506 \x65 \x505>    /epsilon
  2139. <\x866 : \x506 \x66 \x505>    /phi
  2140. <\xc66 : \x506 \x66 \x505>    /phi
  2141. <\x867 : \x506 \x67 \x505>    /gamma
  2142. <\xc67 : \x506 \x67 \x505>    /gamma
  2143. <\x868 : \x506 \x68 \x505>    /eta
  2144. <\xc68 : \x506 \x68 \x505>    /eta
  2145. <\x869 : \x506 \x69 \x505>    /iota
  2146. <\xc69 : \x506 \x69 \x505>    /iota
  2147. <\x86a : \x506 \x6a \x505>    /phi1
  2148. <\xc6a : \x506 \x6a \x505>    /phi1
  2149. <\x86b : \x506 \x6b \x505>    /kappa
  2150. <\xc6b : \x506 \x6b \x505>    /kappa
  2151. <\x86c : \x506 \x6c \x505>    /lambda
  2152. <\xc6c : \x506 \x6c \x505>    /lambda
  2153. <\x86d : \x506 \x6d \x505>    /mu
  2154. <\xc6d : \x506 \x6d \x505>    /mu
  2155. <\x86e : \x506 \x6e \x505>    /nu
  2156. <\xc6e : \x506 \x6e \x505>    /nu
  2157. <\x86f : \x506 \x6f \x505>    /omicron
  2158. <\xc6f : \x506 \x6f \x505>    /omicron
  2159. <\x870 : \x506 \x70 \x505>    /pi
  2160. <\xc70 : \x506 \x70 \x505>    /pi
  2161. <\x871 : \x506 \x71 \x505>    /theta
  2162. <\xc71 : \x506 \x71 \x505>    /theta
  2163. <\x872 : \x506 \x72 \x505>    /rho
  2164. <\xc72 : \x506 \x72 \x505>    /rho
  2165. <\x873 : \x506 \x73 \x505>    /sigma
  2166. <\xc73 : \x506 \x73 \x505>    /sigma
  2167. <\x874 : \x506 \x74 \x505>    /tau
  2168. <\xc74 : \x506 \x74 \x505>    /tau
  2169. <\x875 : \x506 \x75 \x505>    /upsilon
  2170. <\xc75 : \x506 \x75 \x505>    /upsilon
  2171. <\x876 : \x506 \x76 \x505>    /omega1
  2172. <\xc76 : \x506 \x76 \x505>    /omega1
  2173. <\x877 : \x506 \x77 \x505>    /omega
  2174. <\xc77 : \x506 \x77 \x505>    /omega
  2175. <\x878 : \x506 \x78 \x505>    /xi
  2176. <\xc78 : \x506 \x78 \x505>    /xi
  2177. <\x879 : \x506 \x79 \x505>    /psi
  2178. <\xc79 : \x506 \x79 \x505>    /psi
  2179. <\x87a : \x506 \x7a \x505>    /zeta
  2180. <\xc7a : \x506 \x7a \x505>    /zeta
  2181. <\x87b : \x506 \x7b \x505>    /braceleft
  2182. <\xc7b : \x506 \x7b \x505>    /braceleft
  2183. <\x87c : \x506 \x7c \x505>    /bar
  2184. <\xc7c : \x506 \x7c \x505>    /bar
  2185. <\x87d : \x506 \x7d \x505>    /braceright
  2186. <\xc7d : \x506 \x7d \x505>    /braceright
  2187. <\x87e : \x506 \x7e \x505>    /similar
  2188. <\xc7e : \x506 \x7e \x505>    /similar
  2189. <\x8a1 : \x506 \xa1 \x505>    /Upsilon1
  2190. <\xca1 : \x506 \xa1 \x505>    /Upsilon1
  2191. <\x8a2 : \x506 \xa2 \x505>    /minute
  2192. <\xca2 : \x506 \xa2 \x505>    /minute
  2193. <\x8a3 : \x506 \xa3 \x505>    /lessequal
  2194. <\xca3 : \x506 \xa3 \x505>    /lessequal
  2195. <\x8a4 : \x506 \xa4 \x505>    /fraction
  2196. <\xca4 : \x506 \xa4 \x505>    /fraction
  2197. <\x8a5 : \x506 \xa5 \x505>    /infinity
  2198. <\xca5 : \x506 \xa5 \x505>    /infinity
  2199. <\x8a6 : \x506 \xa6 \x505>    /florin
  2200. <\xca6 : \x506 \xa6 \x505>    /florin
  2201. <\x8a7 : \x506 \xa7 \x505>    /club
  2202. <\xca7 : \x506 \xa7 \x505>    /club
  2203. <\x8a8 : \x506 \xa8 \x505>    /diamond
  2204. <\xca8 : \x506 \xa8 \x505>    /diamond
  2205. <\x8a9 : \x506 \xa9 \x505>    /heart
  2206. <\xca9 : \x506 \xa9 \x505>    /heart
  2207. <\x8aa : \x506 \xaa \x505>    /spade
  2208. <\xcaa : \x506 \xaa \x505>    /spade
  2209. <\x8ab : \x506 \xab \x505>    /arrowboth
  2210. <\xcab : \x506 \xab \x505>    /arrowboth
  2211.  \x8ac : \x506 \xac \x505     /arrowleft
  2212. <\xcac : \x506 \xac \x505>    /arrowleft
  2213.  \x8ad : \x506 \xad \x505     /arrowup
  2214. <\xcad : \x506 \xad \x505>    /arrowup
  2215.  \x8ae : \x506 \xae \x505     /arrowright
  2216. <\xcae : \x506 \xae \x505>    /arrowright
  2217.  \x8af : \x506 \xaf \x505     /arrowdown
  2218. <\xcaf : \x506 \xaf \x505>    /arrowdown
  2219. <\x8b0 : \x506 \xb0 \x505>    /degree
  2220. <\xcb0 : \x506 \xb0 \x505>    /degree
  2221. <\x8b1 : \x506 \xb1 \x505>    /plusminus
  2222. <\xcb1 : \x506 \xb1 \x505>    /plusminus
  2223. <\x8b2 : \x506 \xb2 \x505>    /second
  2224. <\xcb2 : \x506 \xb2 \x505>    /second
  2225. <\x8b3 : \x506 \xb3 \x505>    /greaterequal
  2226. <\xcb3 : \x506 \xb3 \x505>    /greaterequal
  2227. <\x8b4 : \x506 \xb4 \x505>    /multiply
  2228. <\xcb4 : \x506 \xb4 \x505>    /multiply
  2229. <\x8b5 : \x506 \xb5 \x505>    /proportional
  2230. <\xcb5 : \x506 \xb5 \x505>    /proportional
  2231. <\x8b6 : \x506 \xb6 \x505>    /partialdiff
  2232. <\xcb6 : \x506 \xb6 \x505>    /partialdiff
  2233. <\x8b7 : \x506 \xb7 \x505>    /bullet
  2234. <\xcb7 : \x506 \xb7 \x505>    /bullet
  2235. <\x8b8 : \x506 \xb8 \x505>    /divide
  2236. <\xcb8 : \x506 \xb8 \x505>    /divide
  2237. <\x8b9 : \x506 \xb9 \x505>    /notequal
  2238. <\xcb9 : \x506 \xb9 \x505>    /notequal
  2239. <\x8ba : \x506 \xba \x505>    /equivalence
  2240. <\xcba : \x506 \xba \x505>    /equivalence
  2241. <\x8bb : \x506 \xbb \x505>    /approxequal
  2242. <\xcbb : \x506 \xbb \x505>    /approxequal
  2243. <\x8bc : \x506 \xbc \x505>    /ellipsis
  2244. <\xcbc : \x506 \xbc \x505>    /ellipsis
  2245. <\x8bd : \x506 \xbd \x505>    /arrowvertex
  2246. <\xcbd : \x506 \xbd \x505>    /arrowvertex
  2247. <\x8be : \x506 \xbe \x505>    /arrowhorizex
  2248. <\xcbe : \x506 \xbe \x505>    /arrowhorizex
  2249. <\x8bf : \x506 \xbf \x505>    /carriagereturn
  2250. <\xcbf : \x506 \xbf \x505>    /carriagereturn
  2251. <\x8c0 : \x506 \xc0 \x505>    /aleph
  2252. <\xcc0 : \x506 \xc0 \x505>    /aleph
  2253. <\x8c1 : \x506 \xc1 \x505>    /Ifraktur
  2254. <\xcc1 : \x506 \xc1 \x505>    /Ifraktur
  2255. <\x8c2 : \x506 \xc2 \x505>    /Rfraktur
  2256. <\xcc2 : \x506 \xc2 \x505>    /Rfraktur
  2257. <\x8c3 : \x506 \xc3 \x505>    /weierstrass
  2258. <\xcc3 : \x506 \xc3 \x505>    /weierstrass
  2259. <\x8c4 : \x506 \xc4 \x505>    /circlemultiply
  2260. <\xcc4 : \x506 \xc4 \x505>    /circlemultiply
  2261. <\x8c5 : \x506 \xc5 \x505>    /circleplus
  2262. <\xcc5 : \x506 \xc5 \x505>    /circleplus
  2263. <\x8c6 : \x506 \xc6 \x505>    /emptyset
  2264. <\xcc6 : \x506 \xc6 \x505>    /emptyset
  2265. <\x8c7 : \x506 \xc7 \x505>    /intersection
  2266. <\xcc7 : \x506 \xc7 \x505>    /intersection
  2267. <\x8c8 : \x506 \xc8 \x505>    /union
  2268. <\xcc8 : \x506 \xc8 \x505>    /union
  2269. <\x8c9 : \x506 \xc9 \x505>    /propersuperset
  2270. <\xcc9 : \x506 \xc9 \x505>    /propersuperset
  2271. <\x8ca : \x506 \xca \x505>    /reflexsuperset
  2272. <\xcca : \x506 \xca \x505>    /reflexsuperset
  2273. <\x8cb : \x506 \xcb \x505>    /notsubset
  2274. <\xccb : \x506 \xcb \x505>    /notsubset
  2275. <\x8cc : \x506 \xcc \x505>    /propersubset
  2276. <\xccc : \x506 \xcc \x505>    /propersubset
  2277. <\x8cd : \x506 \xcd \x505>    /reflexsubset
  2278. <\xccd : \x506 \xcd \x505>    /reflexsubset
  2279. <\x8ce : \x506 \xce \x505>    /element
  2280. <\xcce : \x506 \xce \x505>    /element
  2281. <\x8cf : \x506 \xcf \x505>    /notelement
  2282. <\xccf : \x506 \xcf \x505>    /notelement
  2283. <\x8d0 : \x506 \xd0 \x505>    /angle
  2284. <\xcd0 : \x506 \xd0 \x505>    /angle
  2285. <\x8d1 : \x506 \xd1 \x505>    /gradient
  2286. <\xcd1 : \x506 \xd1 \x505>    /gradient
  2287. <\x8d2 : \x506 \xd2 \x505>    /registerserif
  2288. <\xcd2 : \x506 \xd2 \x505>    /registerserif
  2289. <\x8d3 : \x506 \xd3 \x505>    /copyrightserif
  2290. <\xcd3 : \x506 \xd3 \x505>    /copyrightserif
  2291. <\x8d4 : \x506 \xd4 \x505>    /trademarkserif
  2292. <\xcd4 : \x506 \xd4 \x505>    /trademarkserif
  2293. <\x8d5 : \x506 \xd5 \x505>    /product
  2294. <\xcd5 : \x506 \xd5 \x505>    /product
  2295. <\x8d6 : \x506 \xd6 \x505>    /radical
  2296. <\xcd6 : \x506 \xd6 \x505>    /radical
  2297. <\x8d7 : \x506 \xd7 \x505>    /dotmath
  2298. <\xcd7 : \x506 \xd7 \x505>    /dotmath
  2299. <\x8d8 : \x506 \xd8 \x505>    /logicalnot
  2300. <\xcd8 : \x506 \xd8 \x505>    /logicalnot
  2301. <\x8d9 : \x506 \xd9 \x505>    /logicaland
  2302. <\xcd9 : \x506 \xd9 \x505>    /logicaland
  2303. <\x8da : \x506 \xda \x505>    /logicalor
  2304. <\xcda : \x506 \xda \x505>    /logicalor
  2305. <\x8db : \x506 \xdb \x505>    /arrowdblboth
  2306. <\xcdb : \x506 \xdb \x505>    /arrowdblboth
  2307. <\x8dc : \x506 \xdc \x505>    /arrowdblleft
  2308. <\xcdc : \x506 \xdc \x505>    /arrowdblleft
  2309. <\x8dd : \x506 \xdd \x505>    /arrowdblup
  2310. <\xcdd : \x506 \xdd \x505>    /arrowdblup
  2311. <\x8de : \x506 \xde \x505>    /arrowdblright
  2312. <\xcde : \x506 \xde \x505>    /arrowdblright
  2313. <\x8df : \x506 \xdf \x505>    /arrowdbldown
  2314. <\xcdf : \x506 \xdf \x505>    /arrowdbldown
  2315. <\x8e0 : \x506 \xe0 \x505>    /lozenge
  2316. <\xce0 : \x506 \xe0 \x505>    /lozenge
  2317. <\x8e1 : \x506 \xe1 \x505>    /angleleft
  2318. <\xce1 : \x506 \xe1 \x505>    /angleleft
  2319. <\x8e2 : \x506 \xe2 \x505>    /registersans
  2320. <\xce2 : \x506 \xe2 \x505>    /registersans
  2321. <\x8e3 : \x506 \xe3 \x505>    /copyrightsans
  2322. <\xce3 : \x506 \xe3 \x505>    /copyrightsans
  2323. <\x8e4 : \x506 \xe4 \x505>    /trademarksans
  2324. <\xce4 : \x506 \xe4 \x505>    /trademarksans
  2325. <\x8e5 : \x506 \xe5 \x505>    /summation
  2326. <\xce5 : \x506 \xe5 \x505>    /summation
  2327. <\x8e6 : \x506 \xe6 \x505>    /parenlefttp
  2328. <\xce6 : \x506 \xe6 \x505>    /parenlefttp
  2329. <\x8e7 : \x506 \xe7 \x505>    /parenleftex
  2330. <\xce7 : \x506 \xe7 \x505>    /parenleftex
  2331. <\x8e8 : \x506 \xe8 \x505>    /parenleftbt
  2332. <\xce8 : \x506 \xe8 \x505>    /parenleftbt
  2333. <\x8e9 : \x506 \xe9 \x505>    /bracketlefttp
  2334. <\xce9 : \x506 \xe9 \x505>    /bracketlefttp
  2335. <\x8ea : \x506 \xea \x505>    /bracketleftex
  2336. <\xcea : \x506 \xea \x505>    /bracketleftex
  2337. <\x8eb : \x506 \xeb \x505>    /bracketleftbt
  2338. <\xceb : \x506 \xeb \x505>    /bracketleftbt
  2339. <\x8ec : \x506 \xec \x505>    /bracelefttp
  2340. <\xcec : \x506 \xec \x505>    /bracelefttp
  2341. <\x8ed : \x506 \xed \x505>    /braceleftmid
  2342. <\xced : \x506 \xed \x505>    /braceleftmid
  2343. <\x8ee : \x506 \xee \x505>    /braceleftbt
  2344. <\xcee : \x506 \xee \x505>    /braceleftbt
  2345. <\x8ef : \x506 \xef \x505>    /braceex
  2346. <\xcef : \x506 \xef \x505>    /braceex
  2347. <\x8f1 : \x506 \xf1 \x505>    /angleright
  2348. <\xcf1 : \x506 \xf1 \x505>    /angleright
  2349. <\x8f2 : \x506 \xf2 \x505>    /integral
  2350. <\xcf2 : \x506 \xf2 \x505>    /integral
  2351. <\x8f3 : \x506 \xf3 \x505>    /integraltp
  2352. <\xcf3 : \x506 \xf3 \x505>    /integraltp
  2353. <\x8f4 : \x506 \xf4 \x505>    /integralex
  2354. <\xcf4 : \x506 \xf4 \x505>    /integralex
  2355. <\x8f5 : \x506 \xf5 \x505>    /integralbt
  2356. <\xcf5 : \x506 \xf5 \x505>    /integralbt
  2357. <\x8f6 : \x506 \xf6 \x505>    /parenrighttp
  2358. <\xcf6 : \x506 \xf6 \x505>    /parenrighttp
  2359. <\x8f7 : \x506 \xf7 \x505>    /parenrightex
  2360. <\xcf7 : \x506 \xf7 \x505>    /parenrightex
  2361. <\x8f8 : \x506 \xf8 \x505>    /parenrightbt
  2362. <\xcf8 : \x506 \xf8 \x505>    /parenrightbt
  2363. <\x8f9 : \x506 \xf9 \x505>    /bracketrighttp
  2364. <\xcf9 : \x506 \xf9 \x505>    /bracketrighttp
  2365. <\x8fa : \x506 \xfa \x505>    /bracketrightex
  2366. <\xcfa : \x506 \xfa \x505>    /bracketrightex
  2367. <\x8fb : \x506 \xfb \x505>    /bracketrightbt
  2368. <\xcfb : \x506 \xfb \x505>    /bracketrightbt
  2369. <\x8fc : \x506 \xfc \x505>    /bracerighttp
  2370. <\xcfc : \x506 \xfc \x505>    /bracerighttp
  2371. <\x8fd : \x506 \xfd \x505>    /bracerightmid
  2372. <\xcfd : \x506 \xfd \x505>    /bracerightmid
  2373. <\x8fe : \x506 \xfe \x505>    /bracerightbt
  2374. <\xcfe : \x506 \xfe \x505>    /bracerightbt
  2375.