yatex

diff docs/yatexref.eng @ 54:2d45e43fb35f

Full support of English documents
author yuuji
date Mon, 24 Apr 1995 14:42:53 +0000
parents
children 807c1e7e68b7
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/docs/yatexref.eng	Mon Apr 24 14:42:53 1995 +0000
     1.3 @@ -0,0 +1,164 @@
     1.4 +----------------------------------------------------------------------------
     1.5 +				YaTeX
     1.6 +			   Quick Reference
     1.7 +----------------------------------------------------------------------------
     1.8 +
     1.9 +
    1.10 +[Caution]
    1.11 +	
    1.12 +	You can customize the prefix key (C-c by default) so this will be
    1.13 +	written as [prefix] in this document.  If you have not customized
    1.14 +	[prefix] a will stand for C-c a.
    1.15 +
    1.16 +	Begin-type commands are those like \begin-\end, Section-type
    1.17 +	commands are those that take arguments as \section{NAME},
    1.18 +	Large-type commands are font/size definition commands that are put
    1.19 +	in parenthesis as {\tt}, Maketitle-type commands are commands that
    1.20 +	don't take arguments as \maketitle.
    1.21 +
    1.22 +[Completion]
    1.23 +
    1.24 +    *Accent completion                  [prefix] a
    1.25 +    *Begin-type completion              [prefix] b SPC
    1.26 +    *Begin-type completion (region)     [prefix] B SPC
    1.27 +    *Begin-type completion (immediate)	[prefix] b initial_of_environment
    1.28 +    *Begin-type completion (immediate on region)
    1.29 +                                        [prefix] B initial_of_environment
    1.30 +    *End completion                     [prefix] e
    1.31 +    *Large-type completion              [prefix] l
    1.32 +    *Large-type completion (region)     [prefix] L
    1.33 +    *Maketitle-type completion          [prefix] m
    1.34 +    *Section-type completion            [prefix] s
    1.35 +    *Section-type completion (region)   [prefix] S
    1.36 +    *General completion                 [prefix] SPC
    1.37 +
    1.38 +	For the initials used in immediate Begin-type completions, see the
    1.39 +	Info manual.  In the (region)-mode, region between the mark and
    1.40 +	the present point will be put within a \begin{foo}...\end{foo} or
    1.41 +	{\large } and such.
    1.42 +
    1.43 +	*Math sign image completion		;
    1.44 +	*Greek letter image completion		:
    1.45 +
    1.46 +	Above two commands may be used only in the math environment.  If
    1.47 +	you want to use the completion in other environments, do C-u and
    1.48 +	then ; or :.
    1.49 +
    1.50 +
    1.51 +[Process invoking]
    1.52 +
    1.53 +    *invoke bibtex                    [prefix] tb
    1.54 +    *invoke latex                     [prefix] tj
    1.55 +    *invoke makeindex                 [prefix] ti
    1.56 +    *kill current typesetting process [prefix] tk **
    1.57 +    *lpr dvi-file                     [prefix] tl
    1.58 +    *lpr dvi-file (all pages)   C-u   [prefix] tl
    1.59 +    *invoke previewer                 [prefix] tp
    1.60 +    *invoke lpq                       [prefix] tq
    1.61 +    *invoke jlatex (on region)        [prefix] tr
    1.62 +
    1.63 +	Hitting [prefix] t will get you the menu, so there is no need to
    1.64 +	remember the key after [prefix] t.
    1.65 +
    1.66 +	 **Unavailable on MS-DOS
    1.67 +
    1.68 +	The region used in [prefix] tr are the lines between %#BEGIN and
    1.69 +	%#END.  If %#END is not found then from %#BEGIN and the end of
    1.70 +	the text.  If both are missing then from the mark to the
    1.71 +	present point.
    1.72 +
    1.73 +[Cursor Jump]
    1.74 +	*To the typeset error		[prefix] '
    1.75 +
    1.76 +	Will jump to the position where the typeset error occurred from the
    1.77 +	end.  Only effective when there was a error returned from latex.
    1.78 +
    1.79 +    *Jump to corresponding object                         [prefix] g
    1.80 +    *Jump to corresponding object (in another her window) [prefix] 4g
    1.81 +
    1.82 +	Where to jump will be decided by what's on the line [prefix] g was
    1.83 +	hit.
    1.84 +
    1.85 +        -on a \begin{} or \end{}        to a matching \end{} or \begin{}
    1.86 +        -on a %#BEGIN or %#END          to a matching %#END or %#BEGIN
    1.87 +        -on a \include(only) or \input  to the matching file
    1.88 +        -on a \ref or \label            to the matching \label or \ref
    1.89 +        -on a \cite or \bibitem         to the matching \bibitem or \cite
    1.90 +
    1.91 +        *Jump to the main file                   [prefix] ^
    1.92 +        *Jump to the main file in another window [prefix] 4^
    1.93 +
    1.94 +	To tell YaTeX which the main file is, write
    1.95 +			%#jlatex MAIN_FILE_NAME
    1.96 +	somewhere in the file you are creating.
    1.97 +
    1.98 +    *Jump to beginning of environment ESC C-a
    1.99 +    *Jump to end of environment       ESC C-e
   1.100 +    *Mark whole environment           ESC C-h
   1.101 +
   1.102 +[Commenting out by %]
   1.103 +
   1.104 +	*Comment out the region/environment	[prefix] >
   1.105 +	*Uncomment the region/environment	[prefix] <
   1.106 +
   1.107 +	If the point is on a line with \begin{} or \end{}, everything
   1.108 +	within the environment will be (un)commented.  Otherwise,
   1.109 +	everything between the mark and point will be (un)commented.
   1.110 +
   1.111 +    *Comment out a paragraph or environment declaration     [prefix] .
   1.112 +    *Uncomment out a paragraph or environment declaration   [prefix] ,
   1.113 +
   1.114 +	If the point is on a line with \begin{} or \end, the two lines
   1.115 +	with it will be (un)commented.  Otherwise the paragraph that the
   1.116 +	point is in will be (un)commented.
   1.117 +
   1.118 +[ETC]
   1.119 +	
   1.120 +	*Align and fill item		[prefix] i
   1.121 +
   1.122 +	Available only in an environment.  Will do a hanging indent on the
   1.123 +	\item.
   1.124 +
   1.125 +	*Change LaTeX command		[prefix] c
   1.126 +
   1.127 +	On a line with \begin{} or \end{}, will change the name of the
   1.128 +	environment.  On a section-type command, will change the command
   1.129 +	name, and also change arguments if invoked on the argument.  For
   1.130 +	large-type command, will change font/size definitions.  On a math
   1.131 +	mode command entered using image-type completion, will return to
   1.132 +	the completion operation.
   1.133 +
   1.134 +	*Kill commands	[prefix] k
   1.135 +
   1.136 +	For \begin{}/\end{}, %#BEGIN/%#END, and parenthesis, will delete
   1.137 +	them in pairs.  For section-type commands, font/size definition,
   1.138 +	will delete the command ant parenthesis surrounding them.
   1.139 +
   1.140 +        *Enclose region with () [prefix] )
   1.141 +        *Enclose region with {} [prefix] }
   1.142 +        *Enclose region with [] [prefix] ]
   1.143 +        *Enclose region with $$ [prefix] $
   1.144 +
   1.145 +        *Toggle modes           [prefix] w
   1.146 +
   1.147 +	Will toggle between modify mode and math mode.
   1.148 +
   1.149 +    *%# editing                    [prefix] %
   1.150 +    *Show columns in tabular/array [prefix] &
   1.151 +    *Online help                   [prefix] h
   1.152 +    *Online apropos                [prefix] /
   1.153 +    *Intelligent return    	   ESC RET
   1.154 +
   1.155 +	Intelligent return can be used in tabular, array, itemize,
   1.156 +	enumerate, list and description environments.
   1.157 +
   1.158 +	*Browse included structure		[prefix] d
   1.159 +
   1.160 +							   HIROSE Yuuji
   1.161 +						    yuuji@ae.keio.ac.jp
   1.162 +						pcs39334@asciinet.or.jp
   1.163 +
   1.164 +Local variables:
   1.165 +mode: text
   1.166 +fill-prefix: "	"
   1.167 +End: