home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / info / emacs-11 (.txt) < prev    next >
GNU Info File  |  1997-09-17  |  49KB  |  871 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.63 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: TeX Mode,  Next: Nroff Mode,  Prev: Outline Mode,  Up: Text
  4. TeX Mode
  5. ========
  6.    TeX is a powerful text formatter written by Donald Knuth; it is also
  7. free, like GNU Emacs.  LaTeX is a simplified input format for TeX,
  8. implemented by TeX macros; it comes with TeX.  SliTeX is a special form
  9. of LaTeX.
  10.    Emacs has a special TeX mode for editing TeX input files.  It
  11. provides facilities for checking the balance of delimiters and for
  12. invoking TeX on all or part of the file.
  13.    TeX mode has three variants, Plain TeX mode, LaTeX mode, and SliTeX
  14. mode (these three distinct major modes differ only slightly).  They are
  15. designed for editing the three different formats.  The command `M-x
  16. tex-mode' looks at the contents of the buffer to determine whether the
  17. contents appear to be either LaTeX input or SliTeX input; if so, it
  18. selects the appropriate mode.  If the file contents do not appear to be
  19. LaTeX or SliTeX, it selects Plain TeX mode.  If the contents are
  20. insufficient to determine this, the variable `tex-default-mode'
  21. controls which mode is used.
  22.    When `M-x tex-mode' does not guess right, you can use the commands
  23. `M-x plain-tex-mode', `M-x latex-mode', and `M-x slitex-mode' to select
  24. explicitly the particular variants of TeX mode.
  25. * Menu:
  26. * Editing: TeX Editing.   Special commands for editing in TeX mode.
  27. * LaTeX: LaTeX Editing.   Additional commands for LaTeX input files.
  28. * Printing: TeX Print.    Commands for printing part of a file with TeX.
  29. * Getting: TeX Distrib.   Getting the latest Unix TeX distribution.
  30. File: emacs,  Node: TeX Editing,  Next: LaTeX Editing,  Up: TeX Mode
  31. TeX Editing Commands
  32. --------------------
  33.    Here are the special commands provided in TeX mode for editing the
  34. text of the file.
  35.      Insert, according to context, either ```' or `"' or `'''
  36.      (`tex-insert-quote').
  37. `LFD'
  38.      Insert a paragraph break (two newlines) and check the previous
  39.      paragraph for unbalanced braces or dollar signs
  40.      (`tex-terminate-paragraph').
  41. `M-x validate-tex-region'
  42.      Check each paragraph in the region for unbalanced braces or dollar
  43.      signs.
  44. `C-c {'
  45.      Insert `{}' and position point between them (`tex-insert-braces').
  46. `C-c }'
  47.      Move forward past the next unmatched close brace (`up-list').
  48.    In TeX, the character `"' is not normally used; we use ```' to start
  49. a quotation and `''' to end one.  To make editing easier under this
  50. formatting convention, TeX mode overrides the normal meaning of the key
  51. `"' with a command that inserts a pair of single-quotes or backquotes
  52. (`tex-insert-quote').  To be precise, this command inserts ```' after
  53. whitespace or an open brace, `"' after a backslash, and `''' after any
  54. other character.
  55.    If you need the character `"' itself in unusual contexts, use `C-q'
  56. to insert it.  Also, `"' with a numeric argument always inserts that
  57. number of `"' characters.
  58.    In TeX mode, `$' has a special syntax code which attempts to
  59. understand the way TeX math mode delimiters match.  When you insert a
  60. `$' that is meant to exit math mode, the position of the matching `$'
  61. that entered math mode is displayed for a second.  This is the same
  62. feature that displays the open brace that matches a close brace that is
  63. inserted.  However, there is no way to tell whether a `$' enters math
  64. mode or leaves it; so when you insert a `$' that enters math mode, the
  65. previous `$' position is shown as if it were a match, even though they
  66. are actually unrelated.
  67.    TeX uses braces as delimiters that must match.  Some users prefer to
  68. keep braces balanced at all times, rather than inserting them singly.
  69. Use `C-c {' (`tex-insert-braces') to insert a pair of braces.  It
  70. leaves point between the two braces so you can insert the text that
  71. belongs inside.  Afterward, use the command `C-c }' (`up-list') to move
  72. forward past the close brace.
  73.    There are two commands for checking the matching of braces.  LFD
  74. (`tex-terminate-paragraph') checks the paragraph before point, and
  75. inserts two newlines to start a new paragraph.  It prints a message in
  76. the echo area if any mismatch is found.  `M-x validate-tex-region'
  77. checks a region, paragraph by paragraph.  When it finds a paragraph that
  78. contains a mismatch, it displays point at the beginning of the paragraph
  79. for a few seconds and sets the mark at that spot.  Scanning continues
  80. until the whole buffer has been checked or until you type another key.
  81. Afterward, you can use the mark ring to find the last several paragraphs
  82. that had mismatches (*note Mark Ring::.).
  83.    Note that Emacs commands count square brackets and parentheses in
  84. TeX mode, not just braces.  This is not strictly correct for the
  85. purpose of checking TeX syntax.  However, parentheses and square
  86. brackets are likely to be used in text as matching delimiters and it is
  87. useful for the various motion commands and automatic match display to
  88. work with them.
  89. File: emacs,  Node: LaTeX Editing,  Next: TeX Print,  Prev: TeX Editing,  Up: TeX Mode
  90. LaTeX Editing Commands
  91. ----------------------
  92.    LaTeX mode, and its variant, SliTeX mode, provide a few extra
  93. features not applicable to plain TeX.
  94. `C-c C-o'
  95.      Insert `\begin' and `\end' for LaTeX block and position point on a
  96.      line between them. (`tex-latex-block').
  97. `C-c C-e'
  98.      Close the last unended block for LaTeX (`tex-close-latex-block').
  99.    In LaTeX input, `\begin' and `\end' commands are used to group
  100. blocks of text.  To insert a `\begin' and a matching `\end' (on a new
  101. line following the `\begin'), use `C-c C-o' (`tex-latex-block').  A
  102. blank line is inserted between the two, and point is left there.  You
  103. can use completion when you enter the block type; to specify additional
  104. block type names beyond the standard list, set the variable
  105. `latex-block-names'.  For example, here's how to add `theorem',
  106. `corollary', and `proof':
  107.      (setq latex-block-names '("theorem" "corollary" "proof"))
  108.    In LaTeX input, `\begin' and `\end' commands must balance.  You can
  109. use `C-c C-e' (`tex-close-latex-block') to insert automatically a
  110. matching `\end' to match the last unmatched `\begin'.  It indents the
  111. `\end' to match the corresponding `\begin'.  It inserts a newline after
  112. `\end' if point is at the beginning of a line.
  113. File: emacs,  Node: TeX Print,  Next: TeX Distrib,  Prev: LaTeX Editing,  Up: TeX Mode
  114. TeX Printing Commands
  115. ---------------------
  116.    You can invoke TeX as an inferior of Emacs on either the entire
  117. contents of the buffer or just a region at a time.  Running TeX in this
  118. way on just one chapter is a good way to see what your changes look
  119. like without taking the time to format the entire file.
  120. `C-c C-r'
  121.      Invoke TeX on the current region, together with the buffer's header
  122.      (`tex-region').
  123. `C-c C-b'
  124.      Invoke TeX on the entire current buffer (`tex-buffer').
  125. `C-c TAB'
  126.      Invoke BibTeX on the current file (`tex-bibtex-file').
  127. `C-c C-f'
  128.      Invoke TeX on the current file (`tex-file').
  129. `C-c C-l'
  130.      Recenter the window showing output from the inferior TeX so that
  131.      the last line can be seen (`tex-recenter-output-buffer').
  132. `C-c C-k'
  133.      Kill the TeX subprocess (`tex-kill-job').
  134. `C-c C-p'
  135.      Print the output from the last `C-c C-r', `C-c C-b', or `C-c C-f'
  136.      command (`tex-print').
  137. `C-c C-v'
  138.      Preview the output from the last `C-c C-r', `C-c C-b', or `C-c
  139.      C-f' command (`tex-view').
  140. `C-c C-q'
  141.      Show the printer queue (`tex-show-print-queue').
  142.    You can pass the current buffer through an inferior TeX by means of
  143. `C-c C-b' (`tex-buffer').  The formatted output appears in a temporary
  144. file; to print it, type `C-c C-p' (`tex-print').  Afterward, you can
  145. use `C-c C-q' (`tex-show-print-queue') to view the progress of your
  146. output towards being printed.  If your terminal has the ability to
  147. display TeX output files, you can preview the output on the terminal
  148. with `C-c C-v' (`tex-view').
  149.    You can specify the directory to use for running TeX by setting the
  150. variable `tex-directory'.  `"."' is the default value.  If your
  151. environment variable `TEXINPUTS' contains relative directory names, or
  152. if your files contains `\input' commands with relative file names, then
  153. `tex-directory' *must* be `"."' or you will get the wrong results.
  154. Otherwise, it is safe to specify some other directory, such as `"/tmp"'.
  155.    If you want to specify which shell commands are used in the inferior
  156. TeX, you can do so by setting the values of the variables
  157. `tex-run-command', `latex-run-command', `slitex-run-command',
  158. `tex-dvi-print-command', `tex-dvi-view-command', and
  159. `tex-show-queue-command'.  You *must* set the value of
  160. `tex-dvi-view-command' for your particular terminal; this variable has
  161. no default value.  The other variables have default values that may (or
  162. may not) be appropriate for your system.
  163.    Normally, the file name given to these commands comes at the end of
  164. the command string; for example, `latex FILENAME'.  In some cases,
  165. however, the file name needs to be embedded in the command; an example
  166. is when you need to provide the file name as an argument to one command
  167. whose output is piped to another.  You can specify where to put the
  168. file name with `*' in the command string.  For example,
  169.      (setq tex-dvi-print-command "dvips -f * | lpr")
  170.    The terminal output from TeX, including any error messages, appears
  171. in a buffer called `*tex-shell*'.  If TeX gets an error, you can switch
  172. to this buffer and feed it input (this works as in Shell mode; *note
  173. Interactive Shell::.).  Without switching to this buffer you can scroll
  174. it so that its last line is visible by typing `C-c C-l'.
  175.    Type `C-c C-k' (`tex-kill-job') to kill the TeX process if you see
  176. that its output is no longer useful.  Using `C-c C-b' or `C-c C-r' also
  177. kills any TeX process still running.
  178.    You can also pass an arbitrary region through an inferior TeX by
  179. typing `C-c C-r' (`tex-region').  This is tricky, however, because most
  180. files of TeX input contain commands at the beginning to set parameters
  181. and define macros, without which no later part of the file will format
  182. correctly.  To solve this problem, `C-c C-r' allows you to designate a
  183. part of the file as containing essential commands; it is included before
  184. the specified region as part of the input to TeX.  The designated part
  185. of the file is called the "header".
  186.    To indicate the bounds of the header in Plain TeX mode, you insert
  187. two special strings in the file.  Insert `%**start of header' before the
  188. header, and `%**end of header' after it.  Each string must appear
  189. entirely on one line, but there may be other text on the line before or
  190. after.  The lines containing the two strings are included in the header.
  191. If `%**start of header' does not appear within the first 100 lines of
  192. the buffer, `C-c C-r' assumes that there is no header.
  193.    In LaTeX mode, the header begins with `\documentstyle' and ends with
  194. `\begin{document}'.  These are commands that LaTeX requires you to use
  195. in any case, so nothing special needs to be done to identify the header.
  196.    The commands (`tex-buffer') and (`tex-region') do all of their work
  197. in a temporary directory, and do not have available any of the auxiliary
  198. files needed by TeX for cross-references; these commands are generally
  199. not suitable for running the final copy in which all of the
  200. cross-references need to be correct.  When you want the auxiliary
  201. files, use `C-c C-f' (`tex-file') which runs TeX on the current
  202. buffer's file, in that file's directory.  Before TeX runs, you will be
  203. asked about saving any modified buffers.  Generally, you need to use
  204. (`tex-file') twice to get cross-references correct.
  205.    For LaTeX files, you can use BibTeX to process the auxiliary file
  206. for the current buffer's file.  BibTeX looks up bibliographic citations
  207. in a data base and prepares the cited references for the bibliography
  208. section.  The command `C-c TAB' (`tex-bibtex-file') runs the shell
  209. command (`tex-bibtex-command') to produce a `.bbl' file for the current
  210. buffer's file.  Generally, you need to do `C-c C-f' (`tex-file') once
  211. to generate the `.aux' file, then do `C-c TAB' (`tex-bibtex-file'), and
  212. then repeat `C-c C-f' (`tex-file') twice more to get the
  213. cross-references correct.
  214.    Entering any kind of TeX mode runs the hooks `text-mode-hook' and
  215. `tex-mode-hook'.  Then it runs either `plain-tex-mode-hook' or
  216. `latex-mode-hook', whichever is appropriate.  For SliTeX files, it
  217. calls `slitex-mode-hook'.  Starting the TeX shell runs the hook
  218. `tex-shell-hook'.  *Note Hooks::.
  219. File: emacs,  Node: TeX Distrib,  Prev: TeX Print,  Up: TeX Mode
  220. Unix TeX Distribution
  221. ---------------------
  222.    TeX for Unix systems can be obtained from the University of
  223. Washington for a distribution fee.
  224.    To order a full distribution, specify whether you prefer 1/4 inch
  225. QIC-24 or 4mm DAT tape (9-track reel-to-reel is no longer available)
  226. and send $210.00 for a (tar or cpio) cartridge, payable to the
  227. University of Washington to:
  228.      Pierre MacKay
  229.      Department of Classics
  230.      Denny Hall, Mail Stop DH-10
  231.      University of Washington
  232.      Seattle, Washington 98195
  233. Purchase orders are acceptable, but there is an extra charge of $10.00,
  234. to pay for processing charges.
  235. For overseas orders please add $20.00 to the base cost for shipment via
  236. air parcel post, or $30.00 for shipment via courier.
  237.    The normal distribution is a tar tape, blocked 20, 1600 bpi, on an
  238. industry standard 2400 foot half-inch reel.  The physical format for the
  239. 1/4 inch streamer cartridges is QIC-24.  System V tapes can be written
  240. in cpio format, blocked 5120 bytes, with ASCII headers.
  241. File: emacs,  Node: Nroff Mode,  Next: Formatted Text,  Prev: TeX Mode,  Up: Text
  242. Nroff Mode
  243. ==========
  244.    Nroff mode is a mode like Text mode but modified to handle nroff
  245. commands present in the text.  Invoke `M-x nroff-mode' to enter this
  246. mode.  It differs from Text mode in only a few ways.  All nroff command
  247. lines are considered paragraph separators, so that filling will never
  248. garble the nroff commands.  Pages are separated by `.bp' commands.
  249. Comments start with backslash-doublequote.  Also, three special
  250. commands are provided that are not in Text mode:
  251. `M-n'
  252.      Move to the beginning of the next line that isn't an nroff command
  253.      (`forward-text-line').  An argument is a repeat count.
  254. `M-p'
  255.      Like `M-n' but move up (`backward-text-line').
  256. `M-?'
  257.      Prints in the echo area the number of text lines (lines that are
  258.      not nroff commands) in the region (`count-text-lines').
  259.    The other feature of Nroff mode is that you can turn on Electric
  260. Nroff mode.  This is a minor mode that you can turn on or off with `M-x
  261. electric-nroff-mode' (*note Minor Modes::.).  When the mode is on, each
  262. time you use RET to end a line that contains an nroff command that
  263. opens a kind of grouping, the matching nroff command to close that
  264. grouping is automatically inserted on the following line.  For example,
  265. if you are at the beginning of a line and type `. ( b RET', this
  266. inserts the matching command `.)b' on a new line following point.
  267.    If you use Outline minor mode with Nroff mode (*note Outline
  268. Mode::.), heading lines are lines of the form `.H' followed by a number
  269. (the header level).
  270.    Entering Nroff mode runs the hook `text-mode-hook', followed by the
  271. hook `nroff-mode-hook' (*note Hooks::.).
  272. File: emacs,  Node: Formatted Text,  Prev: Nroff Mode,  Up: Text
  273. Editing Formatted Text
  274. ======================
  275.    "Enriched mode" is a minor mode for editing files that contain
  276. formatted text in WYSIWYG fashion, as in a word processor.  Currently,
  277. formatted text in Enriched mode can specify fonts, colors, underlining,
  278. margins, and types of filling and justification.  In the future, we plan
  279. to implement other formatting features as well.
  280.    Enriched mode is a minor mode (*note Minor Modes::.).  Typically it
  281. is used in conjunction with Text mode (*note Text Mode::.).  However,
  282. you can also use it with other major modes such as Outline mode and
  283. Indented Text mode.
  284.    Potentially, Emacs can store formatted text files in various file
  285. formats.  Currently, only one format is implemented: "text/enriched"
  286. format, which is defined by the MIME protocol.  *Note Format
  287. Conversion: (elisp)Format Conversion, for details of how Emacs
  288. recognizes and converts file formats.
  289.    The Emacs distribution contains a formatted text file that can serve
  290. as an example.  Its name is `etc/enriched.doc'.  It contains samples
  291. illustrating all the features described in this section.  It also
  292. contains a list of ideas for future enhancements.
  293. * Menu:
  294. * Requesting Formatted Text::   Entering and exiting Enriched mode.
  295. * Hard and Soft Newlines::      There are two different kinds of newlines.
  296. * Editing Format Info::         How to edit text properties.
  297. * Faces: Format Faces.          Bold, italic, underline, etc.
  298. * Color: Format Colors.         Changing the color of text.
  299. * Indent: Format Indentation.   Changing the left and right margins.
  300. * Justification: Format Justification.
  301.                                 Centering, setting text flush with the
  302.                                   left or right margin, etc.
  303. * Other: Format Properties.     The "special" text properties submenu.
  304. * Forcing Enriched Mode::       How to force use of Enriched mode.
  305. File: emacs,  Node: Requesting Formatted Text,  Next: Hard and Soft Newlines,  Up: Formatted Text
  306. Requesting to Edit Formatted Text
  307. ---------------------------------
  308.    Whenever you visit a file that Emacs saved in the text/enriched
  309. format, Emacs automatically converts the formatting information in the
  310. file into Emacs's own internal format (text properties), and turns on
  311. Enriched mode.
  312.    To create a new file of formatted text, first visit the nonexistent
  313. file, then type `M-x enriched-mode' before you start inserting text.
  314. This command turns on Enriched mode.  Do this before you begin inserting
  315. text, to ensure that the text you insert is handled properly.
  316.    More generally, the command `enriched-mode' turns Enriched mode on
  317. if it was off, and off if it was on.  With a prefix argument, this
  318. command turns Enriched mode on if the argument is positive, and turns
  319. the mode off otherwise.
  320.    When you save a buffer while Enriched mode is enabled in it, Emacs
  321. automatically converts the text to text/enriched format while writing it
  322. into the file.  When you visit the file again, Emacs will automatically
  323. recognize the format, reconvert the text, and turn on Enriched mode
  324. again.
  325.    Normally, after reading a file in text/enriched format, Emacs refills
  326. each paragraph to fit the width of the window.  You can turn off this
  327. refilling, to save time, by setting the variable
  328. `enriched-fill-after-visiting' to `nil' or to `ask'.
  329.    In any case, if the window width is the same as the width with which
  330. the file was saved, Emacs trusts that the file is already properly
  331. filled.
  332.    You can add annotations for saving additional text properties, which
  333. Emacs normally does not save, by adding to `enriched-translations'.
  334. Note that the text/enriched standard requires any non-standard
  335. annotations to have names starting with `x-', as in `x-read-only'.
  336. This ensures that they will not conflict with standard annotations that
  337. may be added later.
  338. File: emacs,  Node: Hard and Soft Newlines,  Next: Editing Format Info,  Prev: Requesting Formatted Text,  Up: Formatted Text
  339. Hard and Soft Newlines
  340. ----------------------
  341.    In formatted text, Emacs distinguishes between two different kinds of
  342. newlines, "hard" newlines and "soft" newlines.
  343.    Hard newlines are used to separate paragraphs, or items in a list, or
  344. anywhere that there should always be a line break regardless of the
  345. margins.  The `RET' command (`newline') and `C-o' (`open-line') insert
  346. hard newlines.
  347.    Soft newlines are used to make text fit between the margins.  All the
  348. fill commands, including Auto Fill, insert soft newlines--and they
  349. delete only soft newlines.
  350.    Although hard and soft newlines look the same, it is important to
  351. bear the difference in mind.  Do not use RET to break lines in the
  352. middle of filled paragraphs, or else you will get hard newlines that are
  353. barriers to further filling.  Instead, let Auto Fill mode break lines,
  354. so that if the text or the margins change, Emacs can refill the lines
  355. properly.  *Note Auto Fill::.
  356.    On the other hand, in tables and lists, where the lines should always
  357. remain as you type them, you can use RET to end lines.  For these
  358. lines, you may also want to set the justification style to `unfilled'.
  359. *Note Format Justification::.
  360. File: emacs,  Node: Editing Format Info,  Next: Format Faces,  Prev: Hard and Soft Newlines,  Up: Formatted Text
  361. Editing Format Information
  362. --------------------------
  363.    There are two ways to alter the formatting information for a
  364. formatted text file: with keyboard commands, and with the mouse.
  365.    The easiest way to add properties to your document is by using the
  366. Text Properties menu.  You can get to this menu in two ways: from the
  367. Edit menu in the menu bar, or with `C-mouse-2' (hold the CTRL key and
  368. press the middle mouse button).
  369.    Most of the items in the Text Properties menu lead to other submenus.
  370. These are described in the sections that follow.  Some items run
  371. commands directly:
  372. `Remove Properties'
  373.      Delete from the region all the text properties that the Text
  374.      Properties menu works with (`facemenu-remove-props').
  375. `Remove All'
  376.      Delete *all* text properties from the region
  377.      (`facemenu-remove-all').
  378. `List Properties'
  379.      List all the text properties of the character following point
  380.      (`list-text-properties-at').
  381. `Display Faces'
  382.      Display a list of all the defined faces.
  383. `Display Colors'
  384.      Display a list of all the defined colors.
  385. File: emacs,  Node: Format Faces,  Next: Format Colors,  Prev: Editing Format Info,  Up: Formatted Text
  386. Faces in Formatted Text
  387. -----------------------
  388.    The Faces submenu lists various Emacs faces including `bold',
  389. `italic', and `underline'.  Selecting one of these adds the chosen face
  390. to the region.  *Note Faces::.  You can also specify a face with these
  391. keyboard commands:
  392. `M-g d'
  393.      Set the region, or the next inserted character, to the `default'
  394.      face (`facemenu-set-default').
  395. `M-g b'
  396.      Set the region, or the next inserted character, to the `bold' face
  397.      (`facemenu-set-bold').
  398. `M-g i'
  399.      Set the region, or the next inserted character, to the `italic'
  400.      face (`facemenu-set-italic').
  401. `M-g l'
  402.      Set the region, or the next inserted character, to the
  403.      `bold-italic' face (`facemenu-set-bold-italic').
  404. `M-g u'
  405.      Set the region, or the next inserted character, to the `underline'
  406.      face (`facemenu-set-underline').
  407. `M-g o FACE RET'
  408.      Set the region, or the next inserted character, to the face FACE
  409.      (`facemenu-set-face').
  410.    If you use these commands with a prefix argument--or, in Transient
  411. Mark mode, if the region is not active--then these commands specify a
  412. face to use for your next self-inserting input.  *Note Transient
  413. Mark::.  This applies to both the keyboard commands and the menu
  414. commands.
  415.    Enriched mode defines two additional faces: `excerpt' and `fixed'.
  416. These correspond to codes used in the text/enriched file format.
  417.    The `excerpt' face is intended for quotations.  This face is the
  418. same as `italic' unless you customize it (*note Modifying Faces::.).
  419.    The `fixed' face is meant to say, "Use a fixed-width font for this
  420. part of the text."  Emacs currently supports only fixed-width fonts;
  421. therefore, the `fixed' annotation is not necessary now.  However, we
  422. plan to support variable width fonts in future Emacs versions, and
  423. other systems that display text/enriched format may not use a
  424. fixed-width font as the default.  So if you specifically want a certain
  425. part of the text to use a fixed-width font, you should specify the
  426. `fixed' face for that part.
  427.    The `fixed' face is normally defined to use a different font from
  428. the default.  However, systems have different fonts installed, you may
  429. need to customize this.
  430.    If your terminal cannot display different faces, you will not be able
  431. to see them, but you can still edit documents containing faces.  You can
  432. even add faces and colors to documents.  They will be visible when the
  433. file is viewed on a terminal that can display them.
  434. File: emacs,  Node: Format Colors,  Next: Format Indentation,  Prev: Format Faces,  Up: Formatted Text
  435. Colors in Formatted Text
  436. ------------------------
  437.    You can specify foreground and background colors for portions of the
  438. text.  There is a menu for specifying the foreground color and a menu
  439. for specifying the background color.  Each color menu lists all the
  440. colors that you have used in Enriched mode in the current Emacs session.
  441.    If you specify a color with a prefix argument--or, in Transient Mark
  442. mode, if the region is not active--then it applies to your next
  443. self-inserting input.  *Note Transient Mark::.  Otherwise, the command
  444. applies to the region.
  445.    Each color menu contains one additional item: `Other'.  You can use
  446. this item to specify a color that is not listed in the menu; it reads
  447. the color name with the minibuffer.  To display list of available colors
  448. and their names, use the `Display Colors' menu item in the Text
  449. Properties menu (*note Editing Format Info::.).
  450.    Any color that you specify in this way, or that is mentioned in a
  451. formatted text file that you read in, is added to both color menus for
  452. the duration of the Emacs session.
  453.    There are no key bindings for specifying colors, but you can do so
  454. with the extended commands `M-x facemenu-set-foreground' and `M-x
  455. facemenu-set-background'.  Both of these commands read the name of the
  456. color with the minibuffer.
  457. File: emacs,  Node: Format Indentation,  Next: Format Justification,  Prev: Format Colors,  Up: Formatted Text
  458. Indentation in Formatted Text
  459. -----------------------------
  460.    When editing formatted text, you can specify different amounts of
  461. indentation for the right or left margin of an entire paragraph or a
  462. part of a paragraph.  The margins you specify automatically affect the
  463. Emacs fill commands (*note Filling::.) and line-breaking commands.
  464.    The Indentation submenu provides a convenient interface for
  465. specifying these properties.  The submenu contains four items:
  466. `Indent More'
  467.      Indent the region by 4 columns (`increase-left-margin').  In
  468.      Enriched mode, this command is also available on `C-x TAB'; if you
  469.      supply a numeric argument, that says how many columns to add to the
  470.      margin (a negative argument reduces the number of columns).
  471. `Indent Less'
  472.      Remove 4 columns of indentation from the region.
  473. `Indent Right More'
  474.      Make the text narrower by indenting 4 columns at the right margin.
  475. `Indent Right Less'
  476.      Remove 4 columns of indentation from the right margin.
  477.    You can use these commands repeatedly to increase or decrease the
  478. indentation.
  479.    The most common way to use these commands is to change the
  480. indentation of an entire paragraph.  However, that is not the only use.
  481. You can change the margins at any point; the new values take effect at
  482. the end of the line (for right margins) or the beginning of the next
  483. line (for left margins).
  484.    This makes it possible to format paragraphs with "hanging indents",
  485. which means that the first line is indented less than subsequent lines.
  486. To set up a hanging indent, increase the indentation of the region
  487. starting after the first word of the paragraph and running until the end
  488. of the paragraph.
  489.    Indenting the first line of a paragraph is easier.  Set the margin
  490. for the whole paragraph where you want it to be for the body of the
  491. paragraph, then indent the first line by inserting extra spaces or tabs.
  492.    Sometimes, as a result of editing, the filling of a paragraph becomes
  493. messed up--parts of the paragraph may extend past the left or right
  494. margins.  When this happens, use `M-q' (`fill-paragraph') to refill the
  495. paragraph.
  496.    The variable `standard-indent' specifies how many columns these
  497. commands should add to or subtract from the indentation.  The default
  498. value is 4.
  499.    Enriched mode automatically sets the variable `fill-column' based on
  500. the window width: it leaves a certain number of columns for the right
  501. margin.  The variable `enriched-default-right-margin' says how many
  502. columns.  The default value is 10.
  503. File: emacs,  Node: Format Justification,  Next: Format Properties,  Prev: Format Indentation,  Up: Formatted Text
  504. Justification in Formatted Text
  505. -------------------------------
  506.    When editing formatted text, you can specify various styles of
  507. justification for a paragraph.  The style you specify automatically
  508. affects the Emacs fill commands.
  509.    The Justification submenu provides a convenient interface for
  510. specifying the style.  The submenu contains five items:
  511. `Flush Left'
  512.      This is the most common style of justification (at least for
  513.      English).  Lines are aligned at the left margin but left uneven at
  514.      the right.
  515. `Flush Right'
  516.      This aligns each line with the right margin.  Spaces and tabs are
  517.      added on the left, if necessary, to make lines line up on the
  518.      right.
  519. `Full'
  520.      This justifies the text, aligning both edges of each line.
  521.      Justified text looks very nice in a printed book, where the spaces
  522.      can all be adjusted equally, but it does not look as nice with a
  523.      fixed-width font on the screen.  Perhaps a future version of Emacs
  524.      will be able to adjust the width of spaces in a line to achieve
  525.      elegant justification.
  526. `Center'
  527.      This centers every line between the current margins.
  528. `None'
  529.      This turns off filling entirely.  Each line will remain as you
  530.      wrote it; the fill and auto-fill functions will have no effect on
  531.      text which has this setting.  You can, however, still indent the
  532.      left margin.  In unfilled regions, all newlines are treated as
  533.      hard newlines (*note Hard and Soft Newlines::.) .
  534.    In Enriched mode, you can also specify justification from the
  535. keyboard using the `M-j' prefix character:
  536. `M-j l'
  537.      Make the region left-filled (`set-justification-left').
  538. `M-j r'
  539.      Make the region right-filled (`set-justification-right').
  540. `M-j f'
  541.      Make the region fully-justified (`set-justification-full').
  542. `M-j c'
  543. `M-S'
  544.      Make the region centered (`set-justification-center').
  545. `M-j u'
  546.      Make the region unfilled (`set-justification-none').
  547.    Justification styles apply to entire paragraphs.  All the
  548. justification-changing commands operate on the paragraph containing
  549. point, or, if the region is active, on all paragraphs which overlap the
  550. region.
  551.    The default justification style is specified by the variable
  552. `default-justification'.  Its value should be one of the symbols
  553. `left', `right', `full', `center', or `none'.
  554. File: emacs,  Node: Format Properties,  Next: Forcing Enriched Mode,  Prev: Format Justification,  Up: Formatted Text
  555. Setting Other Text Properties
  556. -----------------------------
  557.    The Other Properties menu lets you add or remove three other useful
  558. text properties: `read-only', `invisible' and `intangible'.  The
  559. `intangible' property disallows moving point within the text, the
  560. `invisible' text property hides text from display, and the `read-only'
  561. property disallows alteration of the text.
  562.    Each of these special properties has a menu item to add it to the
  563. region.  The last menu item, `Remove Special', removes all of these
  564. special properties from the text in the region.
  565.    Currently, the `invisible' and `intangible' properties are *not*
  566. saved in the text/enriched format.  The `read-only' property is saved,
  567. but it is not a standard part of the text/enriched format, so other
  568. editors may not respect it.
  569. File: emacs,  Node: Forcing Enriched Mode,  Prev: Format Properties,  Up: Formatted Text
  570. Forcing Enriched Mode
  571. ---------------------
  572.    Normally, Emacs knows when you are editing formatted text because it
  573. recognizes the special annotations used in the file that you visited.
  574. However, there are situations in which you must take special actions to
  575. convert file contents or turn on Enriched mode:
  576.    * When you visit a file that was created with some other editor,
  577.      Emacs may not recognize the file as being in the text/enriched
  578.      format.  In this case, when you visit the file you will see the
  579.      formatting commands rather than the formatted text.  Type `M-x
  580.      format-decode-buffer' to translate it.
  581.    * When you *insert* a file into a buffer, rather than visiting it.
  582.      Emacs does the necessary conversions on the text which you insert,
  583.      but it does not enable Enriched mode.  If you wish to do that,
  584.      type `M-x enriched-mode'.
  585.    The command `format-decode-buffer' translates text in various
  586. formats into Emacs's internal format.  It asks you to specify the format
  587. to translate from; however, normally you can type just RET, which tells
  588. Emacs to guess the format.
  589.    If you wish to look at a file in text/enriched format in its raw
  590. form, as a sequence of characters with no formatting, use `M-x
  591. format-find-file RET FILENAME RET RET'.  The empty second argument
  592. means, "read without format conversion."
  593. File: emacs,  Node: Programs,  Next: Building,  Prev: Text,  Up: Top
  594. Editing Programs
  595. ****************
  596.    Emacs has many commands designed to understand the syntax of
  597. programming languages such as Lisp and C.  These commands can
  598.    * Move over or kill balanced expressions or "sexps" (*note Lists::.).
  599.    * Move over or mark top-level expressions--"defuns", in Lisp;
  600.      functions, in C (*note Defuns::.).
  601.    * Show how parentheses balance (*note Matching::.).
  602.    * Insert, kill or align comments (*note Comments::.).
  603.    * Follow the usual indentation conventions of the language (*note
  604.      Program Indent::.).
  605.    The commands for words, sentences and paragraphs are very useful in
  606. editing code even though their canonical application is for editing
  607. human language text.  Most symbols contain words (*note Words::.);
  608. sentences can be found in strings and comments (*note Sentences::.).
  609. Paragraphs per se don't exist in code, but the paragraph commands are
  610. useful anyway, because programming language major modes define
  611. paragraphs to begin and end at blank lines (*note Paragraphs::.).
  612. Judicious use of blank lines to make the program clearer will also
  613. provide useful chunks of text for the paragraph commands to work on.
  614.    The selective display feature is useful for looking at the overall
  615. structure of a function (*note Selective Display::.).  This feature
  616. causes only the lines that are indented less than a specified amount to
  617. appear on the screen.
  618. * Menu:
  619. * Program Modes::     Major modes for editing programs.
  620. * Lists::             Expressions with balanced parentheses.
  621. * List Commands::     The commands for working with list and sexps.
  622. * Defuns::            Each program is made up of separate functions.
  623.                         There are editing commands to operate on them.
  624. * Program Indent::    Adjusting indentation to show the nesting.
  625. * Matching::          Insertion of a close-delimiter flashes matching open.
  626. * Comments::          Inserting, killing, and aligning comments.
  627. * Balanced Editing::  Inserting two matching parentheses at once, etc.
  628. * Symbol Completion:: Completion on symbol names of your program or language.
  629. * Documentation::     Getting documentation of functions you plan to call.
  630. * Change Log::        Maintaining a change history for your program.
  631. * Tags::              Go direct to any function in your program in one
  632.                         command.  Tags remembers which file it is in.
  633. * Emerge::          A convenient way of merging two versions of a program.
  634. * C Mode::          Special commands of C, C++, Objective-C and Java modes.
  635. * Fortran::          Fortran mode and its special features.
  636. * Asm Mode::          Asm mode and its special features.
  637. File: emacs,  Node: Program Modes,  Next: Lists,  Up: Programs
  638. Major Modes for Programming Languages
  639. =====================================
  640.    Emacs also has major modes for the programming languages Lisp, Scheme
  641. (a variant of Lisp), Awk, C, C++, Fortran, Icon, Java, Objective-C,
  642. Pascal, Perl and Tcl.  There is also a major mode for makefiles, called
  643. Makefile mode.
  644.    Ideally, a major mode should be implemented for each programming
  645. language that you might want to edit with Emacs; but often the mode for
  646. one language can serve for other syntactically similar languages.  The
  647. language modes that exist are those that someone decided to take the
  648. trouble to write.
  649.    There are several forms of Lisp mode, which differ in the way they
  650. interface to Lisp execution.  *Note Executing Lisp::.
  651.    Each of the programming language modes defines the TAB key to run an
  652. indentation function that knows the indentation conventions of that
  653. language and updates the current line's indentation accordingly.  For
  654. example, in C mode TAB is bound to `c-indent-line'.  LFD is normally
  655. defined to do RET followed by TAB; thus, it too indents in a
  656. mode-specific fashion.
  657.    In most programming languages, indentation is likely to vary from
  658. line to line.  So the major modes for those languages rebind DEL to
  659. treat a tab as if it were the equivalent number of spaces (using the
  660. command `backward-delete-char-untabify').  This makes it possible to
  661. rub out indentation one column at a time without worrying whether it is
  662. made up of spaces or tabs.  Use `C-b C-d' to delete a tab character
  663. before point, in these modes.
  664.    Programming language modes define paragraphs to be separated only by
  665. blank lines, so that the paragraph commands remain useful.  Auto Fill
  666. mode, if enabled in a programming language major mode, indents the new
  667. lines which it creates.
  668.    Turning on a major mode runs a normal hook called the "mode hook",
  669. which is the value of a Lisp variable.  Each major mode has a mode hook,
  670. and the hook's name is always made from the mode command's name by
  671. adding `-hook'.  For example, turning on C mode runs the hook
  672. `c-mode-hook', while turning on Lisp mode runs the hook
  673. `lisp-mode-hook'.  *Note Hooks::.
  674. File: emacs,  Node: Lists,  Next: List Commands,  Prev: Program Modes,  Up: Programs
  675. Lists and Sexps
  676. ===============
  677.    By convention, Emacs keys for dealing with balanced expressions are
  678. usually Control-Meta characters.  They tend to be analogous in function
  679. to their Control and Meta equivalents.  These commands are usually
  680. thought of as pertaining to expressions in programming languages, but
  681. can be useful with any language in which some sort of parentheses exist
  682. (including human languages).
  683.    These commands fall into two classes.  Some deal only with "lists"
  684. (parenthetical groupings).  They see nothing except parentheses,
  685. brackets, braces (whichever ones must balance in the language you are
  686. working with), and escape characters that might be used to quote those.
  687.    The other commands deal with expressions or "sexps".  The word `sexp'
  688. is derived from "s-expression", the ancient term for an expression in
  689. Lisp.  But in Emacs, the notion of `sexp' is not limited to Lisp.  It
  690. refers to an expression in whatever language your program is written in.
  691. Each programming language has its own major mode, which customizes the
  692. syntax tables so that expressions in that language count as sexps.
  693.    Sexps typically include symbols, numbers, and string constants, as
  694. well as anything contained in parentheses, brackets or braces.
  695.    In languages that use prefix and infix operators, such as C, it is
  696. not possible for all expressions to be sexps.  For example, C mode does
  697. not recognize `foo + bar' as a sexp, even though it *is* a C expression;
  698. it recognizes `foo' as one sexp and `bar' as another, with the `+' as
  699. punctuation between them.  This is a fundamental ambiguity: both `foo +
  700. bar' and `foo' are legitimate choices for the sexp to move over if
  701. point is at the `f'.  Note that `(foo + bar)' is a single sexp in C
  702. mode.
  703.    Some languages have obscure forms of expression syntax that nobody
  704. has bothered to make Emacs understand properly.
  705. File: emacs,  Node: List Commands,  Next: Defuns,  Prev: Lists,  Up: Programs
  706. List And Sexp Commands
  707. ======================
  708. `C-M-f'
  709.      Move forward over a sexp (`forward-sexp').
  710. `C-M-b'
  711.      Move backward over a sexp (`backward-sexp').
  712. `C-M-k'
  713.      Kill sexp forward (`kill-sexp').
  714. `C-M-DEL'
  715.      Kill sexp backward (`backward-kill-sexp').
  716. `C-M-u'
  717.      Move up and backward in list structure (`backward-up-list').
  718. `C-M-d'
  719.      Move down and forward in list structure (`down-list').
  720. `C-M-n'
  721.      Move forward over a list (`forward-list').
  722. `C-M-p'
  723.      Move backward over a list (`backward-list').
  724. `C-M-t'
  725.      Transpose expressions (`transpose-sexps').
  726. `C-M-@'
  727.      Put mark after following expression (`mark-sexp').
  728.    To move forward over a sexp, use `C-M-f' (`forward-sexp').  If the
  729. first significant character after point is an opening delimiter (`(' in
  730. Lisp; `(', `[' or `{' in C), `C-M-f' moves past the matching closing
  731. delimiter.  If the character begins a symbol, string, or number,
  732. `C-M-f' moves over that.
  733.    The command `C-M-b' (`backward-sexp') moves backward over a sexp.
  734. The detailed rules are like those above for `C-M-f', but with
  735. directions reversed.  If there are any prefix characters (single-quote,
  736. backquote and comma, in Lisp) preceding the sexp, `C-M-b' moves back
  737. over them as well.  The sexp commands move across comments as if they
  738. were whitespace in most modes.
  739.    `C-M-f' or `C-M-b' with an argument repeats that operation the
  740. specified number of times; with a negative argument, it moves in the
  741. opposite direction.
  742.    Killing a sexp at a time can be done with `C-M-k' (`kill-sexp') or
  743. `C-M-DEL' (`backward-kill-sexp').  `C-M-k' kills the characters that
  744. `C-M-f' would move over, and `C-M-DEL' kills the characters that
  745. `C-M-b' would move over.
  746.    The "list commands" move over lists like the sexp commands but skip
  747. blithely over any number of other kinds of sexps (symbols, strings,
  748. etc).  They are `C-M-n' (`forward-list') and `C-M-p' (`backward-list').
  749. The main reason they are useful is that they usually ignore comments
  750. (since the comments usually do not contain any lists).
  751.    `C-M-n' and `C-M-p' stay at the same level in parentheses, when
  752. that's possible.  To move *up* one (or N) levels, use `C-M-u'
  753. (`backward-up-list').  `C-M-u' moves backward up past one unmatched
  754. opening delimiter.  A positive argument serves as a repeat count; a
  755. negative argument reverses direction of motion and also requests
  756. repetition, so it moves forward and up one or more levels.
  757.    To move *down* in list structure, use `C-M-d' (`down-list').  In
  758. Lisp mode, where `(' is the only opening delimiter, this is nearly the
  759. same as searching for a `('.  An argument specifies the number of levels
  760. of parentheses to go down.
  761.    A somewhat random-sounding command which is nevertheless handy is
  762. `C-M-t' (`transpose-sexps'), which drags the previous sexp across the
  763. next one.  An argument serves as a repeat count, and a negative
  764. argument drags backwards (thus canceling out the effect of `C-M-t' with
  765. a positive argument).  An argument of zero, rather than doing nothing,
  766. transposes the sexps ending after point and the mark.
  767.    To set the region around the next sexp in the buffer, use `C-M-@'
  768. (`mark-sexp'), which sets mark at the same place that `C-M-f' would
  769. move to.  `C-M-@' takes arguments like `C-M-f'.  In particular, a
  770. negative argument is useful for putting the mark at the beginning of
  771. the previous sexp.
  772.    The list and sexp commands' understanding of syntax is completely
  773. controlled by the syntax table.  Any character can, for example, be
  774. declared to be an opening delimiter and act like an open parenthesis.
  775. *Note Syntax::.
  776. File: emacs,  Node: Defuns,  Next: Program Indent,  Prev: List Commands,  Up: Programs
  777. Defuns
  778. ======
  779.    In Emacs, a parenthetical grouping at the top level in the buffer is
  780. called a "defun".  The name derives from the fact that most top-level
  781. lists in a Lisp file are instances of the special form `defun', but any
  782. top-level parenthetical grouping counts as a defun in Emacs parlance
  783. regardless of what its contents are, and regardless of the programming
  784. language in use.  For example, in C, the body of a function definition
  785. is a defun.
  786. `C-M-a'
  787.      Move to beginning of current or preceding defun
  788.      (`beginning-of-defun').
  789. `C-M-e'
  790.      Move to end of current or following defun (`end-of-defun').
  791. `C-M-h'
  792.      Put region around whole current or following defun (`mark-defun').
  793.    The commands to move to the beginning and end of the current defun
  794. are `C-M-a' (`beginning-of-defun') and `C-M-e' (`end-of-defun').
  795.    If you wish to operate on the current defun, use `C-M-h'
  796. (`mark-defun') which puts point at the beginning and mark at the end of
  797. the current or next defun.  For example, this is the easiest way to get
  798. ready to move the defun to a different place in the text.  In C mode,
  799. `C-M-h' runs the function `mark-c-function', which is almost the same
  800. as `mark-defun'; the difference is that it backs up over the argument
  801. declarations, function name and returned data type so that the entire C
  802. function is inside the region.  *Note Marking Objects::.
  803.    Emacs assumes that any open-parenthesis found in the leftmost column
  804. is the start of a defun.  Therefore, *never put an open-parenthesis at
  805. the left margin in a Lisp file unless it is the start of a top level
  806. list.  Never put an open-brace or other opening delimiter at the
  807. beginning of a line of C code unless it starts the body of a function.*
  808. The most likely problem case is when you want an opening delimiter at
  809. the start of a line inside a string.  To avoid trouble, put an escape
  810. character (`\', in C and Emacs Lisp, `/' in some other Lisp dialects)
  811. before the opening delimiter.  It will not affect the contents of the
  812. string.
  813.    In the remotest past, the original Emacs found defuns by moving
  814. upward a level of parentheses until there were no more levels to go up.
  815. This always required scanning all the way back to the beginning of the
  816. buffer, even for a small function.  To speed up the operation, Emacs
  817. was changed to assume that any `(' (or other character assigned the
  818. syntactic class of opening-delimiter) at the left margin is the start
  819. of a defun.  This heuristic is nearly always right and avoids the
  820. costly scan; however, it mandates the convention described above.
  821. File: emacs,  Node: Program Indent,  Next: Matching,  Prev: Defuns,  Up: Programs
  822. Indentation for Programs
  823. ========================
  824.    The best way to keep a program properly indented is to use Emacs to
  825. re-indent it as you change it.  Emacs has commands to indent properly
  826. either a single line, a specified number of lines, or all of the lines
  827. inside a single parenthetical grouping.
  828. * Menu:
  829. * Basic Indent::    Indenting a single line.
  830. * Multi-line Indent::   Commands to reindent many lines at once.
  831. * Lisp Indent::        Specifying how each Lisp function should be indented.
  832. * C Indent::        Extra features for indenting C code.
  833. * Custom C Indent::    Controlling indentation style for C code.
  834.    Emacs also provides a Lisp pretty-printer in the library `pp'.  This
  835. program prints a Lisp object with indentation chosen to look nice.
  836. File: emacs,  Node: Basic Indent,  Next: Multi-line Indent,  Up: Program Indent
  837. Basic Program Indentation Commands
  838. ----------------------------------
  839. `TAB'
  840.      Adjust indentation of current line.
  841. `LFD'
  842.      Equivalent to RET followed by TAB (`newline-and-indent').
  843.    The basic indentation command is TAB, which gives the current line
  844. the correct indentation as determined from the previous lines.  The
  845. function that TAB runs depends on the major mode; it is
  846. `lisp-indent-line' in Lisp mode, `c-indent-line' in C mode, etc.  These
  847. functions understand different syntaxes for different languages, but
  848. they all do about the same thing.  TAB in any programming language
  849. major mode inserts or deletes whitespace at the beginning of the
  850. current line, independent of where point is in the line.  If point is
  851. inside the whitespace at the beginning of the line, TAB leaves it at
  852. the end of that whitespace; otherwise, TAB leaves point fixed with
  853. respect to the characters around it.
  854.    Use `C-q TAB' to insert a tab at point.
  855.    When entering lines of new code, use LFD (`newline-and-indent'),
  856. which is equivalent to a RET followed by a TAB.  LFD creates a blank
  857. line, and then gives it the appropriate indentation.
  858.    TAB indents the second and following lines of the body of a
  859. parenthetical grouping each under the preceding one; therefore, if you
  860. alter one line's indentation to be nonstandard, the lines below will
  861. tend to follow it.  This behavior is convenient in cases where you have
  862. overridden the standard result of TAB because you find it unaesthetic
  863. for a particular line.
  864.    Remember that an open-parenthesis, open-brace or other opening
  865. delimiter at the left margin is assumed by Emacs (including the
  866. indentation routines) to be the start of a function.  Therefore, you
  867. must never have an opening delimiter in column zero that is not the
  868. beginning of a function, not even inside a string.  This restriction is
  869. vital for making the indentation commands fast; you must simply accept
  870. it.  *Note Defuns::, for more information on this.
  871.