diff options
| author | Carsten Dominik | 2000-06-20 12:46:32 +0000 |
|---|---|---|
| committer | Carsten Dominik | 2000-06-20 12:46:32 +0000 |
| commit | a0d3134105ca086ffd68ee0321aba28426d125df (patch) | |
| tree | fda0eef4a756a7cdccd32317308b6c3946e6b223 | |
| parent | c99c89ac6ae0758cc474c2048dd9fe00217237cf (diff) | |
| download | emacs-a0d3134105ca086ffd68ee0321aba28426d125df.tar.gz emacs-a0d3134105ca086ffd68ee0321aba28426d125df.zip | |
Update to reftex 4 14
| -rw-r--r-- | man/reftex.texi | 70 |
1 files changed, 48 insertions, 22 deletions
diff --git a/man/reftex.texi b/man/reftex.texi index 946733de196..f7cb4124930 100644 --- a/man/reftex.texi +++ b/man/reftex.texi | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | \input texinfo @c -*-texinfo-*- | 1 | \input texinfo @c -*-texinfo-*- |
| 2 | @c %**start of header | 2 | @c %**start of header |
| 3 | @setfilename ../info/reftex | 3 | @setfilename ../reftex |
| 4 | @settitle RefTeX User Manual | 4 | @settitle RefTeX User Manual |
| 5 | @dircategory Editors | 5 | @dircategory Editors |
| 6 | @direntry | 6 | @direntry |
| @@ -9,13 +9,13 @@ | |||
| 9 | @synindex ky cp | 9 | @synindex ky cp |
| 10 | @syncodeindex vr cp | 10 | @syncodeindex vr cp |
| 11 | @syncodeindex fn cp | 11 | @syncodeindex fn cp |
| 12 | @set VERSION 4.11 | 12 | @set VERSION 4.12 |
| 13 | @set EDITION 4.11 | 13 | @set EDITION 4.12 |
| 14 | @set DATE February 2000 | 14 | @set DATE March 2000 |
| 15 | @set AUTHOR Carsten Dominik | 15 | @set AUTHOR Carsten Dominik |
| 16 | @set AUTHOR-EMAIL dominik@@strw.leidenuniv.nl | 16 | @set AUTHOR-EMAIL dominik@@astro.uva.nl |
| 17 | @set MAINTAINER Carsten Dominik | 17 | @set MAINTAINER Carsten Dominik |
| 18 | @set MAINTAINER-EMAIL dominik@@strw.leidenuniv.nl | 18 | @set MAINTAINER-EMAIL dominik@@astro.uva.nl |
| 19 | @c %**end of header | 19 | @c %**end of header |
| 20 | @finalout | 20 | @finalout |
| 21 | 21 | ||
| @@ -99,7 +99,7 @@ translation approved by the Free Software Foundation. | |||
| 99 | @end titlepage | 99 | @end titlepage |
| 100 | @page | 100 | @page |
| 101 | 101 | ||
| 102 | @ifinfo | 102 | @ifnottex |
| 103 | @node Top,,,(dir) | 103 | @node Top,,,(dir) |
| 104 | 104 | ||
| 105 | @b{Ref@TeX{}} is a package for managing Labels, References, | 105 | @b{Ref@TeX{}} is a package for managing Labels, References, |
| @@ -213,7 +213,7 @@ Options, Keymaps, Hooks | |||
| 213 | @end detailmenu | 213 | @end detailmenu |
| 214 | @end menu | 214 | @end menu |
| 215 | 215 | ||
| 216 | @end ifinfo | 216 | @end ifnottex |
| 217 | 217 | ||
| 218 | @node Introduction, Table of Contents, , Top | 218 | @node Introduction, Table of Contents, , Top |
| 219 | @chapter Introduction | 219 | @chapter Introduction |
| @@ -2663,11 +2663,31 @@ document.@refill | |||
| 2663 | @item | 2663 | @item |
| 2664 | @vindex tex-main-file | 2664 | @vindex tex-main-file |
| 2665 | @vindex TeX-master | 2665 | @vindex TeX-master |
| 2666 | All files belonging to a multifile document should have a File Variable | 2666 | All files belonging to a multifile document should define a File |
| 2667 | (@code{TeX-master} for AUCTeX or @code{tex-main-file} for the | 2667 | Variable (@code{TeX-master} for AUCTeX or @code{tex-main-file} for the |
| 2668 | standard Emacs LaTeX mode) set to the name of the master file. See the | 2668 | standard Emacs LaTeX mode) containing the name of the master file. For |
| 2669 | documentation of your (La)TeX mode and @ref{File Variables,,,emacs, The | 2669 | example, to set the file variable @code{TeX-master}, include something |
| 2670 | GNU Emacs Manual}.@refill | 2670 | like the following at the end of each TeX file:@refill |
| 2671 | |||
| 2672 | @example | ||
| 2673 | %%% Local Variables: *** | ||
| 2674 | %%% mode:latex *** | ||
| 2675 | %%% TeX-master: "thesis.tex" *** | ||
| 2676 | %%% End: *** | ||
| 2677 | @end example | ||
| 2678 | |||
| 2679 | AUCTeX with the setting | ||
| 2680 | |||
| 2681 | @lisp | ||
| 2682 | (setq-default TeX-master nil) | ||
| 2683 | @end lisp | ||
| 2684 | |||
| 2685 | will actually ask you for each new file about the master file and insert | ||
| 2686 | this comment automatically. For more details see the documentation of | ||
| 2687 | the AUCTeX (@pxref{Multifile,,,auctex, The AUC TeX User Manual}), the | ||
| 2688 | documentation about the Emacs (La)TeX mode (@pxref{TeX Print,,,emacs, | ||
| 2689 | The GNU Emacs Manual}) and the Emacs documentation on File Variables | ||
| 2690 | (@pxref{File Variables,,,emacs, The GNU Emacs Manual}).@refill | ||
| 2671 | 2691 | ||
| 2672 | @item | 2692 | @item |
| 2673 | The context of a label definition must be found in the same file as the | 2693 | The context of a label definition must be found in the same file as the |
| @@ -2924,9 +2944,10 @@ with the @kbd{g} key. To get this behavior, use instead@refill | |||
| 2924 | @cindex Emacs packages, @code{AUCTeX} | 2944 | @cindex Emacs packages, @code{AUCTeX} |
| 2925 | 2945 | ||
| 2926 | AUCTeX is without doubt the best major mode for editing TeX and LaTeX | 2946 | AUCTeX is without doubt the best major mode for editing TeX and LaTeX |
| 2927 | files with Emacs. If AUCTeX is not part of you Emacs distribution, you | 2947 | files with Emacs (@pxref{Top,AUCTeX,,auctex, The AUCTeX User Manual}). |
| 2928 | can get it@footnote{XEmacs 21.x users may | 2948 | If AUCTeX is not part of you Emacs distribution, you can get |
| 2929 | want to install the corresponding XEmacs package.} by ftp from the | 2949 | it@footnote{XEmacs 21.x users may want to install the corresponding |
| 2950 | XEmacs package.} by ftp from the | ||
| 2930 | @uref{http://www.sunsite.auc.dk/auctex/,AUCTeX distribution site}. | 2951 | @uref{http://www.sunsite.auc.dk/auctex/,AUCTeX distribution site}. |
| 2931 | 2952 | ||
| 2932 | @menu | 2953 | @menu |
| @@ -3025,11 +3046,12 @@ Labels}).@refill | |||
| 3025 | @findex TeX-add-style-hook, @r{AUCTeX} | 3046 | @findex TeX-add-style-hook, @r{AUCTeX} |
| 3026 | Style files are Emacs Lisp files which are evaluated by AUCTeX in | 3047 | Style files are Emacs Lisp files which are evaluated by AUCTeX in |
| 3027 | association with the @code{\documentclass} and @code{\usepackage} | 3048 | association with the @code{\documentclass} and @code{\usepackage} |
| 3028 | commands of a document. Support for @b{Ref@TeX{}} in such a style file | 3049 | commands of a document (@pxref{Style Files,,,auctex}). Support for |
| 3029 | is useful when the LaTeX style defines macros or environments connected | 3050 | @b{Ref@TeX{}} in such a style file is useful when the LaTeX style |
| 3030 | with labels, citations, or the index. Many style files | 3051 | defines macros or environments connected with labels, citations, or the |
| 3031 | (e.g. @file{amsmath.el} or @file{natbib.el}) distributed with AUCTeX | 3052 | index. Many style files (e.g. @file{amsmath.el} or @file{natbib.el}) |
| 3032 | already support @b{Ref@TeX{}} in this way.@refill | 3053 | distributed with AUCTeX already support @b{Ref@TeX{}} in this |
| 3054 | way.@refill | ||
| 3033 | 3055 | ||
| 3034 | Before calling a @b{Ref@TeX{}} function, the style hook should always | 3056 | Before calling a @b{Ref@TeX{}} function, the style hook should always |
| 3035 | test for the availability of the function, so that the style file will | 3057 | test for the availability of the function, so that the style file will |
| @@ -5402,12 +5424,16 @@ New options @code{reftex-parse-file-extension} and | |||
| 5402 | @item | 5424 | @item |
| 5403 | Fixed bug which would parse @samp{\Section} just like @samp{\section}. | 5425 | Fixed bug which would parse @samp{\Section} just like @samp{\section}. |
| 5404 | @end itemize | 5426 | @end itemize |
| 5427 | @noindent @b{Version 4.12} | ||
| 5428 | @itemize @bullet | ||
| 5429 | @item | ||
| 5430 | Support for @file{bibentry} citation style. | ||
| 5431 | @end itemize | ||
| 5405 | 5432 | ||
| 5406 | @node Index, , , Top | 5433 | @node Index, , , Top |
| 5407 | @unnumbered Index | 5434 | @unnumbered Index |
| 5408 | @printindex cp | 5435 | @printindex cp |
| 5409 | 5436 | ||
| 5410 | @setchapternewpage odd | ||
| 5411 | @summarycontents | 5437 | @summarycontents |
| 5412 | @contents | 5438 | @contents |
| 5413 | @bye | 5439 | @bye |