# HG changeset patch # User HIROSE Yuuji # Date 1336617602 -32400 # Node ID d467c0fb608399f856485616e428089699d3e94e # Parent 1b4e0acd0106e783febe3b7c52bbece7c01b50dc Preparing for 1.76 release diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yahtmle --- a/docs/yahtmle Thu May 10 11:10:13 2012 +0900 +++ b/docs/yahtmle Thu May 10 11:40:02 2012 +0900 @@ -1,531 +1,531 @@ -Info file: yahtmle, -*-Text-*- -produced by `texinfo-format-buffer' -from file `yahtmle.tex' -using `texinfmt.el' version 2.38 of 3 July 1998. - - - - - - -File: yahtmle, Node: Top, Next: Intro, Prev: (dir), Up: (dir) - -* Menu: - -* Intro:: Introduction -* Installation:: Installing yahtml -* Command Invocation:: Using External Commands -* Completion:: Input with Completion -* Jump:: Moving the Cursor -* Changing and Deleting:: Changing and Deleting -* CSS Support:: Style Sheet Support -* Customizations:: List of Customize Variables -* Copying:: Copyright -* Concept Index:: Index - - - -File: yahtmle, Node: Intro, Next: Installation, Prev: Top, Up: Top - -Introduction -************ - -yahtml is a package to support creating HTML documents on Emacsens. Easy -input of elements (tags) by completion, syntax checking with programs like -weblint, and invoking the appropriate browser or image viewer depending on -the cursor position is its main features. - -(This Info is still incomplete) - - - -File: yahtmle, Node: Installation, Next: Command Invocation, Prev: Intro, Up: Top - -Installing yahtml -***************** -* Menu: - -* Setting up yahtml:: -* Setting environments for weblint browsers and image viewers:: -* Setting environment variables for WWW pages:: - - - -File: yahtmle, Node: Setting up yahtml, Next: Setting environments for weblint browsers and image viewers, Prev: Installation, Up: Installation - -Setting up yahtml -================= - - -Add the following to `~/.emacs' - - (setq auto-mode-alist - (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist)) - (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t) - -Next, add to load-path the directory with the yahtml files (`yahtml.el', -`yatexlib.el', `yatexprc.el'). For example, if you put them in -`~/src/emacs/yahtml', - - (setq load-path (cons (expand-file-name "~/src/emacs/yahtml") load-path)) - -is what you add. - -By this, yahtml will be automatically loaded when editing files with .html -extensions. "yahtml" will be displayed on the mode line if no errors -occurred. - - - -File: yahtmle, Node: Setting environments for weblint browsers and image viewers, Next: Setting environment variables for WWW pages, Prev: Setting up yahtml, Up: Installation - -Setting environments for weblint, browsers, and image viewers -============================================================= - -Check the variables for invoking external commands and modify as needed. -Defaults are in parenthesis. - -`yahtml-www-browser' - ... browser command name (netscape) -`yahtml-image-viewer' - ... image viewer command name (xv) -`yahtml-lint-program' - ... syntax check programs command name (jweblint) -`yahtml-kanji-code' - ... kanji code for HTML files - - - -File: yahtmle, Node: Setting environment variables for WWW pages, Prev: Setting environments for weblint browsers and image viewers, Up: Installation - -Setting environment variables for WWW pages -=========================================== - -Variables regarding path names for files that will be your home page. -`yahtml-path-url-alist' - ... list of matching path name on file system and URLs -`yahtml-directory-index' - ... index file displayed when none is given in URL. Usually - `index.html' on NCSA type httpd and `Welcome.html' on CERN types. - -Examples for `yahtml-path-url-alist'. If `/home/yuuji/http/' is -`http://localhost/~yuuji' at home and `/usr/home/yuuji/www/' is -`http://www.keio.ac.jp/~yuuji/' at work, then - - (setq yahtml-path-url-alist - '(("/home/yuuji/http" . "http://localhost/~yuuji") - ("/usr/home/yuuji/www" . "http://www.keio.ac.jp/~yuuji"))) - -Any number of additions can be made to this list. - - - -File: yahtmle, Node: Command Invocation, Next: Completion, Prev: Installation, Up: Top - -Invoking external commands -************************** - -For easy use of commands that are handy when editing HTML files. -`[prefix] t j' - ... Invoke HTML syntax checker (jweblint) -`[prefix] t p' - ... Display current page in browser -`[prefix] t r' - ... Reload current page if browser is already running - - - -File: yahtmle, Node: Completion, Next: Jump, Prev: Command Invocation, Up: Top - -Completion Input -**************** - -Completion input of HTML elements is done through the same key strokes as -YaTeX's begin-type completion, section-type completion, large-type -completion, maketitle-type completion, and accent completion. -Corresponding elements in this order is; elements that span multiple -lines, empty elements such as img, tags that start and end in a single -line, elements with no attributes or contents, and special or symbol -entities. - -`[prefix] b (YaTeX begin-type completion)' - ... - - - Completion for elements that the start tag and the end tag span - multiple lines. Mostly block-level elements. - -`[prefix] s (YateX section-type completion)' - ... - photo - - Completion for elements that do not have end tags and require only - attributes. Possible completions are, , . - -`[prefix] l (YaTeX large-type completion)' - ... - - $B!A(B - - Similar to begin-type completion but used for elements that start and - end on a single line. - - -`[prefix] m (YaTeX maketitle-type completion)' - ... Completion for elements without attributes or contents. Possible - completion is
- -`[prefix] a (YaTeX accent completion)' - ... Used to enter special or symbol entities. By default completion - for < (<), > (>), & (&), " ("), ' ('), blank - ( ) is possible. - - - -File: yahtmle, Node: Jump, Next: Changing and Deleting, Prev: Completion, Up: Top - -Cursor Movement -*************** -By using - -`[prefix] g' - ... move to corresponding object - -the cursor will go to the corresponding object according to the context. -Recognized contexts are - - * `' <--> `' - * `' -> invoke viewer - * `' -> move cursor to linked target - * `' -> open Java source - - - -File: yahtmle, Node: Changing and Deleting, Next: CSS Support, Prev: Jump, Up: Top - -Changing and Deleting -********************* - -* Menu: - -* Changing tags in pairs:: -* Changing entities:: -* URLencoding of strings within region:: - - - -File: yahtmle, Node: Changing tags in pairs, Next: Changing entities, Prev: Changing and Deleting, Up: Changing and Deleting - -Changing tags in pairs -====================== -By using - -`[prefix] c' - ... change tags in matching pairs - -the content can be changed according to the context of the HTML document -where the cursor is located. - - * `'$B!A(B`' - ... change `TAG' element name - * attributes such as `photo' - ... change attributes - - - -File: yahtmle, Node: Changing entities, Next: URLencoding of strings within region, Prev: Changing tags in pairs, Up: Changing and Deleting - -Changing entities -================= -Special characters such as < or > must be written as < and >. Easy -conversion of these characters can be done when importing text from non -HTML files. - - -`[prefix] ;' - ... convert char to special entity in marked region -`[prefix] :' - ... convert special entity to original char in marked region - (reverse of [prefix] ;) - - - - -File: yahtmle, Node: URLencoding of strings within region, Next: td-enclosure/tr-enclosure, Prev: Changing entities, Up: Changing and Deleting - -URLencoding of strings within region -==================================== - -`[prefix] #' - ... encode chars that needs to be URLencoded within region - - - -File: yahtmle, Node: td-enclosure/tr-enclosure, Prev: URLencoding of strings within region, Up: Changing and Deleting - -td-enclosure/tr-enclosure -========================= -If you wan to convert series of field into ... repetitions for -table element, td-enclosure or tr-enclosure is convenient. - - `[prefix] '} - - ... Enclose each field in a region into ...'s. - `[prefix] ]' - - ... Enclose each line in a region into ...'s, with every -line converted to ... repetition. They presume white space as -field separator by default. To change this, enter other delimiting -character for a query. You can convert CSV, for example, into table by -specifying comma(,) as a delimiter. - -If you want to enclose fields with th, call with universal-argument -(`C-u'). Enter `th' to enclose fields with .... The special -answer `thd' means that enclose the only first column with th, and the -rest with td. - - - -File: yahtmle, Node: CSS Support, Next: Customizations, Prev: Changing and Deleting, Up: Top - -CSS(Style Sheets) Support -************************* - -* Menu: - -* CSS-class completion:: -* Reread CSS definition:: - - - -File: yahtmle, Node: CSS-class completion, Next: Reread CSS definition, Prev: CSS Support, Up: CSS Support - -CSS class-name completion -========================= -You can input a class name in your CSS definition with completion. If you -have CSS defined as below; - - h1.foo, h2.foo { background-color: 0xffffff; } - h1.bar, h2.bar { font-size: 120%; } - -when you input h1(or h2) tag with completing-read by [prefix] b or -[prefix] l, yahtml prompts you to input class name with completion from -the words which are effective to h1 or h2. And if you defined global -class like this; - - .caution { font-size: 120%; background-color: 0xc00000;} - -when you input any tags via completing-read, yahtml prompts you to input -class name. If this is bothering, typing `C-j' instead of `RET' (or -`C-m') cancels the next prompt to class name completion. - - - -File: yahtmle, Node: Reread CSS definition, Prev: CSS-class completion, Up: CSS Support - -Re-reading CSS definition -========================= -If you add some class to your CSS file and you want yahtml to load new -definitions, type `M-x yahtml-mode RET' to make yahtml do. - - - -File: yahtmle, Node: Customizations, Next: Copying, Prev: CSS Support, Up: Top - -Customizations -************** - -Variables that modify yahtml's behavior. - -* Menu: - -* All customizable variables:: List of customizable variables -* Hook variables:: hook variables - - - -File: yahtmle, Node: All customizable variables, Next: Hook variables, Prev: Customizations, Up: Customizations - -List of customizable variables. Defaults in parenthesis -======================================================== - - -- Variable: yahtml-prefix - Prefix key for yahtml-mode. (`\C-c') - - -- Variable: yahtml-image-viewer - Command to view image files refered by img. (xv) - - -- Variable: yahtml-www-browser - Browser to view external pages with `[prefix]g'. (netscape) - - -- Variable: yahtml-kanji-code - Default kanji code. 1=sjis, 2=jis, 3=euc, 4=utf-8 (2) If AddType - "text/html; charset=xxx" .html is written in .htaccess, this will - override yahtml-kanji-code. - - -- Variable: yahtml-fill-column - Columns to auto-fill (72) - - -- Variable: yahtml-fill-prefix - fill-prefix specific to yahtml-mode. (`nil') - - -- Variable: yahtml-path-url-alist - Matching list of URL and full path name on OS's file system. - - -- Variable: yahtml-directory-index - Default index filed opened when accessing a server without a - filename, usually index.html. (`"index.html"') - - -- Variable: yahtml-lint-program - HTML syntax check program. (`"jweblint"') - - -- Variable: yahtml-hate-too-deep-indentation - setq to t when indentations for nested enumerate elements are too - deep. (`nil') - - -- Variable: yahtml-always-/p - setq to t if you always want `

' after `

'. `nil' - - -- Variable: yahtml-p-prefered-env-regexp - Elements that `

' will be automatically inserted. - (`"^\\(body\\|dl\\|blockquote\\)"') - - -- Variable: yahtml-template-file - File to automatically insert when editing a new HTML file. - `"~/http/template.html"' - - -- Variable: yahtml-prefer-upcases - Use uppercase for tags. `nil' - - -- Variable: yahtml-prefer-upcase-attributes - Use uppercase for attributes. `nil' - - -- Variable: yahtml-server-type - setq to 'apache if using a Apache server, and will refer ./.htaccess. - `'apache' - - -- Variable: yahtml-apache-access-file - When `yahtml-server-type' is `'apache', define name of access - restriction file. `".htaccess"' - - -- Variable: yahtml-shell-command-option - Options needed to invoke shell commands. - - -- Variable: yahtml-translate-hyphens-when-comment-region - Whether to change hyphens to `-' when commenting out region. - (`t') - - -- Variable: yahtml-entity-reference-chars-alist - alist of characters that needs to be written by Entity Reference. - Enter as `'(?char . "EntityReference")'. By default, `<', `>', `&', - `'', is set. Add as needed. Do not include `&' at beginning and `;' - at end of cdr portion of `"EntityReference"'. - - -- Variable: yahtml-faithful-to-htmllint - When using htmllint to check syntax, it will complain about excess - spaces. setq to `t' to avoid this. - - -- Variable: yahtml-use-css - Use style-sheet support or not (`t') - - -- Variable: yahtml-image-inspection-bytes - Number of bytes to inspect the image for geometry information - (`10000') - - -- Variable: yahtml:img-default-alt-format - format of img entity's ALT attributes. %x: width, %y: height, %s: - size in bytes, %c: first comment string, %f: filename - (`"%xx%y(%sbytes)"') - - -- Variable: yahtml-escape-chars - When, completing href-s, Escape reserved characters to URL-encoding - or not. Nil for never, t for everytime, and 'ask for inquiring at - each reserved chars. (`'ask') - - -- Variable: yahtml-use-font-lock - Use font-lock to fontify buffer or not (`(featurep 'font-lock)') - - -- Variable: yahtml-use-hilit19 - Use hilit19 to highlight buffer or not (`(featurep 'hilit19)') - - -- Variable: yahtml-indentation-boundary - Boundary regexp for indentation calculation. (`"^\\s *"') - - - -File: yahtmle, Node: Hook variables, Prev: All customizable variables, Up: Customizations - -hook variables -============== - - - - -File: yahtmle, Node: Copying, Next: Concept Index, Prev: Customizations, Up: Top - -Copying -******* - -This program is distributed as freesoftware. The author will take no -responsibility to any damages due to the usage of this software -whatsoever. There are no restrictions to its redistribution, just use -common sense. Mail me your thoughts on this program and I will be more -than willing to help. - -Complaints, requests, bug reports and comments are welcome. Make contacts -to yuuji@yatex.org$B!!(B(as of December 2000) - -If you like this program and use it on a regular basis, please join the -mailing list "fj Wild Bird Society". Procedures can be found in the "etc" -section of `docs/htmlqa.eng' in this package. - - - HIROSE, Yuuji - - - - -File: yahtmle, Node: Concept Index, Prev: Copying, Up: Top - -Index -***** - -* Menu: - -* Customize: Customizations. 4. -* Demacs: Intro. 4. -* Key Assign: Customizations. 4. -* LaTeX: Intro. 4. -* Mule: Intro. 4. -* yahtml: Intro. 4. - - - - - -Tag table: -Node: Top148 -Node: Intro725 -Node: Installation1123 -Node: Setting up yahtml1404 -Node: Setting environments for weblint browsers and image viewers2195 -Node: Setting environment variables for WWW pages2891 -Node: Command Invocation3862 -Node: Completion4290 -Node: Jump5807 -Node: Changing and Deleting6287 -Node: Changing tags in pairs6538 -Node: Changing entities7033 -Node: URLencoding of strings within region7569 -Node: td-enclosure/tr-enclosure7870 -Node: CSS Support8836 -Node: CSS-class completion9062 -Node: Reread CSS definition9915 -Node: Customizations10190 -Node: All customizable variables10466 -Node: Hook variables14234 -Node: Copying14360 -Node: Concept Index15151 - -End tag table +Info file: yahtmle, -*-Text-*- +produced by `texinfo-format-buffer' +from file `yahtmle.tex' +using `texinfmt.el' version 2.38 of 3 July 1998. + + + + + + +File: yahtmle, Node: Top, Next: Intro, Prev: (dir), Up: (dir) + +* Menu: + +* Intro:: Introduction +* Installation:: Installing yahtml +* Command Invocation:: Using External Commands +* Completion:: Input with Completion +* Jump:: Moving the Cursor +* Changing and Deleting:: Changing and Deleting +* CSS Support:: Style Sheet Support +* Customizations:: List of Customize Variables +* Copying:: Copyright +* Concept Index:: Index + + + +File: yahtmle, Node: Intro, Next: Installation, Prev: Top, Up: Top + +Introduction +************ + +yahtml is a package to support creating HTML documents on Emacsens. Easy +input of elements (tags) by completion, syntax checking with programs like +weblint, and invoking the appropriate browser or image viewer depending on +the cursor position is its main features. + +(This Info is still incomplete) + + + +File: yahtmle, Node: Installation, Next: Command Invocation, Prev: Intro, Up: Top + +Installing yahtml +***************** +* Menu: + +* Setting up yahtml:: +* Setting environments for weblint browsers and image viewers:: +* Setting environment variables for WWW pages:: + + + +File: yahtmle, Node: Setting up yahtml, Next: Setting environments for weblint browsers and image viewers, Prev: Installation, Up: Installation + +Setting up yahtml +================= + + +Add the following to `~/.emacs' + + (setq auto-mode-alist + (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist)) + (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t) + +Next, add to load-path the directory with the yahtml files (`yahtml.el', +`yatexlib.el', `yatexprc.el'). For example, if you put them in +`~/src/emacs/yahtml', + + (setq load-path (cons (expand-file-name "~/src/emacs/yahtml") load-path)) + +is what you add. + +By this, yahtml will be automatically loaded when editing files with .html +extensions. "yahtml" will be displayed on the mode line if no errors +occurred. + + + +File: yahtmle, Node: Setting environments for weblint browsers and image viewers, Next: Setting environment variables for WWW pages, Prev: Setting up yahtml, Up: Installation + +Setting environments for weblint, browsers, and image viewers +============================================================= + +Check the variables for invoking external commands and modify as needed. +Defaults are in parenthesis. + +`yahtml-www-browser' + ... browser command name (netscape) +`yahtml-image-viewer' + ... image viewer command name (xv) +`yahtml-lint-program' + ... syntax check programs command name (jweblint) +`yahtml-kanji-code' + ... kanji code for HTML files + + + +File: yahtmle, Node: Setting environment variables for WWW pages, Prev: Setting environments for weblint browsers and image viewers, Up: Installation + +Setting environment variables for WWW pages +=========================================== + +Variables regarding path names for files that will be your home page. +`yahtml-path-url-alist' + ... list of matching path name on file system and URLs +`yahtml-directory-index' + ... index file displayed when none is given in URL. Usually + `index.html' on NCSA type httpd and `Welcome.html' on CERN types. + +Examples for `yahtml-path-url-alist'. If `/home/yuuji/http/' is +`http://localhost/~yuuji' at home and `/usr/home/yuuji/www/' is +`http://www.keio.ac.jp/~yuuji/' at work, then + + (setq yahtml-path-url-alist + '(("/home/yuuji/http" . "http://localhost/~yuuji") + ("/usr/home/yuuji/www" . "http://www.keio.ac.jp/~yuuji"))) + +Any number of additions can be made to this list. + + + +File: yahtmle, Node: Command Invocation, Next: Completion, Prev: Installation, Up: Top + +Invoking external commands +************************** + +For easy use of commands that are handy when editing HTML files. +`[prefix] t j' + ... Invoke HTML syntax checker (jweblint) +`[prefix] t p' + ... Display current page in browser +`[prefix] t r' + ... Reload current page if browser is already running + + + +File: yahtmle, Node: Completion, Next: Jump, Prev: Command Invocation, Up: Top + +Completion Input +**************** + +Completion input of HTML elements is done through the same key strokes as +YaTeX's begin-type completion, section-type completion, large-type +completion, maketitle-type completion, and accent completion. +Corresponding elements in this order is; elements that span multiple +lines, empty elements such as img, tags that start and end in a single +line, elements with no attributes or contents, and special or symbol +entities. + +`[prefix] b (YaTeX begin-type completion)' + ... +

    +
+ + Completion for elements that the start tag and the end tag span + multiple lines. Mostly block-level elements. + +`[prefix] s (YateX section-type completion)' + ... + photo + + Completion for elements that do not have end tags and require only + attributes. Possible completions are, , . + +`[prefix] l (YaTeX large-type completion)' + ... + + ` + + Similar to begin-type completion but used for elements that start and + end on a single line. + + +`[prefix] m (YaTeX maketitle-type completion)' + ... Completion for elements without attributes or contents. Possible + completion is
+ +`[prefix] a (YaTeX accent completion)' + ... Used to enter special or symbol entities. By default completion + for < (<), > (>), & (&), " ("), ' ('), blank + ( ) is possible. + + + +File: yahtmle, Node: Jump, Next: Changing and Deleting, Prev: Completion, Up: Top + +Cursor Movement +*************** +By using + +`[prefix] g' + ... move to corresponding object + +the cursor will go to the corresponding object according to the context. +Recognized contexts are + + * `' <--> `' + * `' -> invoke viewer + * `' -> move cursor to linked target + * `' -> open Java source + + + +File: yahtmle, Node: Changing and Deleting, Next: CSS Support, Prev: Jump, Up: Top + +Changing and Deleting +********************* + +* Menu: + +* Changing tags in pairs:: +* Changing entities:: +* URLencoding of strings within region:: +* td-enclosure/tr-enclosure:: + + + +File: yahtmle, Node: Changing tags in pairs, Next: Changing entities, Prev: Changing and Deleting, Up: Changing and Deleting + +Changing tags in pairs +====================== +By using + +`[prefix] c' + ... change tags in matching pairs + +the content can be changed according to the context of the HTML document +where the cursor is located. + + * `'``' + ... change `TAG' element name + * attributes such as `photo' + ... change attributes + + + +File: yahtmle, Node: Changing entities, Next: URLencoding of strings within region, Prev: Changing tags in pairs, Up: Changing and Deleting + +Changing entities +================= +Special characters such as < or > must be written as < and >. Easy +conversion of these characters can be done when importing text from non +HTML files. + + +`[prefix] ;' + ... convert char to special entity in marked region +`[prefix] :' + ... convert special entity to original char in marked region + (reverse of [prefix] ;) + + + + +File: yahtmle, Node: URLencoding of strings within region, Next: td-enclosure/tr-enclosure, Prev: Changing entities, Up: Changing and Deleting + +URLencoding of strings within region +==================================== + +`[prefix] #' + ... encode chars that needs to be URLencoded within region + + + +File: yahtmle, Node: td-enclosure/tr-enclosure, Prev: URLencoding of strings within region, Up: Changing and Deleting + +td-enclosure/tr-enclosure +========================= +If you wan to convert series of field into ... repetitions for +table element, td-enclosure or tr-enclosure is convenient. + + `[prefix] }' + + ... Enclose each field in a region into ...'s. + `[prefix] ]' + + ... Enclose each line in a region into ...'s, with every +line converted to ... repetition. They presume white space as +field separator by default. To change this, enter other delimiting +character for a query. You can convert CSV, for example, into table by +specifying comma(,) as a delimiter. + +If you want to enclose fields with th, call with universal-argument +(`C-u'). Enter `th' to enclose fields with .... The special +answer `thd' means that enclose the only first column with th, and the +rest with td. + + + +File: yahtmle, Node: CSS Support, Next: Customizations, Prev: Changing and Deleting, Up: Top + +CSS(Style Sheets) Support +************************* + +* Menu: + +* CSS-class completion:: +* Reread CSS definition:: + + + +File: yahtmle, Node: CSS-class completion, Next: Reread CSS definition, Prev: CSS Support, Up: CSS Support + +CSS class-name completion +========================= +You can input a class name in your CSS definition with completion. If you +have CSS defined as below; + + h1.foo, h2.foo { background-color: 0xffffff; } + h1.bar, h2.bar { font-size: 120%; } + +when you input h1(or h2) tag with completing-read by [prefix] b or +[prefix] l, yahtml prompts you to input class name with completion from +the words which are effective to h1 or h2. And if you defined global +class like this; + + .caution { font-size: 120%; background-color: 0xc00000;} + +when you input any tags via completing-read, yahtml prompts you to input +class name. If this is bothering, typing `C-j' instead of `RET' (or +`C-m') cancels the next prompt to class name completion. + + + +File: yahtmle, Node: Reread CSS definition, Prev: CSS-class completion, Up: CSS Support + +Re-reading CSS definition +========================= +If you add some class to your CSS file and you want yahtml to load new +definitions, type `M-x yahtml-mode RET' to make yahtml do. + + + +File: yahtmle, Node: Customizations, Next: Copying, Prev: CSS Support, Up: Top + +Customizations +************** + +Variables that modify yahtml's behavior. + +* Menu: + +* All customizable variables:: List of customizable variables +* Hook variables:: hook variables + + + +File: yahtmle, Node: All customizable variables, Next: Hook variables, Prev: Customizations, Up: Customizations + +List of customizable variables. Defaults in parenthesis +======================================================== + + -- Variable: yahtml-prefix + Prefix key for yahtml-mode. (`\C-c') + + -- Variable: yahtml-image-viewer + Command to view image files refered by img. (xv) + + -- Variable: yahtml-www-browser + Browser to view external pages with `[prefix]g'. (netscape) + + -- Variable: yahtml-kanji-code + Default kanji code. 1=sjis, 2=jis, 3=euc, 4=utf-8 (2) If AddType + "text/html; charset=xxx" .html is written in .htaccess, this will + override yahtml-kanji-code. + + -- Variable: yahtml-fill-column + Columns to auto-fill (72) + + -- Variable: yahtml-fill-prefix + fill-prefix specific to yahtml-mode. (`nil') + + -- Variable: yahtml-path-url-alist + Matching list of URL and full path name on OS's file system. + + -- Variable: yahtml-directory-index + Default index filed opened when accessing a server without a + filename, usually index.html. (`"index.html"') + + -- Variable: yahtml-lint-program + HTML syntax check program. (`"jweblint"') + + -- Variable: yahtml-hate-too-deep-indentation + setq to t when indentations for nested enumerate elements are too + deep. (`nil') + + -- Variable: yahtml-always-/p + setq to t if you always want `

' after `

'. `nil' + + -- Variable: yahtml-p-prefered-env-regexp + Elements that `

' will be automatically inserted. + (`"^\\(body\\|dl\\|blockquote\\)"') + + -- Variable: yahtml-template-file + File to automatically insert when editing a new HTML file. + `"~/http/template.html"' + + -- Variable: yahtml-prefer-upcases + Use uppercase for tags. `nil' + + -- Variable: yahtml-prefer-upcase-attributes + Use uppercase for attributes. `nil' + + -- Variable: yahtml-server-type + setq to 'apache if using a Apache server, and will refer ./.htaccess. + `'apache' + + -- Variable: yahtml-apache-access-file + When `yahtml-server-type' is `'apache', define name of access + restriction file. `".htaccess"' + + -- Variable: yahtml-shell-command-option + Options needed to invoke shell commands. + + -- Variable: yahtml-translate-hyphens-when-comment-region + Whether to change hyphens to `-' when commenting out region. + (`t') + + -- Variable: yahtml-entity-reference-chars-alist + alist of characters that needs to be written by Entity Reference. + Enter as `'(?char . "EntityReference")'. By default, `<', `>', `&', + `'', is set. Add as needed. Do not include `&' at beginning and `;' + at end of cdr portion of `"EntityReference"'. + + -- Variable: yahtml-faithful-to-htmllint + When using htmllint to check syntax, it will complain about excess + spaces. setq to `t' to avoid this. + + -- Variable: yahtml-use-css + Use style-sheet support or not (`t') + + -- Variable: yahtml-image-inspection-bytes + Number of bytes to inspect the image for geometry information + (`10000') + + -- Variable: yahtml:img-default-alt-format + format of img entity's ALT attributes. %x: width, %y: height, %s: + size in bytes, %c: first comment string, %f: filename + (`"%xx%y(%sbytes)"') + + -- Variable: yahtml-escape-chars + When, completing href-s, Escape reserved characters to URL-encoding + or not. Nil for never, t for everytime, and 'ask for inquiring at + each reserved chars. (`'ask') + + -- Variable: yahtml-use-font-lock + Use font-lock to fontify buffer or not (`(featurep 'font-lock)') + + -- Variable: yahtml-use-hilit19 + Use hilit19 to highlight buffer or not (`(featurep 'hilit19)') + + -- Variable: yahtml-indentation-boundary + Boundary regexp for indentation calculation. (`"^\\s *"') + + + +File: yahtmle, Node: Hook variables, Prev: All customizable variables, Up: Customizations + +hook variables +============== + + + + +File: yahtmle, Node: Copying, Next: Concept Index, Prev: Customizations, Up: Top + +Copying +******* + +This program is distributed as freesoftware. The author will take no +responsibility to any damages due to the usage of this software +whatsoever. There are no restrictions to its redistribution, just use +common sense. Mail me your thoughts on this program and I will be more +than willing to help. + +Complaints, requests, bug reports and comments are welcome. Make contacts +to yuuji@yatex.org@(as of December 2000) + +If you like this program and use it on a regular basis, please join the +mailing list "fj Wild Bird Society". Procedures can be found in the "etc" +section of `docs/htmlqa.eng' in this package. + + + HIROSE, Yuuji + + + + +File: yahtmle, Node: Concept Index, Prev: Copying, Up: Top + +Index +***** + +* Menu: + +* Customize: Customizations. 4. +* Demacs: Intro. 4. +* Key Assign: Customizations. 4. +* LaTeX: Intro. 4. +* Mule: Intro. 4. +* yahtml: Intro. 4. + + + + +Tag table: +Node: Top151 +Node: Intro728 +Node: Installation1126 +Node: Setting up yahtml1407 +Node: Setting environments for weblint browsers and image viewers2198 +Node: Setting environment variables for WWW pages2894 +Node: Command Invocation3865 +Node: Completion4293 +Node: Jump5809 +Node: Changing and Deleting6289 +Node: Changing tags in pairs6573 +Node: Changing entities7068 +Node: URLencoding of strings within region7604 +Node: td-enclosure/tr-enclosure7905 +Node: CSS Support8871 +Node: CSS-class completion9097 +Node: Reread CSS definition9950 +Node: Customizations10225 +Node: All customizable variables10501 +Node: Hook variables14269 +Node: Copying14395 +Node: Concept Index15186 + +End tag table diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yahtmle.tex --- a/docs/yahtmle.tex Thu May 10 11:10:13 2012 +0900 +++ b/docs/yahtmle.tex Thu May 10 11:40:02 2012 +0900 @@ -5,7 +5,7 @@ @iftex @c @syncodeindex fn cp -@c Last modified Sun Apr 15 22:52:03 2012 on firestorm +@c Last modified Thu May 10 11:13:19 2012 on firestorm @syncodeindex vr cp @end iftex @@ -15,7 +15,7 @@ @subtitle Yet Another html-mode for emacs @title // yahtml // %@subtitle // yahtml // -@author @copyright{} 1994-1997 by HIROSE, Yuuji [yuuji@@yatex.org] +@author @copyright{} 1994-2012 by HIROSE, Yuuji [yuuji@@yatex.org] @end titlepage @node Top, Intro, (dir), (dir) diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yahtmlj --- a/docs/yahtmlj Thu May 10 11:10:13 2012 +0900 +++ b/docs/yahtmlj Thu May 10 11:40:02 2012 +0900 @@ -1,542 +1,541 @@ -Info file: yahtmlj, -*-Text-*- -produced by `texinfo-format-buffer' -from file `yahtmlj.tex' -using `texinfmt.el' version 2.38 of 3 July 1998. - - - - - - -File: yahtmlj, Node: Top, Next: Intro, Prev: (dir), Up: (dir) - -* Menu: - -* Intro:: $(B$O$8$a$K -(B* Installation:: $(B%$%s%9%H!<%k -(B* Command Invocation:: $(B30It%3%^%s%I5/F0 -(B* Completion:: $(BJd40F~NO -(B* Jump:: $(B%+!<%=%k%8%c%s%W -(B* Changing and Deleting:: $(BJQ99$H:o=| -(B* CSS Support:: $(B%9%?%$%k%7!<%HJd40 -(B* Customizations:: $(B%+%9%?%^%$%:JQ?t0lMw -(B* Copying:: $(B$H$j$"$D$+$$ -(B* Concept Index:: $(B:w0z - - - - -(BFile: yahtmlj, Node: Intro, Next: Installation, Prev: Top, Up: Top - -$(B$O$8$a$K -(B******** - -yahtml$(B$O (BGNU Emacs $(B>e$G (BHTML$(BJ8=q$r:n@.$9$k;~$K!"HK;($J(BHTML$(B%?%0$NF~NO$rJd40 -5!G=$K$h$C$F%9%`!<%:$K9T$($k$h$&$K$9$k$@$1$G$J$/!"(Bweblint$(B$J$I$N9=J8%A%'%C -%/%W%m%0%i%`!"%+!<%=%k0LCV$N(BURL$(B$d%U%!%$%kL>$K0MB8$7$?%V%i%&%6(B/$(B%$%a!<%8%t%e!< -%"$N5/F0$J$I$r (BEmacs $(BJT=82hLLCf$+$i9T$($k$h$&$K$9$k%Q%C%1!<%8$G$9!# - -(B($(B$3$N(BInfo$(B$OL$40@.$G$9(B(__)$(B!D(B) - - - -File: yahtmlj, Node: Installation, Next: Command Invocation, Prev: Intro, Up: Top - -$(B%$%s%9%H!<%k -(B************ -* Menu: - -* yahtml$(B5/F0$N$?$a$N@_Dj(B:: -* lint$(B%W%m%0%i%`(B/$(B%V%i%&%6(B/$(B%$%a!<%8%t%e!<%"4D6-Ey$N@_Dj(B:: -* WWW$(B%Z!<%84D6-MQJQ?t$N@_Dj(B:: - - - -File: yahtmlj, Node: yahtml$(B5/F0$N$?$a$N@_Dj(B, Next: lint$(B%W%m%0%i%`(B/$(B%V%i%&%6(B/$(B%$%a!<%8%t%e!<%"4D6-Ey$N@_Dj(B, Prev: Installation, Up: Installation - -yahtml$(B5/F0$N$?$a$N@_Dj -(B====================== - - -`~/.emacs'$(B$K2<$N(B2$(B9`L\$r2C$($^$9!# - - (B(setq auto-mode-alist - (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist)) - (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t) - -$(Be$N@_Dj$K$h$j!"3HD%;R$, (B.html $(B$G$"$k%U%!%$%k$rJT=8$9$k$H<+F0E*$K -(Byahtml $(B$,%m!<%I$5$l$^$9!#(Byahtml$(B$,@5>o$K5/F0$G$-$?$H$-$O%b!<%I%i%$%s$NI=<( -$,!V(Byahtml$(B!W$KJQ$o$j$^$9!# - - - -(BFile: yahtmlj, Node: lint$(B%W%m%0%i%`(B/$(B%V%i%&%6(B/$(B%$%a!<%8%t%e!<%"4D6-Ey$N@_Dj(B, Next: WWW$(B%Z!<%84D6-MQJQ?t$N@_Dj(B, Prev: yahtml$(B5/F0$N$?$a$N@_Dj(B, Up: Installation - -lint$(B%W%m%0%i%`(B/$(B%V%i%&%6(B/$(B%$%a!<%8%t%e!<%"4D6-Ey$N@_Dj -(B==================================================== - -$(BMxMQ$9$k30It%W%m%0%i%`$J$I$K4X$9$k0J2<$NJQ?t$r3NG'$7!"I,MW$J$i@5$7$$CM$KJQ -99$7$^$9(B($(B3g8LFb$O%G%U%)%k%HCM(B)$(B!# -(B`yahtml-www-browser' - ... $(B5/F0$9$k%V%i%&%6$N%3%^%s%IL>(B(netscape) -`yahtml-image-viewer' - ... $(B5/F0$9$k2hA|%S%e!<%"$N%3%^%s%IL>(B(xv) -`yahtml-lint-program' - ... $(B9=J8%A%'%C%/%W%m%0%i%`$N%3%^%s%IL>(B(jweblint) -`yahtml-kanji-code' - ... html$(B%U%!%$%k$N4A;z%3!<%I - - - -(BFile: yahtmlj, Node: WWW$(B%Z!<%84D6-MQJQ?t$N@_Dj(B, Prev: lint$(B%W%m%0%i%`(B/$(B%V%i%&%6(B/$(B%$%a!<%8%t%e!<%"4D6-Ey$N@_Dj(B, Up: Installation - -WWW$(B%Z!<%84D6-MQJQ?t$N@_Dj -(B========================= - -$(B%[!<%`%Z!<%8$H$J$k%U%!%$%k$,B8:_$9$k(BPATH$(BL>$K4X$9$kJQ?t$r@_Dj$7$^$9!# -(B`yahtml-path-url-alist' - ... $(B%U%!%$%k%7%9%F%`>e$N(BPATH$(BL>$H!"(BURL$(B$NBP1~I= -(B`yahtml-directory-index' - ... URL$(B;XDj$G%U%!%$%kL>$r>JN,$7$?$H$-$KI=<($5$l$k%$%s%G%C%/%9 - %U%!%$%kL>(B(NCSA$(B7O(Bhttpd$(B$J$i (B`index.html', CERN$(B7O$J$i(B`Welcome.html'$(B$,0l - HLE*(B) - -$(BJQ?t (B`yahtml-path-url-alist' $(B$N@_DjNc$r<($7$^$9!#Nc$($P!"<+Bp$G$O!" -(B`/home/yuuji/http/' $(B$, (B`http://localhost/~yuuji' $(B$G;2>H$G$-!"?&>l$G$O -(B`/usr/home/yuuji/www/' $(B$,(B`http://www.keio.ac.jp/~yuuji/' $(B$G;2>H$G$-$k$h$& -$K$J$C$F$$$k>l9g$O0J2<$N$h$&$K@_Dj$7$^$9!# - - (B(setq yahtml-path-url-alist - '(("/home/yuuj/http" . "http://localhost/~yuuji") - ("/usr/home/yuuj/www" . "http://www.keio.ac.jp/~yuuji"))) - -$(B$3$NBP1~AH$O$$$/$i$G$b@_Dj$9$k$3$H$,$G$-$^$9!# - - - -(BFile: yahtmlj, Node: Command Invocation, Next: Completion, Prev: Installation, Up: Top - -$(B30It%3%^%s%I5/F0 -(B**************** - -HTML$(B%U%!%$%kJT=8$K$+$+$o$k$$$/$D$+$N%3%^%s%I$rB(:B$K8F$V$3$H$,$G$-$^$9!# -(B`[prefix] t j' - ... HTML$(B9=J8%A%'%C%+(B(jweblint)$(B5/F0 -(B`[prefix] t p' - ... $(B8=:_$N%Z!<%8$rBP>]$H$7$?%V%i%&%65/F0 -(B`[prefix] t r' - ... $(B8=:_$N%Z!<%8$,%V%i%&%6$KI=<($5$l$F$$$k$H$-$N(Breload$(B;XDj - - - -(BFile: yahtmlj, Node: Completion, Next: Jump, Prev: Command Invocation, Up: Top - -$(BJd40F~NO -(B******** - -$(B!VLnD;!W$GMxMQ$G$-$k!"!V(Bbegin$(B7?Jd40!W!"!V(Bsection$(B7?Jd40!W!"!V(Blarge$(B7?Jd40!W!" -!V(Bmaketitle$(B7?Jd40!W!"!V%"%/%;%s%HJd40!W$HA4$/F1$8%-!$l$N7?$NJd40$O=g$K!"!VJ#?t9T$KEO$k%?%0F~NO!W!" -!V6uMWAG%?%0(B(img$(B$J$I(B)$(B$NJd40!W!"!V0l9TFb$G$N3+;O(B/$(B=*N;%?%0$NF~NO!W!"!V6uMWAG -6uB0@-%?%0$NF~NO!W!"!VJ8;z;2>HF~NO!W$KBP1~$7$F$$$^$9!#6qBNE*$K$O - -(B`[prefix] b ($(BLnD;$N(Bbegin$(BJd40$KBP1~(B)' - ... -

    -
- - $(B$N$h$&$K3+;O%?%0$H=*N;%?%0$rFs9T$KEO$C$F=q$-$?$$>l9g$NJd40$r;X$7$^$9!# - $*$b$K%V%m%C%/7?%?%0$,Jd408uJd$K4^$^$l$^$9!# - -(B`[prefix] s ($(BLnD;$N(Bsection$(B7?Jd40$KBP1~(B)' - ... - photo - - $(B$N$h$&$K=*N;%?%0$r;}$?$:!"$+$DB0@-CM$N$_$G5!G=$r;XDj$9$k%?%0$rJd40$7 - $^$9!#Jd408uJd$H$7$F$O!"(Bimg, input $(B$,B8:_$7$^$9!# - -(B`[prefix] l ($(BLnD;$N(Blarge$(B7?Jd40$KBP1~(B)' - ... begin$(B7?Jd40$H$[$\F1$8$G$9$,!" - - (B $(B!A (B - - $(B$N$h$&$K0l9TFb$K3+;O(B/$(B=*N;%?%0$rF~$l$?$$$H$-$KMxMQ$7$^$9!# - -(B`[prefix] m ($(BLnD;$N(Bmaketitle$(B7?Jd40$KBP1~(B)' - ... $(BMWAG$bB0@-CM$b;}$?$J$$%?%0$rJd40F~NO$7$^$9!#(B
- $(B$J$I$,Jd408uJd$KAjEv$7$^$9!# - -(B`[prefix] a ($(BLnD;$N%"%/%;%s%HJd40$KBP1~(B)' - ... $(B%(%s%F%#%F%#;2>H$K$h$kJ8;zI=5-$rF~NO$9$k$H$-$KMQ$$$^$9!# - %G%U%)%k%H$G$O (B< (<), > (>), & (&), " ("), ' ('), - $(B%V%i%s%/ (B( ) $(B$NJd40F~NO$,9T$($^$9!# - - - -(BFile: yahtmlj, Node: Jump, Next: Changing and Deleting, Prev: Completion, Up: Top - -$(B%+!<%=%k%8%c%s%W -(B**************** -$(BJ8=qCf$N$$$m$$$m$J>l=j$G - -(B`[prefix] g' - ... $(BBP1~$9$k%*%V%8%'%/%H$K%8%c%s%W - -$r2!$9$3$H$K$h$j!"%+!<%=%k0LCV$N(BHTML$(B9=J8$KBP1~$9$k>l=j$K%8%c%s%W$7$^$9!#BP -1~4X78$,B8:_$9$k$H2r' $(B"+"* (B`' - * `' $(B"* BP1~$9$k(Bviewer$(B5/F0 - (B* `' $(B"* %j%s%/@h$X$N%]%$%s%H0\F0 - (B* `' $(B"* (BJava$(B%=!<%9%W%m%0%i%`$X$N0\F0 - - - -(BFile: yahtmlj, Node: Changing and Deleting, Next: CSS Support, Prev: Jump, Up: Top - -$(BJQ99(B/$(B:o=| -(B********* - -* Menu: - -* $(BBP%?%0$NJQ99(B:: -* $(BJ8;z;2>H$X$NJQ99(B:: -* $(B%j%8%g%sFbJ8;z$N(BURLencode:: -* td$(B3g$j(B/tr$(B3g$j(B:: - - - -File: yahtmlj, Node: $(BBP%?%0$NJQ99(B, Next: $(BJ8;z;2>H$X$NJQ99(B, Prev: Changing and Deleting, Up: Changing and Deleting - -$(BBP%?%0$NJQ99 -(B============ -$(BJ8=qCf$N$$$m$$$m$J>l=j$G - -(B`[prefix] c' - ... $(BBP1~$9$k%?%0Ey$rJQ99 - -$r2!$9$3$H$K$h$j!"%+!<%=%k0LCV$N(BHTML$(B9=J8$K1~$8$?5-=RFbMF$NJQ99$r9T$$$^$9!# -%+!<%=%k0LCV$HJQ99$9$kFbMF$NBP1~$O0J2<$NDL$j$G$9!# - - (B* `'$(B!A(B`' - ... `TAG' $(B$NJQ99 - (B* `photo' $(B$J$I$NB0@-CM - (B... $(BB0@-CM$NJQ99 - - - -(BFile: yahtmlj, Node: $(BJ8;z;2>H$X$NJQ99(B, Prev: $(BBP%?%0$NJQ99(B, Up: Changing and Deleting - -$(BJ8;z;2>H$X$NJQ99 -(B================ -$(BJ8;z$H$7$F$N (B< $(B$d (B> $(B$rI=8=$9$k$H$-$O!"J8;z;2>H$rMQ$$$F(B< $(B$d (B> $(B$HI=5- -$9$kI,MW$,$"$j$^$9$,!"(BHTML$(B0J30$N%U%!%$%k$+$i$3$l$i$NJ8;z$r4^$`%F%-%9%H$rD% -$j9~$s$@>l9g$J$I$K!"$3$l$i$NJ8;z$r0l3g$7$FJ8;z;2>H7A<0$KJQ49$G$-$^$9!# - -(B`[prefix] ;' - ... $(B;XDj$7$?NN0h$NJ8;z;2>H$KCV$-49$($k$Y$-J8;z$NCV49 -(B`[prefix] :' - ... $(B;XDj$7$?NN0h$NJ8;z;2>H$r;2>HJ8;z$=$N$b$N$KCV49(B([prefix] ; - $(B$N5UJQ49(B) - - - - -File: yahtmlj, Node: $(B%j%8%g%sFbJ8;z$N(BURLencode, Next: td$(B3g$j(B/tr$(B3g$j(B, Prev: $(BJ8;z;2>H$X$NJQ99(B, Up: Changing and Deleting - -$(B%j%8%g%sFbJ8;z$N(BURLencode -========================= - [prefix] # - - ... $(B;XDj$7$?NN0hFb$K (BURLencode $(B$9$Y$-J8;z$,$"$l$P$=$l$i$r%(%s - %3!<%II=5-$KCV49!# - - - -(BFile: yahtmlj, Node: td$(B3g$j(B/tr$(B3g$j(B, Prev: $(B%j%8%g%sFbJ8;z$N(BURLencode, Up: Changing and Deleting - -td$(B3g$j(B/tr$(B3g$j -(B============= -$(B6uGr6h@Z$j$G=q$$$?I=7A<0$N9T%l%3!<%I$r (B $(B3g$j$NJB$S!$$"$k$$$O$=$l$i$r$5 -$i$K (B $(B$G3g$C$?9TJB$S$KJQ49$G$-$^$9!# - (B`[prefix] '} - - ... $(B8=:_$N%j%8%g%s$K$"$k%G!<%?$r6uGr6h@Z$j$4$H$K - (B... $(B$G3g$k - (B`[prefix] ]' - - ... $(B8=:_$N%j%8%g%s$K$"$k9T$r>e5-(Btd$(B3g$j$r$[$I$3$7$F$+$i$5$i$K9T$4$H -$K (B... $(B$G3g$k%G%U%)%k%H$G$O6uGr6h@Z$j$G$9$,!$$3$l$rJQ$($k$H$-$O -(BDelimiter: $(B$NLd$$9g$o$;$K6h@Z$jJ8;z$r;XDj$7$^$9!#$?$H$($P%+%s%^(B(,) $(B$r;XDj -$9$k$H(BCSV$(B$+$iI=$r:n$k$3$H$,$G$-$^$9!# - -(Btd$(B0J30$NMWAG!$6qBNE*$K$O (Bth $(B$G3g$j$?$$>l9g$O (Buniversal-argument (`C-u') $(B$r -$D$1$F>e5-(B2$(B$D$N%3%^%s%I$r8F$S$^$9!#$I$NMWAG$G3g$k$+$N... $(B$G3g$j$^$9!#$b$7!$Bh(B1$(B%U%#!< -%k%I$N$_ (Bth $(B$G!$;D$j$rA4It (Btd $(B3g$j$K$7$?$$$H$-$O (Bthd $(B$HF~NO$7$F2<$5$$!# - - - -(BFile: yahtmlj, Node: CSS Support, Next: Customizations, Prev: Changing and Deleting, Up: Top - -CSS($(B%9%?%$%k%7!<%H(B)$(B%5%]!<%H -(B*************************** - -* Menu: - -* CSS-class completion:: -* Reread CSS file:: - - - -File: yahtmlj, Node: CSS-class completion, Next: Reread CSS file, Prev: CSS Support, Up: CSS Support - -CSS$(B%/%i%9L>Jd40 -(B=============== -HTML$(B20$O(BCSS(Cascading Style Sheets)$(B$N%/%i%9L>$rJd40F~NO$9$k$3$H$,$G$-$^$9!# -%9%?%$%kDj5A$H$7$F - - (Bh1.foo, h2.foo { background-color: 0xffffff; } - h1.bar, h2.bar { font-size: 120%; } - -$(B$N$h$&$J$b$N$,$"$C$?>l9g$K!"(Bh1$(B$^$?$O(Bh2$(B%?%0$r (B[prefix] b $(B$d (B[prefix] l $(B$GJd -40F~NO$7$?>l9g$K!"$=$l$i$KM-8z$J (Bclass $(BL>$G$"$k (Bfoo, bar $(B$r8uJd$H$7$FJd40 -F~NO$9$k$3$H$,2DG=$G$9!#$^$? - - (B.caution { font-size: 120%; background-color: 0xc00000;} - -$(B$N$h$&$JA4$F$N%(%l%a%s%H$KF/$/(Bclass$(B$,Dj5A$5$l$F$$$?>l9g$O!"A4$F$N%?%0$NJd -40F~NO;~$K(Bclass$(B;2>HF~NO$r5a$a$i$l$^$9!#$3$l$,HQ$o$7$$>l9g$O%(%l%a%s%HL>F~ -NO3NDj$N$H$-$K%j%?!<%s%-!<(B($(B$^$?$O(BC-m)$(B$G$O$J$/!"(BC-j$(B$r2!$;$P(Bclass$(BJd40F~NO$r -%-%c%s%;%k$G$-$^$9!#$?$H$($P - - (B`[prefix] l' $(B9TFb%?%0Jd40$r5/F0 - (B($(B$^$?$O(B`[prefix] l SPC') - tt $(B$r$$$l$?$$$N$G(Btt$(B$HF~NO - (B`C-m' - -$(B$H$7$?>l9g$OB3$$$F (Bclass= $(B$HJd40%W%m%s%W%H$,=P$^$9$,!" - - (B`[prefix] l' $(B9TFb%?%0Jd40$r5/F0 - (B($(B$^$?$O(B`[prefix] l SPC') - tt $(B$r$$$l$?$$$N$G(Btt$(B$HF~NO - (B`C-j' - -$(B$H:G8e$r (B`C-j' $(B$GF~NO$7$?>l9g$O (Bclass $(BJd40%W%m%s%W%H$O=P$^$;$s!# - - - -(BFile: yahtmlj, Node: Reread CSS file, Prev: CSS-class completion, Up: CSS Support - -CSS$(BDj5A%U%!%$%k$NFI$_D>$7 -(B========================= -html$(B%U%!%$%k$rJT=8Cf$K(BCSS$(BDj5A%U%!%$%k$r=$@5$7!"DI2C$7$?(Bclass$(B$rJd408uJd$H$7 -$FD>$A$KFI$_9~$^$;$?$$>l9g$O!"(B`M-x yahtml-mode' $(B$H$7$F:F5/F0$r9T$C$F$/$@$5 -$$!# - - - -(BFile: yahtmlj, Node: Customizations, Next: Copying, Prev: CSS Support, Up: Top - -$(B%+%9%?%^%$%: -(B************ - -yahtml$(B$NF0:n$r@)8f$9$kJQ?t$K$D$$$F@bL@$7$^$9!# - -(B* Menu: - -* All customizable variables:: $(B%+%9%?%^%$%:JQ?t0lMw -(B* Hook variables:: hook$(BJQ?t - - - -(BFile: yahtmlj, Node: All customizable variables, Next: Hook variables, Prev: Customizations, Up: Customizations - -$(B%+%9%?%^%$%:JQ?t0lMw -(B==================== - - -- Variable: yahtml-prefix - yahtml-mode $(BCf$N%W%j%U%#%/%9%-!< (B(`\C-c') - - -- Variable: yahtml-image-viewer - img$(B$G;2>H$7$F$$$k2hA|%U%!%$%k$rI=<($9$k$H$-$K5/F0$9$k%3%^%s%I (B(xv) - - -- Variable: yahtml-www-browser - `[prefix]g' $(B$G30It%Z!<%8$rI=<($9$k$H$-$K5/F0$9$k%V%i%&%6 (B(netscape) - - -- Variable: yahtml-kanji-code - $(B%G%U%)%k%H$N4A;z%3!<%I!#(B1=sjis, 2=jis, 3=euc, 4=utf-8 (2) - .htaccess $(B%U%!%$%k$K - (BAddType "text/html; charset=xxx" .html $(B$N5-=R$,$"$C$?>l9g$O$=$l - $K=>$& - - (B-- Variable: yahtml-fill-column - auto-fill$(B$9$k$H$-$N%+%i%`?t (B(72) - - -- Variable: yahtml-fill-prefix - yahtml-mode $(B8GM-$N(Bfill-prefix (`nil') - - -- Variable: yahtml-path-url-alist - OS$(B$N%U%!%$%k%7%9%F%`>e$G$N%U%k%Q%9L>$H!"$=$N30It8x3+;~$N(BURL$(B$NBP1~I=!# - - (B-- Variable: yahtml-directory-index - $(B%5!<%P%"%/%;%9;~%U%!%$%kL>$r>JN,$7$?$H$-$K%G%U%)%k%H$G3+$+$l$k%$%s%G%C - %/%9%U%!%$%k$NL>A0!#B?$/$N>l9g (Bindex.html$(B!#(B(`"index.html"') - - -- Variable: yahtml-lint-program - HTML$(B9=J8%A%'%C%/%W%m%0%i%`!#(B(`"jweblint"') - - -- Variable: yahtml-hate-too-deep-indentation - $(B%M%9%H$7$?Ns5s7O4D6-$G$N%$%s%G%s%H$,?<$9$.$k$H$-$K(Bt$(B$K$9$k!#(B(`nil') - - -- Variable: yahtml-always-/p - `

' $(B$r$$$l$?$iI,$: (B`

' $(B$7$?$$?M8~$1!#(B`nil' - - -- Variable: yahtml-p-prefered-env-regexp - $(B<+F0E*$K (B`

' $(B$rF~$l$FM_$7$$4D6-!# - (B(`"^\\(body\\|dl\\|blockquote\\)"') - - -- Variable: yahtml-template-file - $(B?75,(BHTML$(B%U%!%$%k:n@.;~$K<+F0E*$KA^F~$7$FM_$7$$%U%!%$%kL>!# - (B`"~/http/template.html"' - - -- Variable: yahtml-prefer-upcases - $(B%?%0$KBgJ8;z$r;H$$$?$$!#(B`nil' - - -- Variable: yahtml-prefer-upcase-attributes - $(BB0@-;XDj;R$KBgJ8;z$r;H$$$?$$!#(B`nil' - - -- Variable: yahtml-server-type - Apache$(B7O$N%5!<%P$rMxMQ$7$F$$$k>l9g$O (B'apache $(B$r%;%C%H$9$k!# - (B./.htaccess $(B$r;2>H$9$k$+$I$&$+$r7hDj$9$k!#(B`'apache' - - -- Variable: yahtml-apache-access-file - `yahtml-server-type' $(B$, (B`'apache' $(B$N$H$-$K%"%/%;%9@)8B%U%!%$%kL>$r;X - Dj!#(B`".htaccess"' - - -- Variable: yahtml-shell-command-option - $(B%7%'%k$GJL%3%^%s%I$r5/F0$9$k$H$-$N%*%W%7%g%s!# - - (B-- Variable: yahtml-translate-hyphens-when-comment-region - $(BNN0h%3%a%s%H%"%&%H$r$9$k$H$-$K4{$KB8:_$9$k%O%$%U%s$r (B`-' $(B$KJQ99$9 - $k$+$I$&$+!#(B(`t') - - -- Variable: yahtml-entity-reference-chars-alist - $(B%(%s%F%#%F%#;2>H(B(Entity Reference)$(B$G5-=R$9$Y$-J8;z72$r(B`'(?$(BJ8;z (B. "$(B%( - %s%F%#%F%#I=5-(B")' $(B$H$$$&7A<0$rNs5s$7$?(Balist$(B$GJB$Y$k!#%G%U%)%k%H$G - (B`<', `>', `&', `'', `"' $(B$KBP$9$k(Balist$(B$,@_Dj$5$l$F$$$k$N$G!"DI2C$7$?$$ - J,$@$1$r5-=R$9$l$PNI$$!#(Bcdr$(BIt (B`"$(B%(%s%F%#%F%#I=5-(B"' $(B$O!"@hF,$N (B`&' $(B$H - KvHx$N(B`;' $(B$O4^$a$:$K=q$/!# - - (B-- Variable: yahtml-faithful-to-htmllint - $(B9=J8%A%'%C%+$H$7$F (Bhtmllint $(B$rMxMQ$9$k>l9g$A$g$C$H$7$?M>7W$J6uGr$J$I - $KBP$7$F$b7Y9p$r<($9$N$G!"$3$l$r2sHr$9$k$H$-$K$O$3$NJQ?t$r(B`t'$(B$K$9$k!# - - (B-- Variable: yahtml-use-css - CSS$(B$NJd405!G=$r;H$&$+$I$&$+ (B(`t') - - -- Variable: yahtml-image-inspection-bytes - $(B2hA|%U%!%$%k$N%5%$%:$rD4$Y$k$H$-$KFI$_9~$`%P%$%H?t (B(`10000') - - -- Variable: yahtml:img-default-alt-format - $(B$N(BALT$(BB0@-$N%G%U%)%k%HJ8;zNs$N=q<0!#(B%x$(B$O2hA|$NI}!"(B%y$(B$O2hA| - $N9b$5!"(B%s$(B$O%U%!%$%k%5%$%:$KCV49$5$l$k (B(`"%xx%y(%sbytes)"') - - -- Variable: yahtml-escape-chars - href$(BJd40$J$I$N$H$-$KM=LsJ8;z$r(BURL$(B%(%s%3!<%I$9$k$+(B; 'ask$(B$N$H$-$O3NG'$7 - $F$+$iCV49$9$k (B(`'ask') - - -- Variable: yahtml-use-font-lock - $(B%=!<%9$N?'$E$1%Q%C%1!<%8$H$7$F (Bfont-lock $(B$rMxMQ$9$k$+(B(`(featurep - 'font-lock)') - - -- Variable: yahtml-use-hilit19 - $(B%=!<%9$N?'$E$1%Q%C%1!<%8$H$7$F (Bhilit19 $(B$rMxMQ$9$k$+(B(`(featurep - 'hilit19)') - - -- Variable: yahtml-indentation-boundary - $(B%$%s%G%s%H7W;;$rBG$A@Z$C$F$h$$6-3&$H$J$k@55,I=8=(B(`"^\\s *"') - - - -File: yahtmlj, Node: Hook variables, Prev: All customizable variables, Up: Customizations - -hook$(BJQ?t -(B======== - - - - -File: yahtmlj, Node: Copying, Next: Concept Index, Prev: Customizations, Up: Top - -$(B:\Ey$K4X$7$F$O@)8B$$$? -$7$^$;$s!#>o<1E*$K07$C$F$/$@$5$$!#$^$?!";HMQ$7$F$$$k;]$r%a%$%k$G$*CN$i$;$$ -$?$@$/$H!":np!"4uK>!"%P%0Js9p!"46A[Ey$O4?7^$$$?$7$^$9!#O"Mm$O (Byuuji@yatex.org $(B$^ -$G(B(2000$(BG/(B12$(B7n8=:_(B)$(B!#7QB3E*$K;HMQ$7$F$/$@$5$kJ}$O%a%$%j%s%0%j%9%H!V(Bfj$(BLnD;$N -2q!W$K@'Hs2CF~$7$F$/$@$5$$!#2CF~J}K!$K$D$$$F$OK\%Q%C%1!<%8$N (B`docs/htmlqa' -$(B%U%!%$%k$N!V$=$NB>!W$N>O$r8fMw$/$@$5$$!# - -;EMM$O!"M=9p$J$/3NH$X$NJQ99(B5300 -Node: $(B%j%8%g%sFbJ8;z$N(BURLencode5658 -Node: td$(B3g$j(B/tr$(B3g$j(B5890 -Node: CSS Support6519 -Node: CSS-class completion6738 -Node: Reread CSS file7734 -Node: Customizations7956 -Node: All customizable variables8180 -Node: Hook variables11178 -Node: Copying11290 -Node: Concept Index11793 - -End tag table +Info file: yahtmlj, -*-Text-*- +produced by `texinfo-format-buffer' +from file `yahtmlj.tex' +using `texinfmt.el' version 2.38 of 3 July 1998. + + + + + + +File: yahtmlj, Node: Top, Next: Intro, Prev: (dir), Up: (dir) + +* Menu: + +* Intro:: ‚Í‚¶‚ß‚É +* Installation:: ƒCƒ“ƒXƒg[ƒ‹ +* Command Invocation:: ŠO•”ƒRƒ}ƒ“ƒh‹N“® +* Completion:: •âŠ®“ü—Í +* Jump:: ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv +* Changing and Deleting:: •ÏX‚Æíœ +* CSS Support:: ƒXƒ^ƒCƒ‹ƒV[ƒg•âŠ® +* Customizations:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— +* Copying:: ‚Æ‚è‚ ‚‚©‚¢ +* Concept Index:: õˆø + + + + +File: yahtmlj, Node: Intro, Next: Installation, Prev: Top, Up: Top + +‚Í‚¶‚ß‚É +******** + +yahtml‚Í GNU Emacs ã‚Å HTML•¶‘‚ð쬂·‚鎞‚ÉA”ÉŽG‚ÈHTMLƒ^ƒO‚Ì“ü—Í‚ð•âŠ® +‹@”\‚É‚æ‚Á‚ăXƒ€[ƒY‚És‚¦‚é‚悤‚É‚·‚邾‚¯‚Å‚È‚­Aweblint‚È‚Ç‚Ì\•¶ƒ`ƒFƒb +ƒNƒvƒƒOƒ‰ƒ€AƒJ[ƒ\ƒ‹ˆÊ’u‚ÌURL‚âƒtƒ@ƒCƒ‹–¼‚Ɉˑ¶‚µ‚½ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ +ƒA‚Ì‹N“®‚È‚Ç‚ð Emacs •ÒW‰æ–Ê’†‚©‚çs‚¦‚é‚悤‚É‚·‚éƒpƒbƒP[ƒW‚Å‚·B + +(‚±‚ÌInfo‚Í–¢Š®¬‚Å‚·(__)c) + + + +File: yahtmlj, Node: Installation, Next: Command Invocation, Prev: Intro, Up: Top + +ƒCƒ“ƒXƒg[ƒ‹ +************ +* Menu: + +* yahtml‹N“®‚Ì‚½‚ß‚ÌÝ’è:: +* lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è:: +* WWWƒy[ƒWŠÂ‹«—p•Ï”‚ÌÝ’è:: + + + +File: yahtmlj, Node: yahtml‹N“®‚Ì‚½‚ß‚ÌÝ’è, Next: lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è, Prev: Installation, Up: Installation + +yahtml‹N“®‚Ì‚½‚ß‚ÌÝ’è +====================== + + +`~/.emacs'‚ɉº‚Ì2€–Ú‚ð‰Á‚¦‚Ü‚·B + + (setq auto-mode-alist + (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist)) + (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t) + +ŽŸ‚Éyahtml‚É•K—v‚ȃtƒ@ƒCƒ‹(`yahtml.el', `yatexlib.el', `yatexprc.el') ‚ð’u +‚­ƒfƒBƒŒƒNƒgƒŠ‚ð load-path ‚ɉÁ‚¦‚Ü‚·B‚½‚Æ‚¦‚ÎA `~/src/emacs/yahtml'‚É’u +‚­‚Ì‚Å‚ ‚ê‚ÎA + + (setq load-path (cons (expand-file-name "~/src/emacs/yahtml") load-path)) + +‚È‚Ç‚Æ‚µ‚Ü‚·B + + ˆÈã‚ÌÝ’è‚É‚æ‚èAŠg’£Žq‚ª .html ‚Å‚ ‚éƒtƒ@ƒCƒ‹‚ð•ÒW‚·‚é‚ÆŽ©“®“I‚É +yahtml ‚ªƒ[ƒh‚³‚ê‚Ü‚·Byahtml‚ª³í‚É‹N“®‚Å‚«‚½‚Æ‚«‚̓‚[ƒhƒ‰ƒCƒ“‚Ì•\Ž¦ +‚ªuyahtmlv‚É•Ï‚í‚è‚Ü‚·B + + + +File: yahtmlj, Node: lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è, Next: WWWƒy[ƒWŠÂ‹«—p•Ï”‚ÌÝ’è, Prev: yahtml‹N“®‚Ì‚½‚ß‚ÌÝ’è, Up: Installation + +lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è +==================================================== + +—˜—p‚·‚éŠO•”ƒvƒƒOƒ‰ƒ€‚È‚Ç‚ÉŠÖ‚·‚éˆÈ‰º‚Ì•Ï”‚ðŠm”F‚µA•K—v‚Ȃ糂µ‚¢’l‚É•Ï +X‚µ‚Ü‚·(Š‡ŒÊ“à‚̓fƒtƒHƒ‹ƒg’l)B +`yahtml-www-browser' + ... ‹N“®‚·‚éƒuƒ‰ƒEƒU‚̃Rƒ}ƒ“ƒh–¼(netscape) +`yahtml-image-viewer' + ... ‹N“®‚·‚é‰æ‘œƒrƒ…[ƒA‚̃Rƒ}ƒ“ƒh–¼(xv) +`yahtml-lint-program' + ... \•¶ƒ`ƒFƒbƒNƒvƒƒOƒ‰ƒ€‚̃Rƒ}ƒ“ƒh–¼(jweblint) +`yahtml-kanji-code' + ... htmlƒtƒ@ƒCƒ‹‚ÌŠ¿ŽšƒR[ƒh + + + +File: yahtmlj, Node: WWWƒy[ƒWŠÂ‹«—p•Ï”‚ÌÝ’è, Prev: lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è, Up: Installation + +WWWƒy[ƒWŠÂ‹«—p•Ï”‚ÌÝ’è +========================= + +ƒz[ƒ€ƒy[ƒW‚Æ‚È‚éƒtƒ@ƒCƒ‹‚ª‘¶Ý‚·‚éPATH–¼‚ÉŠÖ‚·‚é•Ï”‚ðݒ肵‚Ü‚·B +`yahtml-path-url-alist' + ... ƒtƒ@ƒCƒ‹ƒVƒXƒeƒ€ã‚ÌPATH–¼‚ÆAURL‚̑Ήž•\ +`yahtml-directory-index' + ... URLŽw’è‚Ńtƒ@ƒCƒ‹–¼‚ðÈ—ª‚µ‚½‚Æ‚«‚É•\Ž¦‚³‚ê‚éƒCƒ“ƒfƒbƒNƒX + ƒtƒ@ƒCƒ‹–¼(NCSAŒnhttpd‚È‚ç `index.html', CERNŒn‚È‚ç`Welcome.html'‚ªˆê + ”Ê“I) + +•Ï” `yahtml-path-url-alist' ‚ÌÝ’è—á‚ðŽ¦‚µ‚Ü‚·B—Ⴆ‚ÎAŽ©‘î‚Å‚ÍA +`/home/yuuji/http/' ‚ª `http://localhost/~yuuji' ‚ÅŽQÆ‚Å‚«AEê‚Å‚Í +`/usr/home/yuuji/www/' ‚ª`http://www.keio.ac.jp/~yuuji/' ‚ÅŽQÆ‚Å‚«‚é‚悤 +‚É‚È‚Á‚Ä‚¢‚éꇂ͈ȉº‚̂悤‚Éݒ肵‚Ü‚·B + + (setq yahtml-path-url-alist + '(("/home/yuuj/http" . "http://localhost/~yuuji") + ("/usr/home/yuuj/www" . "http://www.keio.ac.jp/~yuuji"))) + +‚±‚̑Ήž‘g‚Í‚¢‚­‚ç‚Å‚àÝ’è‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + + + +File: yahtmlj, Node: Command Invocation, Next: Completion, Prev: Installation, Up: Top + +ŠO•”ƒRƒ}ƒ“ƒh‹N“® +**************** + +HTMLƒtƒ@ƒCƒ‹•ÒW‚É‚©‚©‚í‚é‚¢‚­‚‚©‚̃Rƒ}ƒ“ƒh‚ð‘¦À‚ɌĂԂ±‚Æ‚ª‚Å‚«‚Ü‚·B +`[prefix] t j' + ... HTML\•¶ƒ`ƒFƒbƒJ(jweblint)‹N“® +`[prefix] t p' + ... Œ»Ý‚̃y[ƒW‚ð‘ÎÛ‚Æ‚µ‚½ƒuƒ‰ƒEƒU‹N“® +`[prefix] t r' + ... Œ»Ý‚̃y[ƒW‚ªƒuƒ‰ƒEƒU‚É•\Ž¦‚³‚ê‚Ä‚¢‚é‚Æ‚«‚ÌreloadŽw’è + + + +File: yahtmlj, Node: Completion, Next: Jump, Prev: Command Invocation, Up: Top + +•âŠ®“ü—Í +******** + +u–ì’¹v‚Å—˜—p‚Å‚«‚éAubeginŒ^•âŠ®vAusectionŒ^•âŠ®vAulargeŒ^•âŠ®vA +umaketitleŒ^•âŠ®vAuƒAƒNƒZƒ“ƒg•âŠ®v‚Æ‘S‚­“¯‚¶ƒL[‘€ì‚őΉž‚·‚éHTMLƒ^ +ƒO‚̕⊮“ü—Í‚ª‚Å‚«‚Ü‚·B‚»‚ꂼ‚ê‚ÌŒ^‚̕⊮‚͇‚ÉAu•¡”s‚É“n‚éƒ^ƒO“ü—ÍvA +u‹ó—v‘fƒ^ƒO(img‚È‚Ç)‚̕⊮vAuˆês“à‚Å‚ÌŠJŽn/I—¹ƒ^ƒO‚Ì“ü—ÍvAu‹ó—v‘f +‹ó‘®«ƒ^ƒO‚Ì“ü—ÍvAu•¶ŽšŽQÆ“ü—Ív‚ɑΉž‚µ‚Ä‚¢‚Ü‚·B‹ï‘Ì“I‚É‚Í + +`[prefix] b (–ì’¹‚Ìbegin•âŠ®‚ɑΉž)' + ... +

    +
+ + ‚̂悤‚ÉŠJŽnƒ^ƒO‚ÆI—¹ƒ^ƒO‚ð“ñs‚É“n‚Á‚Ä‘‚«‚½‚¢ê‡‚̕⊮‚ðŽw‚µ‚Ü‚·B + ‚¨‚à‚ɃuƒƒbƒNŒ^ƒ^ƒO‚ª•âŠ®Œó•â‚ÉŠÜ‚Ü‚ê‚Ü‚·B + +`[prefix] s (–ì’¹‚ÌsectionŒ^•âŠ®‚ɑΉž)' + ... + photo + + ‚̂悤‚ÉI—¹ƒ^ƒO‚ðŽ‚½‚¸A‚©‚‘®«’l‚Ì‚Ý‚Å‹@”\‚ðŽw’è‚·‚éƒ^ƒO‚ð•âŠ®‚µ + ‚Ü‚·B•âŠ®Œó•â‚Æ‚µ‚Ä‚ÍAimg, input ‚ª‘¶Ý‚µ‚Ü‚·B + +`[prefix] l (–ì’¹‚ÌlargeŒ^•âŠ®‚ɑΉž)' + ... beginŒ^•âŠ®‚Æ‚Ù‚Ú“¯‚¶‚Å‚·‚ªA + + ` + + ‚̂悤‚Ɉês“à‚ÉŠJŽn/I—¹ƒ^ƒO‚ð“ü‚ꂽ‚¢‚Æ‚«‚É—˜—p‚µ‚Ü‚·B + +`[prefix] m (–ì’¹‚ÌmaketitleŒ^•âŠ®‚ɑΉž)' + ... —v‘f‚à‘®«’l‚àŽ‚½‚È‚¢ƒ^ƒO‚ð•âŠ®“ü—Í‚µ‚Ü‚·B
+ ‚È‚Ç‚ª•âŠ®Œó•â‚É‘Š“–‚µ‚Ü‚·B + +`[prefix] a (–ì’¹‚̃AƒNƒZƒ“ƒg•âŠ®‚ɑΉž)' + ... ƒGƒ“ƒeƒBƒeƒBŽQÆ‚É‚æ‚镶Žš•\‹L‚ð“ü—Í‚·‚é‚Æ‚«‚É—p‚¢‚Ü‚·B + ƒfƒtƒHƒ‹ƒg‚Å‚Í < (<), > (>), & (&), " ("), ' ('), + ƒuƒ‰ƒ“ƒN ( ) ‚̕⊮“ü—Í‚ªs‚¦‚Ü‚·B + + + +File: yahtmlj, Node: Jump, Next: Changing and Deleting, Prev: Completion, Up: Top + +ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv +**************** +•¶‘’†‚Ì‚¢‚ë‚¢‚ë‚ÈꊂŠ+ +`[prefix] g' + ... ‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv + +‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌHTML\•¶‚ɑΉž‚·‚éꊂɃWƒƒƒ“ƒv‚µ‚Ü‚·B‘Î +‰žŠÖŒW‚ª‘¶Ý‚·‚é‚ƉðŽß‚³‚ê‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + + * `' ©¨ `' + * `' ¨ ‘Ήž‚·‚éviewer‹N“® + * `' ¨ ƒŠƒ“ƒNæ‚ւ̃|ƒCƒ“ƒgˆÚ“® + * `' ¨ Javaƒ\[ƒXƒvƒƒOƒ‰ƒ€‚ւ̈ړ® + + + +File: yahtmlj, Node: Changing and Deleting, Next: CSS Support, Prev: Jump, Up: Top + +•ÏX/íœ +********* + +* Menu: + +* ‘΃^ƒO‚Ì•ÏX:: +* •¶ŽšŽQÆ‚Ö‚Ì•ÏX:: +* ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode:: +* tdŠ‡‚è/trŠ‡‚è:: + + + +File: yahtmlj, Node: ‘΃^ƒO‚Ì•ÏX, Next: •¶ŽšŽQÆ‚Ö‚Ì•ÏX, Prev: Changing and Deleting, Up: Changing and Deleting + +‘΃^ƒO‚Ì•ÏX +============ +•¶‘’†‚Ì‚¢‚ë‚¢‚ë‚ÈꊂŠ+ +`[prefix] c' + ... ‘Ήž‚·‚éƒ^ƒO“™‚ð•ÏX + +‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌHTML\•¶‚ɉž‚¶‚½‹Lq“à—e‚Ì•ÏX‚ðs‚¢‚Ü‚·B +ƒJ[ƒ\ƒ‹ˆÊ’u‚Æ•ÏX‚·‚é“à—e‚̑Ήž‚͈ȉº‚Ì’Ê‚è‚Å‚·B + + * `'``' + ... `TAG' ‚Ì•ÏX + * `photo' ‚È‚Ç‚Ì‘®«’l + ... ‘®«’l‚Ì•ÏX + + + +File: yahtmlj, Node: •¶ŽšŽQÆ‚Ö‚Ì•ÏX, Next: ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode, Prev: ‘΃^ƒO‚Ì•ÏX, Up: Changing and Deleting + +•¶ŽšŽQÆ‚Ö‚Ì•ÏX +================ +•¶Žš‚Æ‚µ‚Ä‚Ì < ‚â > ‚ð•\Œ»‚·‚é‚Æ‚«‚ÍA•¶ŽšŽQÆ‚ð—p‚¢‚Ä< ‚â > ‚Æ•\‹L +‚·‚é•K—v‚ª‚ ‚è‚Ü‚·‚ªAHTMLˆÈŠO‚̃tƒ@ƒCƒ‹‚©‚炱‚ê‚ç‚Ì•¶Žš‚ðŠÜ‚ÞƒeƒLƒXƒg‚ð’£ +‚èž‚ñ‚¾ê‡‚È‚Ç‚ÉA‚±‚ê‚ç‚Ì•¶Žš‚ðˆêŠ‡‚µ‚Ä•¶ŽšŽQÆŒ`Ž®‚É•ÏŠ·‚Å‚«‚Ü‚·B + +`[prefix] ;' + ... Žw’肵‚½—̈æ‚Ì•¶ŽšŽQÆ‚É’u‚«Š·‚¦‚é‚ׂ«•¶Žš‚Ì’uŠ· +`[prefix] :' + ... Žw’肵‚½—̈æ‚Ì•¶ŽšŽQÆ‚ðŽQÆ•¶Žš‚»‚Ì‚à‚Ì‚É’uŠ·([prefix] ; + ‚Ì‹t•ÏŠ·) + + + + +File: yahtmlj, Node: ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode, Next: tdŠ‡‚è/trŠ‡‚è, Prev: •¶ŽšŽQÆ‚Ö‚Ì•ÏX, Up: Changing and Deleting + +ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode +========================= + `[prefix] #' + + ... Žw’肵‚½—̈æ“à‚É URLencode ‚·‚ׂ«•¶Žš‚ª‚ ‚ê‚΂»‚ê‚ç‚ðƒGƒ“ + ƒR[ƒh•\‹L‚É’uŠ·B + + + +File: yahtmlj, Node: tdŠ‡‚è/trŠ‡‚è, Prev: ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode, Up: Changing and Deleting + +tdŠ‡‚è/trŠ‡‚è +============= +‹ó”’‹æØ‚è‚Å‘‚¢‚½•\Œ`Ž®‚ÌsƒŒƒR[ƒh‚𠊇‚è‚Ì•À‚ÑC‚ ‚é‚¢‚Í‚»‚ê‚ç‚ð‚³ +‚ç‚É ‚ÅŠ‡‚Á‚½s•À‚Ñ‚É•ÏŠ·‚Å‚«‚Ü‚·B + `[prefix] }' + + ... Œ»Ý‚̃ŠƒWƒ‡ƒ“‚É‚ ‚éƒf[ƒ^‚ð‹ó”’‹æ؂育‚Æ‚É + ... ‚ÅŠ‡‚é + `[prefix] ]' + + ... Œ»Ý‚̃ŠƒWƒ‡ƒ“‚É‚ ‚és‚ðã‹LtdŠ‡‚è‚ð‚Ù‚Ç‚±‚µ‚Ä‚©‚炳‚ç‚És‚²‚Æ +‚É ... ‚ÅŠ‡‚éƒfƒtƒHƒ‹ƒg‚Å‚Í‹ó”’‹æØ‚è‚Å‚·‚ªC‚±‚ê‚ð•Ï‚¦‚é‚Æ‚«‚Í +Delimiter: ‚Ì–â‚¢‡‚킹‚É‹æ؂蕶Žš‚ðŽw’肵‚Ü‚·B‚½‚Æ‚¦‚΃Jƒ“ƒ}(,) ‚ðŽw’è +‚·‚é‚ÆCSV‚©‚ç•\‚ðì‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +tdˆÈŠO‚Ì—v‘fC‹ï‘Ì“I‚É‚Í th ‚ÅŠ‡‚肽‚¢ê‡‚Í universal-argument (`C-u') ‚ð +‚‚¯‚Äã‹L2‚‚̃Rƒ}ƒ“ƒh‚ðŒÄ‚Ñ‚Ü‚·B‚Ç‚Ì—v‘f‚ÅŠ‡‚é‚©‚ÌŽ¿–₪‘‚¦‚é‚Ì‚Å‚»‚ê +‚É th ‚Æ“ü‚ê‚ê‚ÎCŠeƒtƒB[ƒ‹ƒh‚ð ... ‚ÅŠ‡‚è‚Ü‚·B‚à‚µC‘æ1ƒtƒB[ +ƒ‹ƒh‚Ì‚Ý th ‚ÅCŽc‚è‚ð‘S•” td Š‡‚è‚É‚µ‚½‚¢‚Æ‚«‚Í thd ‚Æ“ü—Í‚µ‚ĉº‚³‚¢B + + + +File: yahtmlj, Node: CSS Support, Next: Customizations, Prev: Changing and Deleting, Up: Top + +CSS(ƒXƒ^ƒCƒ‹ƒV[ƒg)ƒTƒ|[ƒg +*************************** + +* Menu: + +* CSS-class completion:: +* Reread CSS file:: + + + +File: yahtmlj, Node: CSS-class completion, Next: Reread CSS file, Prev: CSS Support, Up: CSS Support + +CSSƒNƒ‰ƒX–¼•âŠ® +=============== +HTML‰®‚ÍCSS(Cascading Style Sheets)‚̃Nƒ‰ƒX–¼‚ð•âŠ®“ü—Í‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B +ƒXƒ^ƒCƒ‹’è‹`‚Æ‚µ‚Ä + + h1.foo, h2.foo { background-color: 0xffffff; } + h1.bar, h2.bar { font-size: 120%; } + +‚̂悤‚È‚à‚Ì‚ª‚ ‚Á‚½ê‡‚ÉAh1‚Ü‚½‚Íh2ƒ^ƒO‚ð [prefix] b ‚â [prefix] l ‚Å•â +Š®“ü—Í‚µ‚½ê‡‚ÉA‚»‚ê‚ç‚É—LŒø‚È class –¼‚Å‚ ‚é foo, bar ‚ðŒó•â‚Æ‚µ‚ĕ⊮ +“ü—Í‚·‚邱‚Æ‚ª‰Â”\‚Å‚·B‚Ü‚½ + + .caution { font-size: 120%; background-color: 0xc00000;} + +‚̂悤‚È‘S‚ẴGƒŒƒƒ“ƒg‚É“­‚­class‚ª’è‹`‚³‚ê‚Ä‚¢‚½ê‡‚ÍA‘S‚Ẵ^ƒO‚Ì•â +Š®“ü—ÍŽž‚ÉclassŽQÆ“ü—Í‚ð‹‚ß‚ç‚ê‚Ü‚·B‚±‚ꂪ”ς킵‚¢ê‡‚̓GƒŒƒƒ“ƒg–¼“ü +—ÍŠm’è‚Ì‚Æ‚«‚ɃŠƒ^[ƒ“ƒL[(‚Ü‚½‚ÍC-m)‚Å‚Í‚È‚­AC-j‚ð‰Ÿ‚¹‚Îclass•âŠ®“ü—Í‚ð +ƒLƒƒƒ“ƒZƒ‹‚Å‚«‚Ü‚·B‚½‚Æ‚¦‚Î + + [prefix] l s“àƒ^ƒO•âŠ®‚ð‹N“® + (‚Ü‚½‚Í[prefix] l SPC) + tt ‚ð‚¢‚ê‚½‚¢‚Ì‚Ått‚Æ“ü—Í + C-m + +‚Æ‚µ‚½ê‡‚Í‘±‚¢‚Ä class= ‚ƕ⊮ƒvƒƒ“ƒvƒg‚ªo‚Ü‚·‚ªA + + [prefix] l s“àƒ^ƒO•âŠ®‚ð‹N“® + (‚Ü‚½‚Í[prefix] l SPC) + tt ‚ð‚¢‚ê‚½‚¢‚Ì‚Ått‚Æ“ü—Í + C-j + +‚ÆÅŒã‚ð `C-j' ‚Å“ü—Í‚µ‚½ê‡‚Í class •âŠ®ƒvƒƒ“ƒvƒg‚Ío‚Ü‚¹‚ñB + + + +File: yahtmlj, Node: Reread CSS file, Prev: CSS-class completion, Up: CSS Support + +CSS’è‹`ƒtƒ@ƒCƒ‹‚Ì“Ç‚Ý’¼‚µ +========================= +htmlƒtƒ@ƒCƒ‹‚ð•ÒW’†‚ÉCSS’è‹`ƒtƒ@ƒCƒ‹‚ðC³‚µA’ljÁ‚µ‚½class‚ð•âŠ®Œó•â‚Æ‚µ +‚Ä’¼‚¿‚É“Ç‚Ýž‚Ü‚¹‚½‚¢ê‡‚ÍA`M-x yahtml-mode' ‚Æ‚µ‚ÄÄ‹N“®‚ðs‚Á‚Ä‚­‚¾‚³ +‚¢B + + + +File: yahtmlj, Node: Customizations, Next: Copying, Prev: CSS Support, Up: Top + +ƒJƒXƒ^ƒ}ƒCƒY +************ + +yahtml‚Ì“®ì‚ð§Œä‚·‚é•Ï”‚ɂ‚¢‚Äà–¾‚µ‚Ü‚·B + +* Menu: + +* All customizable variables:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— +* Hook variables:: hook•Ï” + + + +File: yahtmlj, Node: All customizable variables, Next: Hook variables, Prev: Customizations, Up: Customizations + +ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— +==================== + + -- Variable: yahtml-prefix + yahtml-mode ’†‚̃vƒŠƒtƒBƒNƒXƒL[ (`\C-c') + + -- Variable: yahtml-image-viewer + img‚ÅŽQÆ‚µ‚Ä‚¢‚é‰æ‘œƒtƒ@ƒCƒ‹‚ð•\Ž¦‚·‚é‚Æ‚«‚É‹N“®‚·‚éƒRƒ}ƒ“ƒh (xv) + + -- Variable: yahtml-www-browser + `[prefix]g' ‚ÅŠO•”ƒy[ƒW‚ð•\Ž¦‚·‚é‚Æ‚«‚É‹N“®‚·‚éƒuƒ‰ƒEƒU (netscape) + + -- Variable: yahtml-kanji-code + ƒfƒtƒHƒ‹ƒg‚ÌŠ¿ŽšƒR[ƒhB1=sjis, 2=jis, 3=euc, 4=utf-8 (2) + .htaccess ƒtƒ@ƒCƒ‹‚É + AddType "text/html; charset=xxx" .html ‚Ì‹Lq‚ª‚ ‚Á‚½ê‡‚Í‚»‚ê + ‚É]‚¤ + + -- Variable: yahtml-fill-column + auto-fill‚·‚é‚Æ‚«‚̃Jƒ‰ƒ€” (72) + + -- Variable: yahtml-fill-prefix + yahtml-mode ŒÅ—L‚Ìfill-prefix (`nil') + + -- Variable: yahtml-path-url-alist + OS‚̃tƒ@ƒCƒ‹ƒVƒXƒeƒ€ã‚ł̃tƒ‹ƒpƒX–¼‚ÆA‚»‚ÌŠO•”ŒöŠJŽž‚ÌURL‚̑Ήž•\B + + -- Variable: yahtml-directory-index + ƒT[ƒoƒAƒNƒZƒXŽžƒtƒ@ƒCƒ‹–¼‚ðÈ—ª‚µ‚½‚Æ‚«‚ɃfƒtƒHƒ‹ƒg‚ÅŠJ‚©‚ê‚éƒCƒ“ƒfƒb + ƒNƒXƒtƒ@ƒCƒ‹‚Ì–¼‘OB‘½‚­‚Ìê‡ index.htmlB(`"index.html"') + + -- Variable: yahtml-lint-program + HTML\•¶ƒ`ƒFƒbƒNƒvƒƒOƒ‰ƒ€B(`"jweblint"') + + -- Variable: yahtml-hate-too-deep-indentation + ƒlƒXƒg‚µ‚½—ñ‹“ŒnŠÂ‹«‚ł̃Cƒ“ƒfƒ“ƒg‚ª[‚·‚¬‚é‚Æ‚«‚Ét‚É‚·‚éB(`nil') + + -- Variable: yahtml-always-/p + `

' ‚ð‚¢‚ê‚½‚ç•K‚¸ `

' ‚µ‚½‚¢lŒü‚¯B`nil' + + -- Variable: yahtml-p-prefered-env-regexp + Ž©“®“I‚É `

' ‚ð“ü‚ê‚Ä—~‚µ‚¢ŠÂ‹«B + (`"^\\(body\\|dl\\|blockquote\\)"') + + -- Variable: yahtml-template-file + V‹KHTMLƒtƒ@ƒCƒ‹ì¬Žž‚ÉŽ©“®“I‚É‘}“ü‚µ‚Ä—~‚µ‚¢ƒtƒ@ƒCƒ‹–¼B + `"~/http/template.html"' + + -- Variable: yahtml-prefer-upcases + ƒ^ƒO‚ɑ啶Žš‚ðŽg‚¢‚½‚¢B`nil' + + -- Variable: yahtml-prefer-upcase-attributes + ‘®«Žw’èŽq‚ɑ啶Žš‚ðŽg‚¢‚½‚¢B`nil' + + -- Variable: yahtml-server-type + ApacheŒn‚̃T[ƒo‚ð—˜—p‚µ‚Ä‚¢‚éê‡‚Í 'apache ‚ðƒZƒbƒg‚·‚éB + ./.htaccess ‚ðŽQÆ‚·‚é‚©‚Ç‚¤‚©‚ðŒˆ’è‚·‚éB`'apache' + + -- Variable: yahtml-apache-access-file + `yahtml-server-type' ‚ª `'apache' ‚Ì‚Æ‚«‚ɃAƒNƒZƒX§ŒÀƒtƒ@ƒCƒ‹–¼‚ðŽw + ’èB`".htaccess"' + + -- Variable: yahtml-shell-command-option + ƒVƒFƒ‹‚ŕʃRƒ}ƒ“ƒh‚ð‹N“®‚·‚é‚Æ‚«‚̃IƒvƒVƒ‡ƒ“B + + -- Variable: yahtml-translate-hyphens-when-comment-region + —̈æƒRƒƒ“ƒgƒAƒEƒg‚ð‚·‚é‚Æ‚«‚ÉŠù‚É‘¶Ý‚·‚éƒnƒCƒtƒ“‚ð `-' ‚É•ÏX‚· + ‚é‚©‚Ç‚¤‚©B(`t') + + -- Variable: yahtml-entity-reference-chars-alist + ƒGƒ“ƒeƒBƒeƒBŽQÆ(Entity Reference)‚Å‹Lq‚·‚ׂ«•¶ŽšŒQ‚ð`'(?•¶Žš . "ƒG + ƒ“ƒeƒBƒeƒB•\‹L")' ‚Æ‚¢‚¤Œ`Ž®‚ð—ñ‹“‚µ‚½alist‚Å•À‚ׂéBƒfƒtƒHƒ‹ƒg‚Å + `<', `>', `&', `'', `"' ‚ɑ΂·‚éalist‚ªÝ’肳‚ê‚Ä‚¢‚é‚Ì‚ÅA’ljÁ‚µ‚½‚¢ + •ª‚¾‚¯‚ð‹Lq‚·‚ê‚Ηǂ¢Bcdr•” `"ƒGƒ“ƒeƒBƒeƒB•\‹L"' ‚ÍA擪‚Ì `&' ‚Æ + ––”ö‚Ì`;' ‚ÍŠÜ‚ß‚¸‚É‘‚­B + + -- Variable: yahtml-faithful-to-htmllint + \•¶ƒ`ƒFƒbƒJ‚Æ‚µ‚Ä htmllint ‚ð—˜—p‚·‚éꇂ¿‚å‚Á‚Æ‚µ‚½—]Œv‚È‹ó”’‚È‚Ç + ‚ɑ΂µ‚Ä‚àŒx‚ðŽ¦‚·‚Ì‚ÅA‚±‚ê‚ð‰ñ”ð‚·‚é‚Æ‚«‚É‚Í‚±‚Ì•Ï”‚ð`t'‚É‚·‚éB + + -- Variable: yahtml-use-css + CSS‚̕⊮‹@”\‚ðŽg‚¤‚©‚Ç‚¤‚© (`t') + + -- Variable: yahtml-image-inspection-bytes + ‰æ‘œƒtƒ@ƒCƒ‹‚̃TƒCƒY‚𒲂ׂé‚Æ‚«‚É“Ç‚Ýž‚ÞƒoƒCƒg” (`10000') + + -- Variable: yahtml:img-default-alt-format + ‚ÌALT‘®«‚̃fƒtƒHƒ‹ƒg•¶Žš—ñ‚Ì‘Ž®B%x‚͉摜‚Ì•A%y‚͉摜 + ‚Ì‚‚³A%s‚̓tƒ@ƒCƒ‹ƒTƒCƒY‚É’uŠ·‚³‚ê‚é (`"%xx%y(%sbytes)"') + + -- Variable: yahtml-escape-chars + href•âŠ®‚È‚Ç‚Ì‚Æ‚«‚É—\–ñ•¶Žš‚ðURLƒGƒ“ƒR[ƒh‚·‚é‚©; 'ask‚Ì‚Æ‚«‚ÍŠm”F‚µ + ‚Ä‚©‚ç’uŠ·‚·‚é (`'ask') + + -- Variable: yahtml-use-font-lock + ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä font-lock ‚ð—˜—p‚·‚é‚©(`(featurep + 'font-lock)') + + -- Variable: yahtml-use-hilit19 + ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä hilit19 ‚ð—˜—p‚·‚é‚©(`(featurep + 'hilit19)') + + -- Variable: yahtml-indentation-boundary + ƒCƒ“ƒfƒ“ƒgŒvŽZ‚ð‘Å‚¿Ø‚Á‚Ä‚æ‚¢‹«ŠE‚ƂȂ鳋K•\Œ»(`"^\\s *"') + + + +File: yahtmlj, Node: Hook variables, Prev: All customizable variables, Up: Customizations + +hook•Ï” +======== + + + + +File: yahtmlj, Node: Copying, Next: Concept Index, Prev: Customizations, Up: Top + +Žæ‚舵‚¢ +******** + + –{ƒvƒƒOƒ‰ƒ€‚̓tƒŠ[ƒ\ƒtƒgƒEƒFƒA‚Å‚·B–{ƒvƒƒOƒ‰ƒ€‚ðŽg—p‚µ‚Ķ‚¶‚½‚¢‚©‚È +‚錋‰Ê‚ɑ΂µ‚Ä‚àìŽÒ‚ÍÓ”C‚𕉂í‚È‚¢‚±‚Æ‚Æ‚µ‚Ü‚·B“]Ú“™‚ÉŠÖ‚µ‚ĂͧŒÀ‚¢‚½ +‚µ‚Ü‚¹‚ñB펯“I‚Ɉµ‚Á‚Ä‚­‚¾‚³‚¢B‚Ü‚½AŽg—p‚µ‚Ä‚¢‚éŽ|‚ðƒƒCƒ‹‚Å‚¨’m‚点‚¢ +‚½‚¾‚­‚ÆAìŽÒ‚ÍŠì‚ñ‚ŃTƒ|[ƒg‚É—ã‚Þ‚±‚Æ‚Å‚µ‚傤B + + ‹êîAŠó–]AƒoƒO•ñAŠ´‘z“™‚ÍŠ½Œ}‚¢‚½‚µ‚Ü‚·B˜A—‚Í yuuji@yatex.org ‚Ü +‚Å(2000”N12ŒŽŒ»Ý)BŒp‘±“I‚ÉŽg—p‚µ‚Ä‚­‚¾‚³‚é•û‚̓ƒCƒŠƒ“ƒOƒŠƒXƒgufj–ì’¹‚Ì +‰ïv‚É¥”ñ‰Á“ü‚µ‚Ä‚­‚¾‚³‚¢B‰Á“ü•û–@‚ɂ‚¢‚Ä‚Í–{ƒpƒbƒP[ƒW‚Ì `docs/htmlqa' +ƒtƒ@ƒCƒ‹‚Ìu‚»‚Ì‘¼v‚ÌÍ‚ðŒä——‚­‚¾‚³‚¢B + +Žd—l‚ÍA—\‚È‚­ŠmŽÀ‚É(‹C•ªŽŸ‘æ‚Å)•ÏX‚³‚ê‚Ü‚·:-pB + + L£—Y“ñ + + + + +File: yahtmlj, Node: Concept Index, Prev: Copying, Up: Top + +õˆø +**** + +* Menu: + +* ƒJƒXƒ^ƒ}ƒCƒY[‚©‚·‚½‚Ü‚¢‚·]: Customizations. 4. +* ƒL[ƒAƒTƒCƒ“[‚«‚¢‚ ‚³‚¢‚ñ]: Customizations. 4. +* Demacs: Intro. 4. +* HTML‰®[HTML‚â]: Intro. 4. +* LaTeX: Intro. 4. +* Mule: Intro. 4. + + + + +Tag table: +Node: Top151 +Node: Intro620 +Node: Installation899 +Node: yahtml‹N“®‚Ì‚½‚ß‚ÌÝ’è1087 +Node: lintƒvƒƒOƒ‰ƒ€/ƒuƒ‰ƒEƒU/ƒCƒ[ƒWƒ”ƒ…[ƒAŠÂ‹«“™‚ÌÝ’è1741 +Node: WWWƒy[ƒWŠÂ‹«—p•Ï”‚ÌÝ’è2241 +Node: Command Invocation3012 +Node: Completion3339 +Node: Jump4323 +Node: Changing and Deleting4722 +Node: ‘΃^ƒO‚Ì•ÏX4896 +Node: •¶ŽšŽQÆ‚Ö‚Ì•ÏX5246 +Node: ƒŠƒWƒ‡ƒ““à•¶Žš‚ÌURLencode5629 +Node: tdŠ‡‚è/trŠ‡‚è5863 +Node: CSS Support6492 +Node: CSS-class completion6690 +Node: Reread CSS file7674 +Node: Customizations7896 +Node: All customizable variables8120 +Node: Hook variables11118 +Node: Copying11230 +Node: Concept Index11733 + +End tag table diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yahtmlj.tex --- a/docs/yahtmlj.tex Thu May 10 11:10:13 2012 +0900 +++ b/docs/yahtmlj.tex Thu May 10 11:40:02 2012 +0900 @@ -5,7 +5,7 @@ @iftex @c @syncodeindex fn cp -@c Last modified Wed Feb 29 09:18:14 2012 on firestorm +@c Last modified Thu May 10 11:13:11 2012 on firestorm @syncodeindex vr cp @end iftex @@ -15,7 +15,7 @@ @subtitle Yet Another html-mode for emacs @title wHTML‰®x @subtitle // yahtml // -@author @copyright{} 1994-1997 by HIROSE, Yuuji [yuuji@@yatex.org] +@author @copyright{} 1994-2012 by HIROSE, Yuuji [yuuji@@yatex.org] @end titlepage @node Top, Intro, (dir), (dir) diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yatexe --- a/docs/yatexe Thu May 10 11:10:13 2012 +0900 +++ b/docs/yatexe Thu May 10 11:40:02 2012 +0900 @@ -1,2219 +1,2242 @@ -Info file: yatexe, -*-Text-*- -produced by `texinfo-format-buffer' -from file `yatexe.tex' -using `texinfmt.el' version 2.38 of 3 July 1998. - - - - - - -File: yatexe, Node: Top, Next: What is YaTeX?, Prev: (dir), Up: (dir) - -* Menu: - -* What is YaTeX?:: -* Main features:: What YaTeX can do -* Installation:: Guide to install -* Typesetting:: Call typesetting processes -* %#notation:: Meta-keyword `%#' -* Completion:: Input LaTeX commands with completion -* Local dictionaries:: Directory dependent completion -* Commenting out:: Commenting/uncommenting text -* Cursor jump:: Jumping to related position -* Changing and Deleting:: Changing/deleting certain unit of text -* Filling:: Filling an item or paragraph -* Updation of includeonly:: Free from maintaining includeonly -* What column:: Check what table-column the cursor belong -* Intelligent newline:: Guess requisites of new line -* Usepackage checker:: Selecting correct \usepackage is YaTeX's job -* Online help:: On-line documentation of LaTeX -* Browsing file hierarchy:: Walking through file hierarchy -* Cooperation with other packages:: Work well with gmhist, min-out -* Customizations:: How to breed `Wild Bird' -* Etcetera:: YaTeX is acquisitive. -* Copying:: Redistribution - - - - -File: yatexe, Node: What is YaTeX?, Next: Main features, Prev: Top, Up: Top - -What is YaTeX? -************** - - YaTeX automates typesetting and previewing of LaTeX and enables -completing input of LaTeX mark-up command such as -`\begin{}'..`\end{}'. - - YaTeX also supports Demacs which runs on MS-DOS(386), Mule (Multi -Language Enhancement to GNU Emacs), and latex on DOS. - - - -File: yatexe, Node: Main features, Next: Installation, Prev: What is YaTeX?, Up: Top - -Main features -************* - - * Invocation of typesetter, previewer and related programs(`C-c t') - * Typesetting on static region which is independent from point - * Semiautomatic replacing of `\includeonly' - * Jumping to error line(`C-c '') - * Completing-read of LaTeX commands such as `\begin{}', - `\section' etc. - (`C-c b', `C-c s', `C-c l', `C-c m') - * Enclosing text into LaTeX environments or commands - (`C-u' ABOVEKEYSTROKES) - * Displaying the structure of text at entering sectioning commands - * Lump shifting of sectioning commands (*Note view-sectioning::) - * Learning unknown/new LaTeX commands for the next completion - * Argument reading with a guide for complicated LaTeX commands - * Generating argument-readers for new/unsupported commands(`yatexgen') - * Quick changing or deleting of LaTeX commands(`C-c c', `C-c k') - * Jumping from and to inter-file, begin<->end, ref<->label(`C-c g') - * Blanket commenting out or uncommenting - (`C-c >', `C-c <', `C-c ,', `C-c .') - * Easy input of accent mark, math-mode's commands and Greek letters - (`C-c a', `;', `:') - * Online help for the popular LaTeX commands - (`C-c ?', `C-c /') - * Document files hierarchy browser (`C-c d') - * Adding automatically \usepackage corresponding to inputting LaTeX - macro with completion - * Allow you to forget creating \label{}s, \ref or \cite completion - automatically generate labels. - - - -File: yatexe, Node: Installation, Next: Typesetting, Prev: Main features, Up: Top - -Installation -************ - - Put next two expressions into your `~/.emacs'. - - (setq auto-mode-alist - (cons (cons "\\.tex$" 'yatex-mode) auto-mode-alist)) - (autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) - -Next, add certain path name where you put files of YaTeX to your -load-path. If you want to put them in `~/src/emacs', write - - (setq load-path - (cons (expand-file-name "~/src/emacs") load-path)) - -in your `~/.emacs' - - Then, yatex-mode will be automatically loaded when you visit a -file which has extension `.tex'. If yatex-mode is successfully -loaded, mode string on mode line will be turned to "YaTeX". - - - - -File: yatexe, Node: Typesetting, Next: %#notation, Prev: Installation, Up: Top - -Typesetting -*********** - - The prefix key stroke of yatex-mode is `C-c' (Press 'C' with Control -key) by default. If you don't intend to change the prefix key stroke, -assume all `[prefix]' as `C-c' in this document. These key -strokes execute typeset or preview command. - -`[prefix] t j' - ... invoke latex -`[prefix] t r' - ... invoke latex on region -`[prefix] t e' - ... invoke latex on current environment or whole - portion of current formulas in math-mode. -`[prefix] t k' - ... kill current typesetting process -`[prefix] t b' - ... invoke bibtex -`[prefix] t i' - ... invoke makeindex -`[prefix] t d' - ... invoke latex && dvipdfmx -`[prefix] t p' - ... preview -`[prefix] t l' - ... lpr dvi-file -`[prefix] t s' - ... search current string on xdvi-remote - -* Menu: - -* Calling typesetter:: -* Calling previewer:: -* Printing out:: - - - -File: yatexe, Node: Calling typesetter, Next: Calling previewer, Prev: Typesetting, Up: Typesetting - -Calling typesetter -================== - - Typing `[prefix] t j', the current editing window will be divided -horizontally when you invoke latex command, and log message of LaTeX -typesetting will be displayed in the other window; called typesetting -buffer. The typesetting buffer automatically scrolls up and traces LaTeX -warnings and error messages. If you see latex stopping by an error, you -can send string to latex in the typesetting buffer. - - If an error stops the LaTeX typesetting, this key stroke will move the -cursor to the line where LaTeX error is detected. - -`[prefix] '' -`([prefix]+single quotation)' - - ... jump to the previous error or warning - - If you find a noticeable error, move to the typesetting buffer and move -the cursor on the line of error message and type `SPACE' key. This makes -the cursor move to corresponding source line. - - YaTeX-typeset-region invoked by `[prefix] tr' call typesetter for -region. The region is specified by standard point and mark, or by -`%#BEGIN' and `%#END' marks. Selected region will be copied to the -temporary file `texput.tex' with the same preamble as the main file of -current editing sources. Be sure to put all local macro settings in -preamble, not after `\begin{document}'. The method of specification of -the region is shown in the section *Note %#notation::. - - The documentclass for typeset-region is the same as that of editing file -if you edit one file, and is the same as main file's if you edit splitting -files. - - The `[prefix] te' key automatically marks current inner environment or -inner math mode and then call typeset-region with marked region. This is -convenient to quick view of current tabular environment or current editing -formulas. Keeping previewer window for `texput.dvi' is handy for -debugging. Since `[prefix] te' selects the inner-most environment as -region, it is not suitable for partial typesetting of doubly or more -composed environment. If you want to do partial typesetting for a nested -environment, use `[prefix] tr' for static-region, which is described in -the section *Note %#notation::. - - - -File: yatexe, Node: Calling previewer, Next: Printing out, Prev: Calling typesetter, Up: Typesetting - -Calling previewer -================= - - `[prefix] t p' invokes the TeX previewer. And if you are using -xdvi-remote, which can be controled from other terminals, `[prefix] t s' -enables you to search current string at the cursor on the running xdvi -window. - - - -File: yatexe, Node: Printing out, Prev: Calling previewer, Up: Typesetting - -Printing out -============ - - When you type `[preifx] t l', YaTeX asks you the range of dvi-printing -by default. You can skip this by invoking it with universal-argument as -follows: - - C-u [prefix] tl - - - -File: yatexe, Node: %#notation, Next: Completion, Prev: Typesetting, Up: Top - -%# notation -*********** - - You can control the typesetting process by describing `%#' notations in -the source text. - -* Menu: - -* Changing typesetter:: -* Splitting input files:: -* Static region for typesetting:: -* Lpr format:: -* Editing %# notation:: - - - -File: yatexe, Node: Changing typesetter, Next: Splitting input files, Prev: %#notation, Up: %#notation - -To change the `latex' command or to split a source text. -======================================================== - - To change the typesetting command, write - - %#!latex-big - -anywhere in the source text. This is useful for changing typesetter. - - - -File: yatexe, Node: Splitting input files, Next: Static region for typesetting, Prev: Changing typesetter, Up: %#notation - -Splitting input files -===================== - - And if you split the source text and edit subfile that should be -included from main text. - - %#!latex main.tex - -will be helpful to execute latex on main file from sub text buffer. Since -this command line after `%#!' will be sent to shell literally, next -description makes it convenient to use ghostview as dvi-previewer. - - %#!latex main ; dvi2ps main.dvi > main - -Note that YaTeX assumes the component before the last period of the last -word in this line as base name of the main LaTeX source. The `%f' -notation in this line is replaced by main file name, and `%r' replaced by -root name of main file name. If you specify `%f' or `%r', YaTeX always -ask you the name of main file at the first typesetting. - - To make best use of the feature of inter-file jumping by `[prefix] g' -(see *Note Cursor jump::), take described below into consideration. - - * You can put split texts in sub directory, but not in sub directory of - sub directory. - * In the main text, specify the child file name with relative path name - such as \include{chap1/sub}, when you include the file in a - sub-directory. - * In a sub-text, write `%#!latex main.tex' even if `main.tex' is in the - parent directory(not %#!latex ../main.tex). - - - -File: yatexe, Node: Static region for typesetting, Next: Lpr format, Prev: Splitting input files, Up: %#notation - -Static region -============= - - Typeset-region by `[prefix] tr' passes the region between point and mark -to typesetting command by default. But when you want to typeset static -region, enclose the region by `%#BEGIN' and `%#END' as follows. - - %#BEGIN - TheRegionYouWantToTypesetManyTimes - %#END - -This is the rule of deciding the region. - - 1. If there exists %#BEGIN before point, - - 1. If there exists %#END after %#BEGIN, - * From %#BEGIN to %#END. - - 2. If %#END does not exist after %#BEGIN, - * From %#BEGIN to the end of buffer. - - 2. If there does not exist %#BEGIN before point, - * Between point and mark(standard method of Emacs). - - It is useful to write `%#BEGIN' in the previous line of \begin and -`%#END' in the next line of \`end' when you try complex environment such -as `tabular' many times. It is also useful to put only `%#BEGIN' alone at -the middle of very long text. Do not forget to erase `%#BEGIN' `%#END' -pair. - - - -File: yatexe, Node: Lpr format, Next: Editing %# notation, Prev: Static region for typesetting, Up: %#notation - -Lpr format -========== - - Lpr format is specified by three Lisp variables. Here are the default -values of them. - -`(1)dviprint-command-format' - `"dvi2ps %f %t %s | lpr"' -`(2)dviprint-from-format' - `"-f %b"' -`(3)dviprint-to-format' - `"-t %e"' - - On YaTeX-lpr, `%s' in (1) is replaced by the file name of main text, -`%f' by contents of (2), %t by contents of (3). At these replacements, -`%b' in (2) is also replaced by the number of beginning page, `%e' in (3) -is replaced by the number of ending page. But `%f' and `%t' are ignored -when you omit the range of print-out by `C-u [prefix] tl'. - - If you want to change this lpr format temporarily, put a command such as -follows somewhere in the text: - - %#LPR dvi2ps %f %t %s | 4up -page 4 | texfix | lpr -Plp2 - - And if you want YaTeX not to ask you the range of printing out, the next -example may be helpful. - - %#LPR dvi2ps %s | lpr - - - -File: yatexe, Node: Editing %# notation, Prev: Lpr format, Up: %#notation - -Editing %# notation -=================== - - To edit `%#' notation described above, type - -`[prefix] %' - ... editing %# notation menu - -and select one of the entry of the menu as follows. - - !)Edit-%#! B)EGIN-END-region L)Edit-%#LPR - -Type `!' to edit `%#!' entry, `b' to enclose the region with `%#BEGIN' and -`%#END', and `l' to edit `%#LPR' entry. When you type `b', all `%#BEGIN' -and `%#END' are automatically erased. - - - -File: yatexe, Node: Completion, Next: Local dictionaries, Prev: %#notation, Up: Top - -Completion -********** - - YaTeX makes it easy to input the LaTeX commands. There are several -kinds of completion type, begin-type, section-type, large-type, etc... - -* Menu: - -* Begin-type completion:: -* Section-type completion:: -* Large-type completion:: -* Maketitle-type completion:: -* Arbitrary completion:: -* End completion:: -* Accent completion:: -* Image completion:: -* Greek letters completion:: - - - -File: yatexe, Node: Begin-type completion, Next: Section-type completion, Prev: Completion, Up: Completion - -Begin-type completion -===================== - - "Begin-type completion" completes commands of `\begin{env}' ... -`\end{env}'. All of the begin-type completions begin with this key -sequence. - -`[prefix] b' - ... start begin-type completion - -An additional key stroke immediately completes a frequently used LaTeX -`\begin{}'...`\`end'{}' environment. - -`[prefix] b c' - ... `\begin{center}...\end{center}' -`[prefix] b d' - ... `\begin{document}...\end{document}' -`[prefix] b D' - ... `\begin{description}...\end{description}' -`[prefix] b e' - ... `\begin{enumerate}...\end{enumerate}' -`[prefix] b E' - ... `\begin{equation}...\end{equation}' -`[prefix] b i' - ... `\begin{itemize}...\end{itemize}' -`[prefix] b l' - ... `\begin{flushleft}...\end{flushleft}' -`[prefix] b m' - ... `\begin{minipage}...\end{minipage}' -`[prefix] b t' - ... `\begin{tabbing}...\end{tabbing}' -`[prefix] b T' - ... `\begin{tabular}...\end{tabular}' -`[prefix] b^T' - ... `\begin{table}...\end{table}' -`[prefix] b p' - ... `\begin{picture}...\end{picture}' -`[prefix] b q' - ... `\begin{quote}...\end{quote}' -`[prefix] b Q' - ... `\begin{quotation}...\end{quotation}' -`[prefix] b r' - ... `\begin{flushright}...\end{flushright}' -`[prefix] b v' - ... `\begin{verbatim}...\end{verbatim}' -`[prefix] b V' - ... `\begin{verse}...\end{verse}' - - Any other LaTeX environments are made by completing-read of the Emacs -function. - -`[prefix] b SPACE' - ... begin-type completion - -The next message will show up in the minibuffer - - Begin environment(default document): - -by typing `[prefix] b'. Put the wishing environment with completion in -the minibuffer, and `\begin{env}'...\`\end{env}' will be inserted in the -LaTeX source text. If the environment you want to put does not exist in -the YaTeX completion table, it will be registered in the user completion -table. YaTeX automatically saves the user completion table in the user -dictionary file at exiting of emacs. - -At the completion of certain environments, the expected initial entry will -automatically inserted such as `\item' for `itemize' environment. If you -don't want the entry, it can be removed by undoing. - - If you want to enclose some paragraphs which have already been written, -invoke the begin-type completion with changing the case of `b' of key -sequence upper(or invoke it with universal argument by `C-u' prefix). - - The following example encloses a region with `description' environment. - -`[prefix] B D' -`(or ESC 1 [prefix] b D)' -`(or C-u [prefix] b D)' - - ... begin-type completion for region - - This enclosing holds good for the completing input by `[prefix] b SPC'. -`[prefix] B SPC' enclose a region with the environment selected by -completing-read. - - - -File: yatexe, Node: Section-type completion, Next: Large-type completion, Prev: Begin-type completion, Up: Completion - -Section-type completion -======================= - - "Section-type completion" completes section-type commands which take an -argument or more such as `\section{foo}'. To invoke section-type -completion, type - -`[prefix] s' - ... section-type completion - -then the prompt - - (C-v for view) \???{} (default documentclass): - -will show up in the minibuffer. Section-type LaTeX commands are completed -by space key, and the default value is selected when you type nothing in -the minibuffer. - - Next, - - \section{???}: - -prompts you the argument of section-type LaTeX command. For example, the -following inputs - - \???{} (default documentclass): section - \section{???}: Hello world. - -will insert the string - - \section{Hello world.} - -in your LaTeX source. When you neglect argument such as - - (C-v for view) \???{} (default section): vspace* - \vspace*{???}: - -YaTeX puts - - \vspace*{} - -and move the cursor in the braces. - - In LaTeX command, there are commands which take more than one arguments -such as `\addtolength{\topmargin}{8mm}'. To complete these commands, -invoke section-type completion with universal argument as, - - C-u 2 [prefix] s (or ESC 2 [prefix] s) - -and make answers in minibuffer like this. - - (C-v for view) \???{} (default vspace*): addtolength - \addtolength{???}: \topmargin - Argument 2: 8mm - -`\addtolength' and the first argument `\topmargin' can be typed easily by -completing read. Since YaTeX also learns the number of arguments of -section-type command and will ask that many arguments in future -completion, you had better tell the number of arguments to YaTeX at the -first completion of the new word. But you can change the number of -arguments by calling the completion with different universal argument -again. - - - Invoking section-type completion with `[Prefix] S' (Capital `S') -includes the region as the first argument of section-type command. - - The section/large/maketitle type completion can work at the prompt for -the argument of other section-type completion. Nested LaTeX commands are -efficiently read with the recursive completion by typing YaTeX's -completion key sequence in the minibuffer. - -* Menu: - -* view-sectioning:: - - - -File: yatexe, Node: view-sectioning, Prev: Section-type completion, Up: Section-type completion - -view-sectioning ---------------- - - In the minibuffer at the prompt of section-type command completion, -typing `C-v' shows a list of sectioning commands in source text(The line -with `<<--' mark is the nearest sectioning command). Then, default -sectioning command appears in the minibuffer. You can go up/down -sectioning command by typing `C-p'/`C-n', can scrolls up/down the listing -buffer by `C-v'/`M-v', and can hide sectioning commands under certain -level by 0 through 6. Type `?' in the minibuffer of sectioning prompt -for more information. - - You can generate this listing buffer (`*Sectioning Lines*' buffer) by -typing -`M-x YaTeX-section-overview' - ... Generate *Sectioning Lines* buffer - -from the LaTeX source buffer. In this listing buffer, typing `u' on the -sectioning command shifts up the corresponding sectioning command in -source text and `d' shifts down. After marking lines in the listing -buffer, typing `U' shifts up all sectioning commands in the region, and -`U' shifts down. Here are all the key bindings of `*Sectioning Lines*' -buffer. - -`SPC' - ... Jump to corresponding source line -`.' - ... Display corresponding source line -`u' - ... Shift up a sectioning line -`d' - ... Shift down a sectioning line -`U' - ... Shift up sectioning lines in region -`D' - ... Shift down sectioning lines in region -`0...6' - ... Hide sectioning commands whose level is lower than n - - - - -File: yatexe, Node: Large-type completion, Next: Maketitle-type completion, Prev: Section-type completion, Up: Completion - -Large-type completion -===================== - - "Large-type completion" inputs the font or size changing descriptions -such as `{\large }'. When you type - -`[prefix] l' - ... large-type completion - -the message in the minibuffer - - {\??? } (default large): - -prompts prompts you large-type command with completing-read. There are -TeX commands to change fonts or sizes, `it', `huge' and so on, in the -completion table. - - Region-based completion is also invoked by changing the letter after -prefix key stroke as `[prefix] L'. It encloses the region by braces with -large-type command. - - - -File: yatexe, Node: Maketitle-type completion, Next: Arbitrary completion, Prev: Large-type completion, Up: Completion - -Maketitle-type completion -========================= - - We call it "maketitle-type completion" which completes commands such as -`\maketitle'. Take notice that maketitle-type commands take no arguments. -Then, typing - -`[prefix] m' - ... maketitle-type completion - -begins maketitle-completion. Above mentioned method is true for -maketitle-completion, and there are LaTeX commands with no arguments in -completion table. - - - -File: yatexe, Node: Arbitrary completion, Next: End completion, Prev: Maketitle-type completion, Up: Completion - -Arbitrary completion -==================== - - You can complete certain LaTeX command anywhere without typical -completing method as described, by typing - -`[prefix] SPC' - ... arbitrary completion - -after the initial string of LaTeX command that is preceded by `\'. - - - -File: yatexe, Node: End completion, Next: Accent completion, Prev: Arbitrary completion, Up: Completion - -End completion -============== - - YaTeX automatically detects the opened environment and close it with -\`\end{environment}'. Though proficient YaTeX users never fail to make -environment with begin-type completion, some may begin an environment -manually. In that case, type - -`[prefix] e' - ... `end' completion - -at the end of the opened environment. - - - -File: yatexe, Node: Accent completion, Next: Image completion, Prev: End completion, Up: Completion - -Accent completion -================= - - When you want to write the European accent marks(like `\`{o}'), - -`[prefix] a' - ... accent completion - -shows the menu - - 1:` 2:' 3:^ 4:" 5:~ 6:= 7:. u v H t c d b - -in the minibuffer. Chose one character or corresponding numeric, and you -will see - - \`{} - -in the editing buffer with the cursor positioned in braces. Type one more -character `o' for example, then - - \`{o} - -will be completed, and the cursor gets out from braces. - - - -File: yatexe, Node: Image completion, Next: Greek letters completion, Prev: Accent completion, Up: Completion - -Image completion of mathematical sign -===================================== - - Arrow marks, sigma mark and those signs mainly used in the TeX's math -environment are completed by key sequences which imitate the corresponding -symbols graphically. This completion only works in the math environment. -YaTeX automatically detects whether the cursor located in math environment -or not, and change the behavior of key strokes `;' and `:'. - - By the way, we often express the leftarrow mark by `<-' for example. -Considering such image, you can write `\leftarrow' by typing `<-' after -`;' (semicolon) as a prefix. In the same way, `\longleftarrow' (`<--') is -completed by typing `;<--', infinity mark which is imitated by `oo' is -completed by typing `;oo'. - - Here are the sample operations in YaTeX math-mode. - - INPUT Completed LaTeX commands - ; < - `\leftarrow' - ; < - - `\longleftarrow' - ; < - - > `\longleftrightarrow' - ; o `\circ' - ; o o `\infty' - - In any case, you can quit from image completion and can move to the next -editing operation if the LaTeX command you want is shown in the buffer. - - `;' itself in math-environment is inserted by `;;'. Typing `TAB' in the -midst of image completion shows all of the LaTeX commands that start with -the same name as string you previously typed in. In this menu buffer, -press `RET' after moving the cursor (by `n', `p', `b', `f') to insert the -LaTeX command. - - To know all of the completion table, type `TAB' just after `;'. And -here is the sample menu by `TAB' after `;<'. - - KEY LaTeX sequence sign - < \leq < - ~ - << \ll << - <- \leftarrow <- - <= \Leftarrow <= - - You can define your favorite key-vs-sequence completion table in the -Emacs-Lisp variable `YaTeX-math-sign-alist-private'. See also -`yatexmth.el' for the information of the structure of this variable. - - - -File: yatexe, Node: Greek letters completion, Prev: Image completion, Up: Completion - -Greek letters completion -======================== - - Math-mode of YaTeX provides another image completion, Greek letters -completion in the same method. After prefix `:', typing `a' makes -`\alpha', `b' makes `\beta' and `g' makes `\gamma' and so on. First, type -`:TAB' to know all the correspondence of alphabets vs. Greek letters. - - If you will find `;' or `:' doesn't work in correct position of math -environment, it may be a bug of YaTeX. Please send me a bug report with -the configuration of your text, and avoid it temporarily by typing `;' or -`:' after universal-argument(`C-u') which forces `;' and `:' to work as -math-prefix. - - - -File: yatexe, Node: Local dictionaries, Next: Commenting out, Prev: Completion, Up: Top - -Local dictionaries -****************** - - Tables for completion consist of three dictionaries; `standard -dictionary' built in `yatex.el', `user dictionary' for your common private -commands, and `local dictionary' that is effective in a certain directory. - - When you input the command unknown to YaTeX at a completion in the -minibuffer, YaTeX asks you with the following prompt; - - `foo' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard - -In this menu, typing `u' updates your `user dictionary', `l' updates your -local dictionary, `n' updates only on-memory dictionary which go through -only current Emacs session, and `d' updates no dictionary and throws the -new word away. - - If you find this switching feature meaningless and bothersome, put the -next expression into your `~/.emacs' - - (setq YaTeX-nervous nil) - - - -File: yatexe, Node: Commenting out, Next: Cursor jump, Prev: Local dictionaries, Up: Top - -Commenting out -************** - - You may want to comment out some region. - -`[prefix] >' - ... comment out region by % -`[prefix] <' - ... uncomment region - -cause an operation to the region between point and mark. - -`[prefix] .' - ... comment out current paragraph -`[prefix] ,' - ... uncomment current paragraph - -comments or uncomments the paragraph where the cursor belongs. This -`paragraph' means the region marked by the function mark-paragraph, bound -to `ESC h' by default. It is NOT predictable what will happen when you -continuously comment out some paragraph many times. - - You can also comment out an environment between `\begin' and `\end', or -a `\begin'-\`\end' pair themselves, by making the following key strokes on -the line where `\begin{}' or `\end{}' exists. - -`[prefix] >' - ... comment out from \begin to \`end' -`[prefix] <' - ... uncomment from \begin to \`end' - -comment whole the contents of environment. Moreover, - -`[prefix] .' - ... comment out \begin and \`end' -`[prefix] ,' - ... uncomment \begin and \`end' - -(un)comments out only environment declaration: `\begin{}' and `\end{}'. -NOTE that even if you intend to comment out some region, invoking -`[prefix] >' on the `\begin',`\end' line decides to work in `commenting -out from `\begin' to `\end'' mode. - - - - -File: yatexe, Node: Cursor jump, Next: Changing and Deleting, Prev: Commenting out, Up: Top - -Cursor jump -*********** - - -* Menu: - -* Jump to corresponding object:: -* Invoking image processor:: -* Jump to main file:: -* Jumping around the environment:: -* Jumping to last completion position:: - - - -File: yatexe, Node: Jump to corresponding object, Next: Invoking image processor, Prev: Cursor jump, Up: Cursor jump - -Jump to corresponding object -============================ - - Typing - -`[prefix] g' - ... go to corresponding object - -in a certain place move the cursor to the place corresponding to the LaTeX -command of last place. YaTeX recognize the followings as pairs that have -relation each other. - - * `\begin{}' <-> `\end{}' - * `%#BEGIN' <-> `%#END' - * On the image-including line -> corresponding viewer or drawing tool - * `\label{}' <-> `\ref{}' - * `\include(\input)' -> included file - * `\bibitem{}' <-> `\cite{}' - - On a `\begin',`\end' line, typing `[prefix] g' moves the cursor to the -corresponding `\end',`\begin' line, if its partner really exists. The -behavior on the line `%#BEGIN' and `%#END' are the same. Note that if the -correspondent of `label/ref' or `cite/bibitem' exists in another file, -that file have to be opened to make a round trip between references by -`[prefix] g'. - - If you type `[prefix] g' on the line of `\include{chap1}', typically in -the main text, YaTeX switches buffer to `chap1.tex'. - -`[prefix] 4 g' - ... go to corresponding object in other window - -do the same job as `[prefix] g' except it's done in other window. Note -that this function doesn't work on `begin/end', `%#BEGIN/%#END' pairs -because it is meaningless. - - - -File: yatexe, Node: Invoking image processor, Next: Jump to main file, Prev: Jump to corresponding object, Up: Cursor jump - -Invoking image processor -======================== - - -`image-including line' described above means such lines as -`\epsfile{file=foo.ps}'. If you type `[prefix] g' on that line, YaTeX -automatically searches source of `foo.ps' and invokes image viewer or -drawing tool correspoinding to it. For example; if you draw an image -foo.obj with Tgif and enclose its product named foo.eps by `\epsfile' -command. Typing `[prefix] g' on `\epsfile' line make YaTeX invoke `tgif -foo.obj'. How a processor is choosen is as follows. - - 1. If there is an expression matching with one of the pattern defined in - `YaTeX-processed-file-regexp-alist', extract file name from regexp - group surrounded by \\(\\). (Which group corresponds is written in - the cdr part of each list.) If no matches were found, do nothing. - 2. If there is a pattern as `%PROCESSOR' which is defined in the - variable `YaTeX-file-processor-alist', call that processor giving the - file name with corresponding extension. - 3. If not, check the existence of each file which is supplied the - extension in the cdr part of each list of - `YaTeX-file-processor-alist'. If any, call the corresponding image - viewer or drawing tool. - - - -File: yatexe, Node: Jump to main file, Next: Jumping around the environment, Prev: Invoking image processor, Up: Cursor jump - -Jump to main file -================= - - Typing - -`[prefix] ^' - ... visit main file -`[prefix] 4^' - ... visit main file in other buffer - -in a sub text switch the buffer to the main text specified by `%#!' -notation. - - - -File: yatexe, Node: Jumping around the environment, Next: Jumping to last completion position, Prev: Jump to main file, Up: Cursor jump - -Jumping around the environment -============================== - - And these are the functions which work on the current LaTeX environment: - -`M-C-a' - ... beginning of environment -`M-C-e' - ... `end' of environment -`M-C-@' - ... mark environment - - - -File: yatexe, Node: Jumping to last completion position, Prev: Jumping around the environment, Up: Cursor jump - -Jumping to last completion position -=================================== - -YaTeX always memorize the position of completion into register `3'. So -every time you make a trip to any other part of text other than you are -writing, you can return to the editing paragraph by calling -register-to-point with argument YaTeX-current-position-register, which is -achieved by typing `C-x j 3'(by default). - - - -File: yatexe, Node: Changing and Deleting, Next: Filling, Prev: Cursor jump, Up: Top - -Changing and Deleting -********************* - - These functions are for change or deletion of LaTeX commands already -entered. - -`[prefix] c' - ... change LaTeX command -`[prefix] k' - ... kill LaTeX command - -* Menu: - -* Changing LaTeX commands:: -* Killing LaTeX commands:: - - - -File: yatexe, Node: Changing LaTeX commands, Next: Killing LaTeX commands, Prev: Changing and Deleting, Up: Changing and Deleting - -Changing LaTeX commands -======================= - -`[prefix] c' can change the various (La)TeX commands. This can change the -followings. - * Environment names - * Section-type commands - * Argument of section-type commands - * Optional parameters (enclosed by []) of section-type commands - * Font/size designators - * Math-mode's maketitle-type commands that can be inputted with image - completion - - Typing `[prefix] c' on one of above objects you want to change brings a -suitable reading function sometimes with completion. Note: If you want to -change the argument of section-type command that contains other LaTeX -commands, type `[prefix] c' either of surrounding braces of the argument -in order to make YaTeX ignore the internal LaTeX sequences as an object of -changing. Anyway, it is very difficult to know which argument position -the cursor belongs because the LaTeX commands can be nested and braces can -freely emerge. So keep it mind to put the cursor on a brace when you are -thinking of changing a complicated argument. - - - -File: yatexe, Node: Killing LaTeX commands, Prev: Changing LaTeX commands, Up: Changing and Deleting - -Killing LaTeX commands -====================== - - `[prefix] k' kills the LaTeX commands sometimes with their arguments. -Following table illustrates the correspondence of the invoking position -and what is killed. - - [Invoking position] [action] - \begin, \end line kill \begin,\end pairs - %#BEGIN, %#END line kill %#BEGIN,%#END pairs - on a Section-type command kill section-type command - on a parenthesis kill parentheses - -Note that when killing `\begin, \end' or `%#BEGIN, %#END' pair, the lines -`\begin, \end' or `%#BEGIN, %#END' exist will be killed entirely. So take -care not to create any line that contains more than one `\begin' or so. - -While all operations above are to kill `containers' which surround some -text, universal argument (`C-u') for these commands kills not only -`containers' but also `contents' of them. See below as a sample. - - Original text: [prefix] k C-u [prefix] k - Main \footnote{note} here. Main note here. Main here. - ~(cursor) - - - -File: yatexe, Node: Filling, Next: Updation of includeonly, Prev: Changing and Deleting, Up: Top - -Filling -******* - - -Filling an item -=============== - - To fill a term (descriptive sentences) of `\item', type - -`M-q' - ... fill item - -on that item. - - YaTeX uses the value of the variable `YaTeX-item-regexp' as the regular -expression to search item header in itemize environment. If you make a -newcommand to itemize terms(e.g. `\underlineitem'), put - - (setq YaTeX-item-regexp - "\\(\\\\\\(sub\\)*item\\)\\|\\(\\\\underlineitem\\)") - -in your `~/.emacs'. If you are not familiar with regular expression for -Emacs-Lisp, name a newcommand for `itemize' beginning with `\item' such as -`\itembf', not `\bfitem'. - - This function reformats the `\item' into `hang-indented' style. For -example: - - itemize, enumerate environment: - > - >\item[foo] `foo' is the typical word for describing an - > arbitrarily written.... - description environment: - > \item[bar] When the word `for' is used as an arbitrarily - > word, `bar' is bound to follow it. - - Note that the indent depth of an `\item' word and its descriptive -paragraph are the same in latter case. If you want to use different -depth, invoke fill-paragraph at the beginning of non-whitespace -character(see below). - - -Filling paragraph -================= - - Fill-paragraph is little bit adapted for LaTeX sources. It retains from -filling in certain environments where formatting leads to a disaster such -as verbatim, tabular, or so. And it protects `\verb' expressions from -being folded (The variable `YaTeX-verb-regexp' controls this). Besides, -putting cursor on the first occurrence of non-whitespace character on a -line changes the fill-prefix temporarily to the depth of the line. - - - -File: yatexe, Node: Updation of includeonly, Next: What column, Prev: Filling, Up: Top - -Updation of `\includeonly' -************************** - - When you edit splitting source texts, the notation - - \includeonly{CurrentEditingFileName} - -in the main file reduces the time of typesetting. If you want to hack -other file a little however, you have to rewrite it to - - \includeonly{OtherFileNameYouWantToFix} - -in the main file. YaTeX automatically detects that the current edited -text is not in includeonly list and prompts you - - A)dd R)eplace %)comment? - -in the minibuffer. Type `a' if you want to add the current file name to -`\includeonly' list, `r' to replace \`includeonly' list with the current -file, and type `%' to comment out the `\includeonly' line. - - - -File: yatexe, Node: What column, Next: Intelligent newline, Prev: Updation of includeonly, Up: Top - -What column? -************ - - We are often get tired of finding the corresponding column in large -tabulars. For example, - - \begin{tabular}{|c|c|c|c|c|c|c|c|}\hline - Name&Position&Post No.&Addr.&Phone No.&FAX No.& - Home Addr.&Home Phone\\ \hline - Thunder Bird & 6 & 223 & LA & xxx-yyy & - zzz-www & Japan & 9876-54321 \\ - & 2 & \multicolumn{2}{c|}{Unknown} - &&&(???) - \\ \hline - \end{tabular} - -Suppose you have the cursor located at `(???)' mark, can you tell which -column it is belonging at once? Maybe no. In such case, type - -`[prefix] &' - ... What column - -in that position. YaTeX tells you the column header of the current field. -Since YaTeX assumes the first line of tabular environment as a row of -column headers, you can create a row of virtual column headers by putting -them in the first line and commenting that line with `%'. - - - -File: yatexe, Node: Intelligent newline, Next: Usepackage checker, Prev: What column, Up: Top - -Intelligent newline -******************* - - At the end of begin-type completion of tabular[*], array, itemize, -enumerate or tabbing environment, or typing - -`ESC RET' - ... Intelligent newline - -in these environments inserts the contents corresponding to the current -environment in the next line. (At the begin-type completion, this -contents can be removed by `undo'.) In `tabular' environment, for -example, `ESC RET' inserts the certain number of `&' and trailing `\\', -and `\hline' if other `\hline' is found in backward. Here are the list of -contents vs. environments. - - * `tabular', `tabular*', `array' - - Corresponding number of `&' and `\\'. And `\hline' if - needed. - - * `tabbing' - - The same number of `\>' as `\=' in the first line. - - * `itemize', `enumerate', `description', `list' - - `\item' or `item[]'. - - Note that since this function works seeing the contents of the first -line, please call this after the second line if possible. - - If you want to apply these trick to other environments, `foo' -environment for example, define the function named -`YaTeX-intelligent-newline-foo' to insert corresponding contents. That -function will be called at the beginning of the next line after the -newline is inserted to the current line. Since the function -`YaTeX-indent-line' is designed to indent the current line properly, -calling this function before your code to insert certain contents must be -useful. See the definition of the function -`YaTeX-intelligent-newline-itemize' as an example. - - - -File: yatexe, Node: Usepackage checker, Next: Online help, Prev: Intelligent newline, Up: Top - -Usepackage checker -****************** - -When you input begint-type, section-type, maketitle-type macros with -completion, and it requires some LaTeX2e package, YaTeX examines the -existence of correct `\usepackage'. If not, YaTeX inserts the -`\usepackage{}' declaration corresponding to input macro. - -To activate the package completion for your favarite package, set the -variable `YaTeX-package-alist-private' correctly. Please refere the value -of `YaTeX-package-alist-default' as an example. - - - -File: yatexe, Node: Online help, Next: Browsing file hierarchy, Prev: Usepackage checker, Up: Top - -Online help -*********** - - YaTeX provides you the online help with popular LaTeX commands. - - Here are the key strokes for the online help. - -`[prefix] ?' - ... Online help -`[prefix] /' - ... Online apropos - - -Online help -=========== - - `Online help' shows the documentation for the popular LaTeX -commands(defaults to the commands on the cursor) in the next buffer. -There are two help file, `global help' and `private help'. The former -file contains the descriptions on the standard LaTeX command and is -specified its name by variable `YaTeX-help-file'. Usually, the global -help file should be located in public space (`$EMACSEXECPATH' by default) -and should be world writable so that anyone can update it to enrich its -contents. The latter file contains descriptions on non-standard or -personal command definitions and is specified by -`YaTeX-help-file-private'. This file should be put into private -directory. - - -Online apropos -============== - - `Online apropos' is an equivalent of GNU Emacs's apropos. It shows all -the documentations that contains the keyword entered by the user. - - -When no descriptions are found... -================================= - - If there is no description on a command in help files, YaTeX requires -you to write a description on that command. If you are willing to do, -determine which help file to add and write the description on it referring -your manual of (La)TeX. Please send me your additional descriptions if -you describe the help on some standard commands. I might want to include -it in the next distribution. - - - -File: yatexe, Node: Browsing file hierarchy, Next: Cooperation with other packages, Prev: Online help, Up: Top - -Browsing file hierarchy -*********************** - - When you are editing multi-file source, typing - -`[prefix] d' - ... browse file hierarchy - -asks you the parent-most file (which may be defaulted) and displays the -documentation hierarchy in the next window. In this buffer, the following -commands are available. - -`n' - ... move to the next line and show its contents -`p' - ... move to the previous line and show its contents -`N' - ... move to the next file in the same inclusion level -`P' - ... move to the previous file in the same inclusion level -`j' - ... move to the next line -`k' - ... move to the previous line -`u' - ... move to the parent file -`.' - ... show the current files contents in the next window -`SPC' - ... scroll up the current file window -`DEL, b' - ... scroll down the current file window -`<' - ... show the beginning of the current file -`>' - ... show the end of the current file -`>' - ... return to the previous postion after `<' or `>' -`RET, g' - ... open the current file in the next window -`mouse-2' - ... same as RET(available only with window system) -`o' - ... other window -`1' - ... delete other windows -`-' - ... shrink hierarchy buffer window -`+' - ... enlarge hierarchy buffer window -`?' - ... describe mode -`q' - ... quit - - Note that operations on the file contents in the next window do not work -correctly when you close the corresponding file. - - - -File: yatexe, Node: Cooperation with other packages, Next: Customizations, Prev: Browsing file hierarchy, Up: Top - -Cooperation with other packages -******************************* - - YaTeX works better with other brilliant packages. - - -gmhist -====== - - When you are loading `gmhist.el' and `gmhist-mh.el', you can use -independent command history list at the prompt of preview command -(`[prefix] tp') and print command (`[prefix] tl'). On each prompt, you -can enter the previous command line string repeatedly by typing `M-p'. - - -min-out -======= - - `min-out', the outline minor mode, can be used in yatex-mode buffers. -If you want to use it with YaTeX, please refer the file `yatexm-o.el' as -an example. - - - -File: yatexe, Node: Customizations, Next: Etcetera, Prev: Cooperation with other packages, Up: Top - -Customizations -************** - - You can customize YaTeX by setting Emacs-Lisp variables and by making -add-in functions. - -* Menu: - -* Lisp variables:: -* Add-in functions:: -* Add-in generator:: - - - -File: yatexe, Node: Lisp variables, Next: Add-in functions, Prev: Customizations, Up: Customizations - -Lisp variables -============== - - You can change the key assignments or make completion more comfortable -by setting the values of various variables which control the movement of -yatex-mode. - - For example, if you want to change the prefix key stroke from `C-c' to -any other sequence, set YaTeX-prefix to whatever you want to use. If you -don't want to use the key sequence `C-c letter' which is assumed to be the -user reserved sequence in Emacs world, set `YaTeX-inhibit-prefix-letter' -to `t', and all of the default key bind of `C-c letter' will turn to the -corresponding `C-c C-letter' (but the region based completions that is -invoked with `C-c Capital-letter' remain valid, if you want to disable -those bindings, set that variable to 1 instead of `t'). - -* Menu: - -* All customizable variables:: -* Sample definitions:: -* Hook variables:: -* Hook file:: - - - -File: yatexe, Node: All customizable variables, Next: Sample definitions, Prev: Lisp variables, Up: Lisp variables - -All customizable variables --------------------------- - - Here are the customizable variables of yatex-mode. Each value setq-ed -in `~/.emacs' is preferred and that of defined in `yatex.el' is neglected. -Parenthesized contents stands for the default value. When you are to -change some of these variables, see more detailed documentation of the -variable by `M-x describe-variable'. - - -- Variable: YaTeX-japan - Set this nil to produce all messages in English (`Depends on Japanese - feature of Emacs') - - -- Variable: YaTeX-kanji-code - Default buffer-file-coding-system for YaTeX modes' buffer. Set this - 0 to no language conversion. Nil to preserve original - coding-system. 1=Shift JIS, 2=JIS, 3=EUC, 4=UTF-8 (`1 or 2') - - -- Variable: YaTeX-prefix - Prefix key stroke (`C-c') - - -- Variable: YaTeX-inhibit-prefix-letter - Change key stroke from `C-c letter' to `C-c C-letter' (`nil') - - -- Variable: YaTeX-fill-prefix - Fill-prefix used in yatex-mode (`nil') - - -- Variable: YaTeX-user-completion-table - Name of user dictionary where learned completion table will be - stored. (`"~/.yatexrc"') - - -- Variable: tex-command - LaTeX typesetter command (`"latex"') - - -- Variable: dvi2-command - Preview command (`"xdvi -geo +0+0 -s 4"') - - -- Variable: dviprint-command-format - Command format to print dvi file (`"dvi2ps %f %t %s | lpr"') - - -- Variable: dviprint-from-format - Start page format of above %f. %b will turn to start page (`"-f %b"') - - -- Variable: dviprint-to-format - End page format of above %t. %e will turn to `end' page (`"-t %e"') - - -- Variable: makeindex-command - Default makeindex command (`"makeindex"' (`"makeind"' on MS-DOS)) - - -- Variable: YaTeX-dvipdf-command - Default command name to convert .dvi to PDF (`"dvipdfmx"') - - -- Variable: YaTeX-need-nonstop - Put `\nonstopmode{}' or not (`nil') - - -- Variable: latex-warning-regexp - Regular expression of warning message latex command puts out - (`"line.* [0-9]*"') - - -- Variable: latex-error-regexp - Regular expression of error message (`"l\\.[1-9][0-9]*"') - - -- Variable: latex-dos-emergency-message - Message latex command running on DOS puts at abort (`"Emergency - stop"') - - -- Variable: YaTeX-item-regexp - Regular expression of item command (`"\\\\item"') - - -- Variable: YaTeX-verb-regexp - Regexp of verb family. Omit \\\\. (`"verb\\*?\\|path"') - - -- Variable: YaTeX-nervous - T for using local dictionary (`t') - - -- Variable: YaTeX-sectioning-regexp - Regexp of LaTeX sectioning command - (`"\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"') - - -- Variable: YaTeX-fill-inhibit-environments - Inhibit fill in these environments (`'("tabular" "tabular*" "array" - "picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" - "verbatim" "verbatim*")') - - -- Variable: YaTeX-uncomment-once - T for deleting all preceding `%' (`nil') - - -- Variable: YaTeX-close-paren-always - T for always close all parenthesis automatically, `nil' for only eol - (`t') - - -- Variable: YaTeX-auto-math-mode - Switch math-mode automatically (`t') - - -- Variable: YaTeX-math-key-list-private - User defined alist, math-mode-prefix vs completion alist used in - image completion (`nil'). See `yatexmth.el' for the information - about how to define a completion alist. - - -- Variable: YaTeX-default-pop-window-height - Initial height of typesetting buffer when one-window. Number for the - lines of the buffer, numerical string for the percentage of the - screen-height. `nil' for half height (10) - - -- Variable: YaTeX-help-file - Global online help file name - (`$doc-directory/../../site-lisp/YATEXHLP.eng') - - -- Variable: YaTeX-help-file-private - Private online help file name (`"~/YATEXHLP.eng"') - - -- Variable: YaTeX-no-begend-shortcut - Disable [prefix] b ?? shortcut (`nil)' - - -- Variable: YaTeX-hilit-pattern-adjustment-private - List of the list that contain the regular expression and the symbol - of logical meaning of the string that matches the pattern. See also - the value from `(assq 'yatex-mode hilit-patterns-alist)' and the - value of `YaTeX-hilit-pattern-adjustment-default' (and even the - document of hilit19.el). - - -- Variable: YaTeX-sectioning-level - Alist of LaTeX's sectioning command vs its height. - - -- Variable: YaTeX-hierarchy-ignore-heading-regexp - `YaTeX-display-hierarchy' searches for sectioning command first, and - comment line secondary as a file headings. In latter case, ignore lines - that match with regular expression of this variable. Default value of - this variable is RCS header expressions and mode specifying line `-*- xxxx - -*'. - - -- Variable: YaTeX-skip-default-reader - Non-nil for this variable skips the default argument reader of - section-type command when add-in function for it is not defined - (`nil') - - -- Variable: YaTeX-create-file-prefix-g - When typing `prefix g' on the `\include' line, open the target file - even if the file doesn't exist (`nil') - - -- Variable: YaTeX-simple-messages - Simplyfy messages of various completions (`nil') - - -- Variable: YaTeX-hilit-sectioning-face - When hilit19 and yatex19 is active, YaTeX colors the sectioning - commands. This variable specifies the foreground and background - color of `\part' macro. The default value is `'(yellow/dodgerblue - yellow/slateblue)'. The first element of this list is for the screen - when `hilit-background-mode' is `'light', and the second element is - for `'dark'. You should specify both color as `forecolor/backcolor'. - - -- Variable: YaTeX-hilit-sectioning-attenuation-rate - When color mode, this variable specifies how much attenuate the color - density of `\subparagraph' compared with that of `\chapter' (`'(15 - 40)') See also `YaTeX-hilit-sectioning-face'. - - -- Variable: YaTeX-use-AMS-LaTeX - If you use AMS-LaTeX, set to `t' (`nil') - - -- Variable: YaTeX-use-LaTeX2e - If you use LaTeX2e, set to `t' (`t') - - -- Variable: YaTeX-template-file - File name which is automatically inserted at creation - (`~/work/template.tex') - - -- Variable: YaTeX-search-file-from-top-directory - Non-nil means to search input-files from the directory where main - file exists (`t') - - -- Variable: YaTeX-use-font-lock - Use font-lock to fontify buffer or not (`(featurep 'font-lock)' - - -- Variable: YaTeX-use-hilit19 - Use hilit19 to highlight buffer or not (`(featurep 'hilit19)' - - -- Variable: YaTeX-use-italic-bold - YaTeX tries to search italic, bold fontsets or not (`t' if Emacs-20 - or later). This variable is effective only when font-lock is used. - (`(featurep 'hilit19)' - - -- Variable: YaTeX-singlecmd-suffix - Suffix which is always inserted after maketitle-type macros. `"{}"' - is recommended. - - -- Variable: YaTeX-package-alist-private - Alist of LaTeX2e-package name vs. lists of macros in it. Set this - alist properly and YaTeX automatically check the declaratiion of - `usepackage' for corresponding macro, when you input that macro with - completion. If required `usepackage' is not found, YaTeX also - automatically inserts `\usepackage'. Alist is as follows; - '((PackageName1 (completionType ListOfMacro) (completionType - ListOfMacro)) (PackageName2 (completionType ListOfMacro) - (completionType ListOfMacro...))....) completionType is one of `env, - section, maketitle'. Consult the value of - `YaTeX-package-alist-default' as an example. - - -- Variable: YaTeX-tabular-indentation - At indentation by `C-i' in tabular or array environment, YaTeX put - the additional spaces to the normail indentation depth. The number - of additional spaces is the product of YaTeX-tabular-indentation and - the number of column position in tabular. - - -- Variable: YaTeX-noindent-env-regexp - Regexp of environment names that should begin with no indentation. - All verbatime-like environment name should match with. - - -- Variable: YaTeX-ref-default-label-string - Default \\ref time string format. This format is like strftime(3) - but allowed conversion char are as follows; %y -> Last 2 digit of - year, %b -> Month name, %m -> Monthe number(1-12), %d -> Day, %H -> - Hour, %M -> Minute, %S -> Second, %qx -> alphabetical-decimal - conversion of yymmdd. %qX -> alphabetical-decimal conversion of - HHMMSS. Beware defualt label-string should be always unique. So - this format string should have both time part (%H+%M+%S or %qX) and - date part (%y+(%b|%m)+%d or %qx). - - -- Variable: YaTeX-ref-generate-label-function - Function to generate default label string for unnamed \\label{}s. - The function pointed to this value should take two arguments. First - argument is LaTeX macro's name, second is macro's argument. Here is - an example for using this value. - (setq YaTeX-ref-generate-label-function 'my-yatex-generate-label) - (defun my-yatex-generate-label (command value) - (and (string= command "caption") - (re-search-backward "\\\\begin{\\(figure\\|table\\)}" nil t) - (setq command (match-string 1))) - (let ((alist '(("chapter" . "chap") - ("section" . "sec") - ("subsection" . "subsec") - ("figure" . "fig") - ("table" . "tbl")))) - (if (setq command (cdr (assoc command alist))) - (concat command ":" value) - (YaTeX::ref-generate-label nil nil)))) - - - - -File: yatexe, Node: Sample definitions, Next: Hook variables, Prev: All customizable variables, Up: Lisp variables - -Sample definitions ------------------- - - For instance, to change the prefix key stroke to `ESC', and name of the -user dictionary `~/src/emacs/yatexrc', and set `fill-prefix' to single TAB -character, add the following `setq' to `~/.emacs'. - - (setq YaTeX-prefix "\e" - YaTeX-user-completion-table "~/src/emacs/yatexrc" - YaTeX-fill-prefix " ") - - - -File: yatexe, Node: Hook variables, Next: Hook file, Prev: Sample definitions, Up: Lisp variables - -Hook variables --------------- - - More customizations will be done by the hook-function defined in -hook-variable `yatex-mode-hook'. This is useful to define a shortcut key -sequence to enter some environments other than `document' and `enumerate' -etc. The following statement defines `[prefix] ba' to enter -`\begin{abstract}' ... `=end{abstract}' immediately. - - (setq yatex-mode-hook - '(lambda() (YaTeX-define-begend-key "ba" "abstract"))) - - You should use functions `YaTeX-define-key', or -`YaTeX-define-begend-key' to define all the key sequences of yatex-mode. - - - -File: yatexe, Node: Hook file, Prev: Hook variables, Up: Lisp variables - -Hook file ---------- - - You can stuff all of YaTeX related expressions into a file named -`yatexhks.el' if you have a lot of codes. YaTeX automatically load this -file at the initialization of itself. Using `yatexhks.el' makes -`yatex-mode-load-hook' unnecessary. - - - -File: yatexe, Node: Add-in functions, Next: Add-in generator, Prev: Lisp variables, Up: Customizations - -Add-in functions -================ - - You can easily define a function to input detailed arguments with -completion according to LaTeX environments or commands. - - -What is add-in functions? -------------------------- - - When you input `tabular' environment, don't you think "I want YaTeX to -complete its argument toward my favorite one such as `{|c|c|c|}'..."? -Yes, you can define the function to complete arguments for any environment -and any LaTeX commands. - - -Procedure ---------- - - Here is the procedure to define add-in functions. - 1. Define the function - 2. Put the function into `yatexhks.el' - -* Menu: - -* How the add-in function works:: -* How the function is called:: -* Useful functions for creating add-in:: -* Contribution:: - - - -File: yatexe, Node: How the add-in function works, Next: How the function is called, Prev: Add-in functions, Up: Add-in functions - -How the add-in function works ------------------------------ - -There are three types of add-in. - - 1. Option add-in - 2. argument add-in - 3. enclosing add-in - -"Option add-in" returns the LaTeX's optional parameters such as optional -strings after `\begin{ENV}', optional strings between a section-type -command and its first argument, and optional strings just after type -maketitle-type command. The following illustrates the name of add-in -functions, where underlined strings are generated by add-in functions. - - \begin{table}[ht] (Function name: YaTeX:table) - ~~~~ - \put(100,200){} (Function name: YaTeX:put) - ~~~~~~~~~ - \sum_{i=0}^{n} (Function name: YaTeX:sum) - ~~~~~~~~~~ - - Obviously, the function name is decided by concatenating the prefix -`YaTeX:' and LaTeX command's name. - - Another add-in type is "argument add-in", which completes arguments for -section-type commands. - - \newcommand{\foo}{bar} (Function name: YaTeX::newcommand) - ~~~~ ~~~ - - When the section-type command is inputted, the function named by -concatenating `YaTeX::' and section-type command, is called automatically -with an integer argument which indicates which argument of section-type -command is being read. Thus the add-in should determine the job referring -the value of its argument. - - "enclosing add-in" is for modifying and/or checking the region that will -be enclosed by section-type commands via `[prefix] S'. An enclosing -add-in function will be called with two arguments, beginning of the -enclosed region and end of the region. Suppose you want to enclose the -existing text `(a+b)/c' by `\frac{}'. - - a/c - | | - A B - -You do set-mark-command at point A and then move to point B. Typing -`[prefix] S' and input `frac' enclose the region like this; - - \frac{a/c} - -Normally, the expression `a/c' is translated to `\frac{a}{c}'. An -enclosing add-in is useful for modifying `/' to `}{'. - -* Menu: - -* Defining option-add-in:: -* Defining argument-add-in:: -* Defining enclosing-add-in:: - - - -File: yatexe, Node: Defining option-add-in, Next: Defining argument-add-in, Prev: How the add-in function works, Up: How the add-in function works - -Defining `option add-in' -........................ - - If you want `{|c|c|c|}' for all `tabular' environment, - - (defun YaTeX:tabular () - "{|c|c|c|}") - -is enough. If you want more complicated format, define as below. - - (defun YaTeX:tabular () - "{@{\\vrule width 1pt\\ }|||@{\\ \\vrule width 1pt}}") - -Note that the character `\' must be described as `\\' in Emacs-Lisp. The -next example reads the tabular format from keyboard. - (defun YaTeX:tabular () - (concat "{" (read-string "Rule: ") "}")) - - - -File: yatexe, Node: Defining argument-add-in, Next: Defining enclosing-add-in, Prev: Defining option-add-in, Up: How the add-in function works - -Defining `argument add-in' -.......................... - - This section describes how to define the add-in function for -`\newcommand'. - - The first argument of `\newcommand' begins always with `\'. The second -argument is usually so complex that we can not edit them in the -minibuffer. Here is the created function considering this. - - (defun YaTeX::newcommand (n) ;n is argument position - (cond - ((= n 1) ;1st argument is macro name - (read-string "Command: " "\\")) ;initial input `\' - ((= n 2) "") ;do nothing when reading arg#2 - (t nil))) - - Note that when the `argument add-in' function return `nil', normal -argument reader will be called. - - - -File: yatexe, Node: Defining enclosing-add-in, Prev: Defining argument-add-in, Up: How the add-in function works - -Defining `enclosing add-in' -........................... - - This section describes how to define the add-in function for text -enclosed by `\frac{}'. - - When enclosing the text `5/3' by `\frac{}', you might want to replace -`/' with `}{'. Enclosing function `YaTeX::frac-region' is called with two -arguments, beginning of enclosed text and end of enclosed text. The -function is expected to replace `/' with `}{'. Here is an example -expression. - - (defun YaTeX::frac-region (beg end) - (catch 'done - (while (search-forward "/" end t) - (goto-char (match-beginning 0)) - (if (y-or-n-p "Replace this slash(/) with `}{'") - (throw 'done (replace-match "}{"))) - (goto-char (match-end 0))))) - - - -File: yatexe, Node: How the function is called, Next: Useful functions for creating add-in, Prev: How the add-in function works, Up: Add-in functions - -How the function is called --------------------------- - - YaTeX calls the add-in functions for specified begin-type, section-type, -and maketitle-type command, if any. `Option add-in' functions for -begin-type are called when `\begin{ENV}' has been inserted, functions for -section-type are called just before input of the first argument, and -functions for maketitle-type is called after maketitle-type command has -been inserted. `Argument add-in' functions are called at each entry of -arguments for section-type commands. - - - -File: yatexe, Node: Useful functions for creating add-in, Next: Contribution, Prev: How the function is called, Up: Add-in functions - -Useful functions for creating add-in ------------------------------------- - - Many add-in functions for typical LaTeX commands are defined in -`yatexadd.el'. Those are also useful as references. Here are the short -descriptions on useful functions, where [F] means function, [A] means -arguments, [D] means description. - -`[F]' - YaTeX:read-position -`[A]' - Character list which can show up in the brackets -`[D]' - Return the location specifier such as `[htb]'. When nothing is - entered, omit [] itself. If the possible characters are "htbp", call - this function as `(YaTeX:read-position "htbp")' - -`[F]' - YaTeX:read-coordinates -`[A]' - Base prompt, X-axis prompt, Y-axis prompt (each optional) -`[D]' - Read the coordinates with the prompt "BasePrompt X-axisPrompt:" for - X-axis, "BasePrompt Y-axisPrompt:" for Y-axis, and return it in the - form of "(X,Y)". The default prompts are `Dimension', `X', `Y' - respectively. - -`[F]' - YaTeX:check-completion-type -`[A]' - One of the symbols: 'begin, 'section, or 'maketitle -`[D]' - Check the current completion type is specified one and cause error - if not. The variable `YaTeX-current-completion-type' holds the symbol - according to the current completion type. - - - -File: yatexe, Node: Contribution, Prev: Useful functions for creating add-in, Up: Add-in functions - -Contribution ------------- - - If you make your own pretty function and you let it be in public, please -send me the function. I'm going to include it in the next release. - - - -File: yatexe, Node: Add-in generator, Prev: Add-in functions, Up: Customizations - -Add-in generator -================ - - First, don't forget to read the section of add-in functions *Note Add-in -functions::. If you easily understand how to define them, there's no need -to read this section. But being not familiar with Emacs-Lisp, when you -don't have clear idea what to do, this section describes how to get YaTeX -make add-in function. - - There are two methods of generation. One is for fully interactive -generator for beginners and another requires little knowledge of -Emacs-Lisp. - - -Generator for beginners ------------------------ - The former generator is called by - `M-x YaTeX-generate' - -strokes. All you have to do is follow the guidances. Defying them may -cases the disaster (I wonder what is it???). So when you make some -mistake, it is recommendable to type `C-g' and start afresh. - - -Simple generator ----------------- - - The latter generator is invoked by the next sequence. `M-x -YaTeX-generate-simple' This generator can make both "option add-in" and -"argument add-in" (*refer the section add-in functions* *Note How the -add-in function works::), whereas `YaTeX-generate' cannot make "argument -addin". - - For example, assume you have the LaTeX command as follows. - - \epsinput[t](250,50){hoge.eps}{plain}{Picture of foo} - (A) (B) (1) (2) (3) - (A)Optional parameter to specify the position - One of t(top), b(bottom), l(left), r(right) - (B)Maximum size of frame - (1)1st argument is filename of EPS file - (2)2nd argument indicates - plain do nothing - frame make frame around image - dframe make double-frame around image - for included EPS file. - (3)Caption for the picture - - Now get start with generation. Typing `M-x YaTeX-generate-simple' -brings the prompt: - (O)ption? (A)rgument? - - -Generating "option add-in" -.......................... - - Since (A), (B) above are optional argument, all we have to do to -complete them is define the option add-in for them. Let's generate the -function to complete (A). - - M-x YaTeX-generate-simple RET - epsinput RET - o - -Typing as above leads the next prompt. - - Read type(1): (S)tring (C)omplete (F)ile ([)option (P)osition co(O)rd. (q)uit - - This asks that "Which type is the completion style of 1st argument?". -Here are the possible completion style. - -`String' - read plain string -`Complete' - read with completion -`File' - read file name -`Option' - read optional string (if string omitted, omit [] too) -`Position' - read positional option (like [htbp]) -`Coord.' - read coordinates -`Quit' - quit from generating - - Since (A) is the optional argument to specify the location of included -EPS file, the completion style is `Position', and the possible characters -are t, b, l, and r. To tell these information to generator, operate as -follows. - - Read type(1).... p - Acceptable characters: tblr RET - - (B) is coordinate. So its completion style is coOrd. We want a prompt -meaning "Maximum size" when completion. - - Read type(2).... o - Prompt for coordinates: Max size RET - - That's all for optional argument. Select quit. - - Read type(3).... q - - Then the generated option add-in function for \epsinput will be shown in -the next window. - - -Generating "argument add-in" -............................ - - Next, create the argument add-in. The arguments for \epsinput are EPS -file name, framing style, and caption string in sequence. - - M-x YaTeX-generate-simple RET - epsinput RET - a - - Above key strokes bring the prompt that asks the number of argument. -Answer it with 3. - - How many arguments?: 3 RET - - Then the generator asks the completion style and prompt for completion. -Answer them. `f' for FileName and prompt string. - - Read type(1).... f - Prompt for argument#1 EPS file name RET - - The second argument is one of selected symbol. So the completion type -is `Completion'. - - Read type(2).... c - Prompt for argument#2 Include style RET - - Then all the candidates ready to be read. Type single RET after -entering all. - - Item[1](RET to exit): plain RET - Item[2](RET to exit): frame RET - Item[3](RET to exit): dframe RET - Item[4](RET to exit): RET - - The following prompt asks whether the entered string must belong to -candidates or not. In this case, since the argument must be one of -`plain', `frame', and `dframe', type `y'. - - Require match? (y or n) y - - The last argument is the caption string for which any completion is -needed. - - Read type(3).... s - Prompt for argument#3 Caption RET - default: Figure of RET - - Finally we'll get the argument add-in in the next window. - - -Contribution ------------- - - If you get your own pretty function and you let it be in public, please -steel yourself in the happy atmosphere and do not send me the function. I -do know it is not fine because it is generated by yatexgen:-p. - - - -File: yatexe, Node: Etcetera, Next: Copying, Prev: Customizations, Up: Top - -Etcetera -******** - - The standard completion tables provided in `yatex.el' contain a few -LaTeX commands I frequently use. This is to lessen the key strokes to -complete entire word, because too many candidates rarely used often cause -too many hits. Therefore always try to use completion in order to enrich -your dictionary, and you will also find `Wild Bird' growing suitable for -your LaTeX style. - - The package name `Wild Bird' is the English translation of Japanese -title `Yachou', which is a trick on words of Japanese. - - - -File: yatexe, Node: Copying, Prev: Etcetera, Up: Top - -Copying -******* - - This program is distributed as a free software. You can -use/copy/modify/redistribute this software freely but with NO warranty to -anything as a result of using this software. Adopting code from this -program is also free. But I would not do contract act. - -Any reports and suggestions are welcome as long as I feel interests in -this software. My possible e-mail address is `yuuji@yatex.org'. (as of -Jan.2004) And there is mailing list for YaTeX. Although the common -language is Japanese, questions in English will be welcome. To join the -ML, send the mail whose subject is `append' to the address -`yatex@yatex.org. If you have some question, please ask to -`yatex-admin@yatex.org'. - - The specification of this software will be surely modified (depending on -my feelings) without notice :-p. - - - HIROSE Yuuji - - -Tag table: -Node: Top146 -Node: What is YaTeX?1487 -Node: Main features1860 -Node: Installation3452 -Node: Typesetting4229 -Node: Calling typesetter5298 -Node: Calling previewer7502 -Node: Printing out7863 -Node: %#notation8155 -Node: Changing typesetter8531 -Node: Splitting input files8895 -Node: Static region for typesetting10319 -Node: Lpr format11448 -Node: Editing %# notation12505 -Node: Completion13024 -Node: Begin-type completion13584 -Node: Section-type completion16627 -Node: view-sectioning19062 -Node: Large-type completion20642 -Node: Maketitle-type completion21373 -Node: Arbitrary completion21925 -Node: End completion22315 -Node: Accent completion22785 -Node: Image completion23402 -Node: Greek letters completion25659 -Node: Local dictionaries26386 -Node: Commenting out27323 -Node: Cursor jump28782 -Node: Jump to corresponding object29094 -Node: Invoking image processor30495 -Node: Jump to main file31838 -Node: Jumping around the environment32203 -Node: Jumping to last completion position32621 -Node: Changing and Deleting33130 -Node: Changing LaTeX commands33522 -Node: Killing LaTeX commands34699 -Node: Filling35884 -Node: Updation of includeonly37735 -Node: What column38532 -Node: Intelligent newline39617 -Node: Usepackage checker41271 -Node: Online help41862 -Node: Browsing file hierarchy43537 -Node: Cooperation with other packages45274 -Node: Customizations45979 -Node: Lisp variables46313 -Node: All customizable variables47317 -Node: Sample definitions57116 -Node: Hook variables57629 -Node: Hook file58333 -Node: Add-in functions58672 -Node: How the add-in function works59532 -Node: Defining option-add-in61731 -Node: Defining argument-add-in62453 -Node: Defining enclosing-add-in63335 -Node: How the function is called64189 -Node: Useful functions for creating add-in64865 -Node: Contribution66270 -Node: Add-in generator66544 -Node: Etcetera71916 -Node: Copying72521 - -End tag table +Info file: yatexe, -*-Text-*- +produced by `texinfo-format-buffer' +from file `yatexe.tex' +using `texinfmt.el' version 2.38 of 3 July 1998. + + + + + + +File: yatexe, Node: Top, Next: What is YaTeX?, Prev: (dir), Up: (dir) + +* Menu: + +* What is YaTeX?:: +* Main features:: What YaTeX can do +* Installation:: Guide to install +* Typesetting:: Call typesetting processes +* %#notation:: Meta-keyword `%#' +* Completion:: Input LaTeX commands with completion +* Local dictionaries:: Directory dependent completion +* Commenting out:: Commenting/uncommenting text +* Cursor jump:: Jumping to related position +* Changing and Deleting:: Changing/deleting certain unit of text +* Filling:: Filling an item or paragraph +* Updation of includeonly:: Free from maintaining includeonly +* What column:: Check what table-column the cursor belong +* Intelligent newline:: Guess requisites of new line +* Usepackage checker:: Selecting correct \usepackage is YaTeX's job +* Online help:: On-line documentation of LaTeX +* Browsing file hierarchy:: Walking through file hierarchy +* Cooperation with other packages:: Work well with gmhist, min-out +* Customizations:: How to breed `Wild Bird' +* Etcetera:: YaTeX is acquisitive. +* Copying:: Redistribution + + + + +File: yatexe, Node: What is YaTeX?, Next: Main features, Prev: Top, Up: Top + +What is YaTeX? +************** + + YaTeX automates typesetting and previewing of LaTeX and enables +completing input of LaTeX mark-up command such as `\begin{}'..`\end{}'. + + YaTeX also supports Demacs which runs on MS-DOS(386), Mule (Multi +Language Enhancement to GNU Emacs), and latex on DOS. + + + +File: yatexe, Node: Main features, Next: Installation, Prev: What is YaTeX?, Up: Top + +Main features +************* + + * Invocation of typesetter, previewer and related programs(`C-c t') + * Typesetting on static region which is independent from point + * Semiautomatic replacing of `\includeonly' + * Jumping to error line(`C-c '') + * Completing-read of LaTeX commands such as `\begin{}', `\section' etc. + (`C-c b', `C-c s', `C-c l', `C-c m') + * Enclosing text into LaTeX environments or commands (`C-u' + ABOVEKEYSTROKES) + * Displaying the structure of text at entering sectioning commands + * Lump shifting of sectioning commands (*Note view-sectioning::) + * Learning unknown/new LaTeX commands for the next completion + * Argument reading with a guide for complicated LaTeX commands + * Generating argument-readers for new/unsupported commands(`yatexgen') + * Quick changing or deleting of LaTeX commands(`C-c c', `C-c k') + * Jumping from and to inter-file, begin<->end, ref<->label(`C-c g') + * Blanket commenting out or uncommenting (`C-c >', `C-c <', `C-c ,', + `C-c .') + * Easy input of accent mark, math-mode's commands and Greek letters + (`C-c a', `;', `:') + * Online help for the popular LaTeX commands (`C-c ?', `C-c /') + * Document files hierarchy browser (`C-c d') + * Adding automatically \usepackage corresponding to inputting LaTeX + macro with completion + * Allow you to forget creating \label{}s, \ref{} or \cite{} completion + automatically generate labels. + + + +File: yatexe, Node: Installation, Next: Typesetting, Prev: Main features, Up: Top + +Installation +************ + + Put next two expressions into your `~/.emacs'. + + (setq auto-mode-alist + (cons (cons "\\.tex$" 'yatex-mode) auto-mode-alist)) + (autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) + +Next, add certain path name where you put files of YaTeX to your +load-path. If you want to put them in `~/src/emacs', write + + (setq load-path + (cons (expand-file-name "~/src/emacs") load-path)) + +in your `~/.emacs' + + Then, yatex-mode will be automatically loaded when you visit a file +which has extension `.tex'. If yatex-mode is successfully loaded, mode +string on mode line will be turned to "YaTeX". + + + + +File: yatexe, Node: Typesetting, Next: %#notation, Prev: Installation, Up: Top + +Typesetting +*********** + + The prefix key stroke of yatex-mode is `C-c' (Press 'C' with Control +key) by default. If you don't intend to change the prefix key stroke, +assume all `[prefix]' as `C-c' in this document. These key strokes +execute typeset or preview command. + +`[prefix] t j' + ... invoke latex +`[prefix] t r' + ... invoke latex on region +`[prefix] t e' + ... invoke latex on current environment or whole portion of + current formulas in math-mode. +`[prefix] t d' + ... invoke dvipdfmx after successful typesetting +`[prefix] t k' + ... kill current typesetting process +`[prefix] t b' + ... invoke bibtex +`[prefix] t i' + ... invoke makeindex +`[prefix] t d' + ... invoke latex && dvipdfmx +`[prefix] t p' + ... preview +`[prefix] t l' + ... lpr dvi-file +`[prefix] t s' + ... search current string on xdvi-remote + +* Menu: + +* Calling typesetter:: +* Calling previewer:: +* Printing out:: + + + +File: yatexe, Node: Calling typesetter, Next: Calling previewer, Prev: Typesetting, Up: Typesetting + +Calling typesetter +================== + + Typing `[prefix] t j', the current editing window will be divided +horizontally when you invoke latex command, and log message of LaTeX +typesetting will be displayed in the other window; called typesetting +buffer. The typesetting buffer automatically scrolls up and traces LaTeX +warnings and error messages. If you see latex stopping by an error, you +can send string to latex in the typesetting buffer. + + If an error stops the LaTeX typesetting, this key stroke will move the +cursor to the line where LaTeX error is detected. + +`[prefix] '' +`([prefix]+single quotation)' + + ... jump to the previous error or warning + + If you find a noticeable error, move to the typesetting buffer and move +the cursor on the line of error message and type `SPACE' key. This makes +the cursor move to corresponding source line. + + YaTeX-typeset-region invoked by `[prefix] tr' call typesetter for +region. The region is specified by standard point and mark, or by +`%#BEGIN' and `%#END' marks. Selected region will be copied to the +temporary file `texput.tex' with the same preamble as the main file of +current editing sources. Be sure to put all local macro settings in +preamble, not after `\begin{document}'. The method of specification of +the region is shown in the section *Note %#notation::. + + The documentclass for typeset-region is the same as that of editing file +if you edit one file, and is the same as main file's if you edit splitting +files. + + The `[prefix] te' key automatically marks current inner environment or +inner math mode and then call typeset-region with marked region. This is +convenient to quick view of current tabular environment or current editing +formulas. Keeping previewer window for `texput.dvi' is handy for +debugging. Since `[prefix] te' selects the inner-most environment as +region, it is not suitable for partial typesetting of doubly or more +composed environment. If you want to do partial typesetting for a nested +environment, use `[prefix] tr' for static-region, which is described in +the section *Note %#notation::. + + + +File: yatexe, Node: Calling previewer, Next: Printing out, Prev: Calling typesetter, Up: Typesetting + +Calling previewer +================= + + `[prefix] t p' invokes the TeX previewer. And if you are using +xdvi-remote, which can be controled from other terminals, `[prefix] t s' +enables you to search current string at the cursor on the running xdvi +window. + + + +File: yatexe, Node: Printing out, Prev: Calling previewer, Up: Typesetting + +Printing out +============ + + When you type `[preifx] t l', YaTeX asks you the range of dvi-printing +by default. You can skip this by invoking it with universal-argument as +follows: + + C-u [prefix] tl + + + +File: yatexe, Node: %#notation, Next: Completion, Prev: Typesetting, Up: Top + +%# notation +*********** + + You can control the typesetting process by describing `%#' notations in +the source text. + +* Menu: + +* Changing typesetter:: +* Splitting input files:: +* Static region for typesetting:: +* Lpr format:: +* Controlling which command to invoke:: +* Editing %# notation:: + + + +File: yatexe, Node: Changing typesetter, Next: Splitting input files, Prev: %#notation, Up: %#notation + +To change the `latex' command or to split a source text. +======================================================== + + To change the typesetting command, write + + %#!latex-big + +anywhere in the source text. This is useful for changing typesetter. + + + +File: yatexe, Node: Splitting input files, Next: Static region for typesetting, Prev: Changing typesetter, Up: %#notation + +Splitting input files +===================== + + And if you split the source text and edit subfile that should be +included from main text. + + %#!latex main.tex + +will be helpful to execute latex on main file from sub text buffer. Since +this command line after `%#!' will be sent to shell literally, next +description makes it convenient to use ghostview as dvi-previewer. + + %#!latex main && dvi2ps main.dvi > main + +Note that YaTeX assumes the component before the last period of the last +word in this line as base name of the main LaTeX source. The `%f' +notation in this line is replaced by main file name, and `%r' replaced by +root name of main file name. If you specify `%f' or `%r', YaTeX always +ask you the name of main file at the first typesetting. + + To make best use of the feature of inter-file jumping by `[prefix] g' +(see *Note Cursor jump::), take described below into consideration. + + * You can put split texts in sub directory, but not in sub directory of + sub directory. + * In the main text, specify the child file name with relative path name + such as \include{chap1/sub}, when you include the file in a + sub-directory. + * In a sub-text, write `%#!latex main.tex' even if `main.tex' is in the + parent directory(not %#!latex ../main.tex). + + + +File: yatexe, Node: Static region for typesetting, Next: Lpr format, Prev: Splitting input files, Up: %#notation + +Static region +============= + + Typeset-region by `[prefix] tr' passes the region between point and mark +to typesetting command by default. But when you want to typeset static +region, enclose the region by `%#BEGIN' and `%#END' as follows. + + %#BEGIN + TheRegionYouWantToTypesetManyTimes + %#END + +This is the rule of deciding the region. + + 1. If there exists %#BEGIN before point, + + 1. If there exists %#END after %#BEGIN, + * From %#BEGIN to %#END. + + 2. If %#END does not exist after %#BEGIN, + * From %#BEGIN to the end of buffer. + + 2. If there does not exist %#BEGIN before point, + * Between point and mark(standard method of Emacs). + + It is useful to write `%#BEGIN' in the previous line of \begin and +`%#END' in the next line of \`end' when you try complex environment such +as `tabular' many times. It is also useful to put only `%#BEGIN' alone at +the middle of very long text. Do not forget to erase `%#BEGIN' `%#END' +pair. + + + +File: yatexe, Node: Lpr format, Next: Controlling which command to invoke, Prev: Static region for typesetting, Up: %#notation + +Lpr format +========== + + Lpr format is specified by three Lisp variables. Here are the default +values of them. + +`(1)dviprint-command-format' + `"dvi2ps %f %t %s | lpr"' +`(2)dviprint-from-format' + `"-f %b"' +`(3)dviprint-to-format' + `"-t %e"' + + On YaTeX-lpr, `%s' in (1) is replaced by the file name of main text, +`%f' by contents of (2), %t by contents of (3). At these replacements, +`%b' in (2) is also replaced by the number of beginning page, `%e' in (3) +is replaced by the number of ending page. But `%f' and `%t' are ignored +when you omit the range of print-out by `C-u [prefix] tl'. + + If you want to change this lpr format temporarily, put a command such as +follows somewhere in the text: + + %#LPR dvi2ps %f %t %s | 4up -page 4 | texfix | lpr -Plp2 + + And if you want YaTeX not to ask you the range of printing out, the next +example may be helpful. + + %#LPR dvi2ps %s | lpr + + + +File: yatexe, Node: Controlling which command to invoke, Next: Editing %# notation, Prev: Lpr format, Up: %#notation + +Controlling which command to invoke +=================================== + +These %# notation below can control which command to invoke for LaTeX +related process. + + `%#BIBTEX' + + ... Command line for makeindex ([prefix] t i) + `%#MAKEINDEX' + + ... Command line for bibtex ([prefix] t b) + +If you want to invoke "makeidx hogehoge" to update index, put the next +line some upper place in the source, for example. + + %#MAKEINDEX makeidx hogehoge + + + + +File: yatexe, Node: Editing %# notation, Prev: Controlling which command to invoke, Up: %#notation + +Editing %# notation +=================== + + To edit `%#' notation described above, type + +`[prefix] %' + ... editing %# notation menu + +and select one of the entry of the menu as follows. + + !)Edit-%#! B)EGIN-END-region L)Edit-%#LPR + +Type `!' to edit `%#!' entry, `b' to enclose the region with `%#BEGIN' and +`%#END', and `l' to edit `%#LPR' entry. When you type `b', all `%#BEGIN' +and `%#END' are automatically erased. + + + +File: yatexe, Node: Completion, Next: Local dictionaries, Prev: %#notation, Up: Top + +Completion +********** + + YaTeX makes it easy to input the LaTeX commands. There are several +kinds of completion type, begin-type, section-type, large-type, etc... + +* Menu: + +* Begin-type completion:: +* Section-type completion:: +* Large-type completion:: +* Maketitle-type completion:: +* Arbitrary completion:: +* End completion:: +* Accent completion:: +* Image completion:: +* Greek letters completion:: + + + +File: yatexe, Node: Begin-type completion, Next: Section-type completion, Prev: Completion, Up: Completion + +Begin-type completion +===================== + + "Begin-type completion" completes commands of `\begin{env}' ... +`\end{env}'. All of the begin-type completions begin with this key +sequence. + +`[prefix] b' + ... start begin-type completion + +An additional key stroke immediately completes a frequently used LaTeX +`\begin{}'...`\`end'{}' environment. + +`[prefix] b c' + ... `\begin{center}...\end{center}' +`[prefix] b d' + ... `\begin{document}...\end{document}' +`[prefix] b D' + ... `\begin{description}...\end{description}' +`[prefix] b e' + ... `\begin{enumerate}...\end{enumerate}' +`[prefix] b E' + ... `\begin{equation}...\end{equation}' +`[prefix] b i' + ... `\begin{itemize}...\end{itemize}' +`[prefix] b l' + ... `\begin{flushleft}...\end{flushleft}' +`[prefix] b m' + ... `\begin{minipage}...\end{minipage}' +`[prefix] b t' + ... `\begin{tabbing}...\end{tabbing}' +`[prefix] b T' + ... `\begin{tabular}...\end{tabular}' +`[prefix] b^T' + ... `\begin{table}...\end{table}' +`[prefix] b p' + ... `\begin{picture}...\end{picture}' +`[prefix] b q' + ... `\begin{quote}...\end{quote}' +`[prefix] b Q' + ... `\begin{quotation}...\end{quotation}' +`[prefix] b r' + ... `\begin{flushright}...\end{flushright}' +`[prefix] b v' + ... `\begin{verbatim}...\end{verbatim}' +`[prefix] b V' + ... `\begin{verse}...\end{verse}' + + Any other LaTeX environments are made by completing-read of the Emacs +function. + +`[prefix] b SPACE' + ... begin-type completion + +The next message will show up in the minibuffer + + Begin environment(default document): + +by typing `[prefix] b'. Put the wishing environment with completion in +the minibuffer, and `\begin{env}'...\`\end{env}' will be inserted in the +LaTeX source text. If the environment you want to put does not exist in +the YaTeX completion table, it will be registered in the user completion +table. YaTeX automatically saves the user completion table in the user +dictionary file at exiting of emacs. + +At the completion of certain environments, the expected initial entry will +automatically inserted such as `\item' for `itemize' environment. If you +don't want the entry, it can be removed by undoing. + + If you want to enclose some paragraphs which have already been written, +invoke the begin-type completion with changing the case of `b' of key +sequence upper(or invoke it with universal argument by `C-u' prefix). + + The following example encloses a region with `description' environment. + +`[prefix] B D' +`(or ESC 1 [prefix] b D)' +`(or C-u [prefix] b D)' + + ... begin-type completion for region + + This enclosing holds good for the completing input by `[prefix] b SPC'. +`[prefix] B SPC' enclose a region with the environment selected by +completing-read. + + + +File: yatexe, Node: Section-type completion, Next: Large-type completion, Prev: Begin-type completion, Up: Completion + +Section-type completion +======================= + + "Section-type completion" completes section-type commands which take an +argument or more such as `\section{foo}'. To invoke section-type +completion, type + +`[prefix] s' + ... section-type completion + +then the prompt + + (C-v for view) \???{} (default documentclass): + +will show up in the minibuffer. Section-type LaTeX commands are completed +by space key, and the default value is selected when you type nothing in +the minibuffer. + + Next, + + \section{???}: + +prompts you the argument of section-type LaTeX command. For example, the +following inputs + + \???{} (default documentclass): section + \section{???}: Hello world. + +will insert the string + + \section{Hello world.} + +in your LaTeX source. When you neglect argument such as + + (C-v for view) \???{} (default section): vspace* + \vspace*{???}: + +YaTeX puts + + \vspace*{} + +and move the cursor in the braces. + + In LaTeX command, there are commands which take more than one arguments +such as `\addtolength{\topmargin}{8mm}'. To complete these commands, +invoke section-type completion with universal argument as, + + C-u 2 [prefix] s (or ESC 2 [prefix] s) + +and make answers in minibuffer like this. + + (C-v for view) \???{} (default vspace*): addtolength + \addtolength{???}: \topmargin + Argument 2: 8mm + +`\addtolength' and the first argument `\topmargin' can be typed easily by +completing read. Since YaTeX also learns the number of arguments of +section-type command and will ask that many arguments in future +completion, you had better tell the number of arguments to YaTeX at the +first completion of the new word. But you can change the number of +arguments by calling the completion with different universal argument +again. + + + Invoking section-type completion with `[Prefix] S' (Capital `S') +includes the region as the first argument of section-type command. + + The section/large/maketitle type completion can work at the prompt for +the argument of other section-type completion. Nested LaTeX commands are +efficiently read with the recursive completion by typing YaTeX's +completion key sequence in the minibuffer. + +* Menu: + +* view-sectioning:: + + + +File: yatexe, Node: view-sectioning, Prev: Section-type completion, Up: Section-type completion + +view-sectioning +--------------- + + In the minibuffer at the prompt of section-type command completion, +typing `C-v' shows a list of sectioning commands in source text(The line +with `<<--' mark is the nearest sectioning command). Then, default +sectioning command appears in the minibuffer. You can go up/down +sectioning command by typing `C-p'/`C-n', can scrolls up/down the listing +buffer by `C-v'/`M-v', and can hide sectioning commands under certain +level by 0 through 6. Type `?' in the minibuffer of sectioning prompt +for more information. + + You can generate this listing buffer (`*Sectioning Lines*' buffer) by +typing +`M-x YaTeX-section-overview' + ... Generate *Sectioning Lines* buffer + +from the LaTeX source buffer. In this listing buffer, typing `u' on the +sectioning command shifts up the corresponding sectioning command in +source text and `d' shifts down. After marking lines in the listing +buffer, typing `U' shifts up all sectioning commands in the region, and +`U' shifts down. Here are all the key bindings of `*Sectioning Lines*' +buffer. + +`SPC' + ... Jump to corresponding source line +`.' + ... Display corresponding source line +`u' + ... Shift up a sectioning line +`d' + ... Shift down a sectioning line +`U' + ... Shift up sectioning lines in region +`D' + ... Shift down sectioning lines in region +`0...6' + ... Hide sectioning commands whose level is lower than n + + + + +File: yatexe, Node: Large-type completion, Next: Maketitle-type completion, Prev: Section-type completion, Up: Completion + +Large-type completion +===================== + + "Large-type completion" inputs the font or size changing descriptions +such as `{\large }'. When you type + +`[prefix] l' + ... large-type completion + +the message in the minibuffer + + {\??? } (default large): + +prompts prompts you large-type command with completing-read. There are +TeX commands to change fonts or sizes, `it', `huge' and so on, in the +completion table. + + Region-based completion is also invoked by changing the letter after +prefix key stroke as `[prefix] L'. It encloses the region by braces with +large-type command. + + + +File: yatexe, Node: Maketitle-type completion, Next: Arbitrary completion, Prev: Large-type completion, Up: Completion + +Maketitle-type completion +========================= + + We call it "maketitle-type completion" which completes commands such as +`\maketitle'. Take notice that maketitle-type commands take no arguments. +Then, typing + +`[prefix] m' + ... maketitle-type completion + +begins maketitle-completion. Above mentioned method is true for +maketitle-completion, and there are LaTeX commands with no arguments in +completion table. + + + +File: yatexe, Node: Arbitrary completion, Next: End completion, Prev: Maketitle-type completion, Up: Completion + +Arbitrary completion +==================== + + You can complete certain LaTeX command anywhere without typical +completing method as described, by typing + +`[prefix] SPC' + ... arbitrary completion + +after the initial string of LaTeX command that is preceded by `\'. + + + +File: yatexe, Node: End completion, Next: Accent completion, Prev: Arbitrary completion, Up: Completion + +End completion +============== + + YaTeX automatically detects the opened environment and close it with +\`\end{environment}'. Though proficient YaTeX users never fail to make +environment with begin-type completion, some may begin an environment +manually. In that case, type + +`[prefix] e' + ... `end' completion + +at the end of the opened environment. + + + +File: yatexe, Node: Accent completion, Next: Image completion, Prev: End completion, Up: Completion + +Accent completion +================= + + When you want to write the European accent marks(like `\`{o}'), + +`[prefix] a' + ... accent completion + +shows the menu + + 1:` 2:' 3:^ 4:" 5:~ 6:= 7:. u v H t c d b + +in the minibuffer. Chose one character or corresponding numeric, and you +will see + + \`{} + +in the editing buffer with the cursor positioned in braces. Type one more +character `o' for example, then + + \`{o} + +will be completed, and the cursor gets out from braces. + + + +File: yatexe, Node: Image completion, Next: Greek letters completion, Prev: Accent completion, Up: Completion + +Image completion of mathematical sign +===================================== + + Arrow marks, sigma mark and those signs mainly used in the TeX's math +environment are completed by key sequences which imitate the corresponding +symbols graphically. This completion only works in the math environment. +YaTeX automatically detects whether the cursor located in math environment +or not, and change the behavior of key strokes `;' and `:'. + + By the way, we often express the leftarrow mark by `<-' for example. +Considering such image, you can write `\leftarrow' by typing `<-' after +`;' (semicolon) as a prefix. In the same way, `\longleftarrow' (`<--') is +completed by typing `;<--', infinity mark which is imitated by `oo' is +completed by typing `;oo'. + + Here are the sample operations in YaTeX math-mode. + + INPUT Completed LaTeX commands + ; < - `\leftarrow' + ; < - - `\longleftarrow' + ; < - - > `\longleftrightarrow' + ; o `\circ' + ; o o `\infty' + + In any case, you can quit from image completion and can move to the next +editing operation if the LaTeX command you want is shown in the buffer. + + `;' itself in math-environment is inserted by `;;'. Typing `TAB' in the +midst of image completion shows all of the LaTeX commands that start with +the same name as string you previously typed in. In this menu buffer, +press `RET' after moving the cursor (by `n', `p', `b', `f') to insert the +LaTeX command. + + To know all of the completion table, type `TAB' just after `;'. And +here is the sample menu by `TAB' after `;<'. + + KEY LaTeX sequence sign + < \leq < + ~ + << \ll << + <- \leftarrow <- + <= \Leftarrow <= + + You can define your favorite key-vs-sequence completion table in the +Emacs-Lisp variable `YaTeX-math-sign-alist-private'. See also +`yatexmth.el' for the information of the structure of this variable. + + + +File: yatexe, Node: Greek letters completion, Prev: Image completion, Up: Completion + +Greek letters completion +======================== + + Math-mode of YaTeX provides another image completion, Greek letters +completion in the same method. After prefix `:', typing `a' makes +`\alpha', `b' makes `\beta' and `g' makes `\gamma' and so on. First, type +`:TAB' to know all the correspondence of alphabets vs. Greek letters. + + If you will find `;' or `:' doesn't work in correct position of math +environment, it may be a bug of YaTeX. Please send me a bug report with +the configuration of your text, and avoid it temporarily by typing `;' or +`:' after universal-argument(`C-u') which forces `;' and `:' to work as +math-prefix. + + + +File: yatexe, Node: Local dictionaries, Next: Commenting out, Prev: Completion, Up: Top + +Local dictionaries +****************** + + Tables for completion consist of three dictionaries; `standard +dictionary' built in `yatex.el', `user dictionary' for your common private +commands, and `local dictionary' that is effective in a certain directory. + + When you input the command unknown to YaTeX at a completion in the +minibuffer, YaTeX asks you with the following prompt; + + `foo' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard + +In this menu, typing `u' updates your `user dictionary', `l' updates your +local dictionary, `n' updates only on-memory dictionary which go through +only current Emacs session, and `d' updates no dictionary and throws the +new word away. + + If you find this switching feature meaningless and bothersome, put the +next expression into your `~/.emacs' + + (setq YaTeX-nervous nil) + + + +File: yatexe, Node: Commenting out, Next: Cursor jump, Prev: Local dictionaries, Up: Top + +Commenting out +************** + + You may want to comment out some region. + +`[prefix] >' + ... comment out region by % +`[prefix] <' + ... uncomment region + +cause an operation to the region between point and mark. + +`[prefix] .' + ... comment out current paragraph +`[prefix] ,' + ... uncomment current paragraph + +comments or uncomments the paragraph where the cursor belongs. This +`paragraph' means the region marked by the function mark-paragraph, bound +to `ESC h' by default. It is NOT predictable what will happen when you +continuously comment out some paragraph many times. + + You can also comment out an environment between `\begin' and `\end', or +a `\begin'-\`\end' pair themselves, by making the following key strokes on +the line where `\begin{}' or `\end{}' exists. + +`[prefix] >' + ... comment out from \begin to \`end' +`[prefix] <' + ... uncomment from \begin to \`end' + +comment whole the contents of environment. Moreover, + +`[prefix] .' + ... comment out \begin and \`end' +`[prefix] ,' + ... uncomment \begin and \`end' + +(un)comments out only environment declaration: `\begin{}' and `\end{}'. +NOTE that even if you intend to comment out some region, invoking +`[prefix] >' on the `\begin',`\end' line decides to work in `commenting +out from `\begin' to `\end'' mode. + + + + +File: yatexe, Node: Cursor jump, Next: Changing and Deleting, Prev: Commenting out, Up: Top + +Cursor jump +*********** + + +* Menu: + +* Jump to corresponding object:: +* Invoking image processor:: +* Jump to main file:: +* Jumping around the environment:: +* Jumping to last completion position:: + + + +File: yatexe, Node: Jump to corresponding object, Next: Invoking image processor, Prev: Cursor jump, Up: Cursor jump + +Jump to corresponding object +============================ + + Typing + +`[prefix] g' + ... go to corresponding object + +in a certain place move the cursor to the place corresponding to the LaTeX +command of last place. YaTeX recognize the followings as pairs that have +relation each other. + + * `\begin{}' <-> `\end{}' + * `%#BEGIN' <-> `%#END' + * On the image-including line -> corresponding viewer or drawing tool + * `\label{}' <-> `\ref{}' + * `\include(\input)' -> included file + * `\bibitem{}' <-> `\cite{}' + + On a `\begin',`\end' line, typing `[prefix] g' moves the cursor to the +corresponding `\end',`\begin' line, if its partner really exists. The +behavior on the line `%#BEGIN' and `%#END' are the same. Note that if the +correspondent of `label/ref' or `cite/bibitem' exists in another file, +that file have to be opened to make a round trip between references by +`[prefix] g'. + + If you type `[prefix] g' on the line of `\include{chap1}', typically in +the main text, YaTeX switches buffer to `chap1.tex'. + +`[prefix] 4 g' + ... go to corresponding object in other window + +do the same job as `[prefix] g' except it's done in other window. Note +that this function doesn't work on `begin/end', `%#BEGIN/%#END' pairs +because it is meaningless. + + + +File: yatexe, Node: Invoking image processor, Next: Jump to main file, Prev: Jump to corresponding object, Up: Cursor jump + +Invoking image processor +======================== + + +`image-including line' described above means such lines as +`\epsfile{file=foo.ps}'. If you type `[prefix] g' on that line, YaTeX +automatically searches source of `foo.ps' and invokes image viewer or +drawing tool correspoinding to it. For example; if you draw an image +foo.obj with Tgif and enclose its product named foo.eps by `\epsfile' +command. Typing `[prefix] g' on `\epsfile' line make YaTeX invoke `tgif +foo.obj'. How a processor is choosen is as follows. + + 1. If there is an expression matching with one of the pattern defined in + `YaTeX-processed-file-regexp-alist', extract file name from regexp + group surrounded by \\(\\). (Which group corresponds is written in + the cdr part of each list.) If no matches were found, do nothing. + 2. If there is a pattern as `%PROCESSOR' which is defined in the + variable `YaTeX-file-processor-alist', call that processor giving the + file name with corresponding extension. + 3. If not, check the existence of each file which is supplied the + extension in the cdr part of each list of + `YaTeX-file-processor-alist'. If any, call the corresponding image + viewer or drawing tool. + + + +File: yatexe, Node: Jump to main file, Next: Jumping around the environment, Prev: Invoking image processor, Up: Cursor jump + +Jump to main file +================= + + Typing + +`[prefix] ^' + ... visit main file +`[prefix] 4^' + ... visit main file in other buffer + +in a sub text switch the buffer to the main text specified by `%#!' +notation. + + + +File: yatexe, Node: Jumping around the environment, Next: Jumping to last completion position, Prev: Jump to main file, Up: Cursor jump + +Jumping around the environment +============================== + + And these are the functions which work on the current LaTeX environment: + +`M-C-a' + ... beginning of environment +`M-C-e' + ... `end' of environment +`M-C-@' + ... mark environment + + + +File: yatexe, Node: Jumping to last completion position, Prev: Jumping around the environment, Up: Cursor jump + +Jumping to last completion position +=================================== + +YaTeX always memorize the position of completion into register `3'. So +every time you make a trip to any other part of text other than you are +writing, you can return to the editing paragraph by calling +register-to-point with argument YaTeX-current-position-register, which is +achieved by typing `C-x j 3'(by default). + + + +File: yatexe, Node: Changing and Deleting, Next: Filling, Prev: Cursor jump, Up: Top + +Changing and Deleting +********************* + + These functions are for change or deletion of LaTeX commands already +entered. + +`[prefix] c' + ... change LaTeX command +`[prefix] k' + ... kill LaTeX command + +* Menu: + +* Changing LaTeX commands:: +* Killing LaTeX commands:: + + + +File: yatexe, Node: Changing LaTeX commands, Next: Killing LaTeX commands, Prev: Changing and Deleting, Up: Changing and Deleting + +Changing LaTeX commands +======================= + +`[prefix] c' can change the various (La)TeX commands. This can change the +followings. + * Environment names + * Section-type commands + * Argument of section-type commands + * Optional parameters (enclosed by []) of section-type commands + * Font/size designators + * Math-mode's maketitle-type commands that can be inputted with image + completion + + Typing `[prefix] c' on one of above objects you want to change brings a +suitable reading function sometimes with completion. Note: If you want to +change the argument of section-type command that contains other LaTeX +commands, type `[prefix] c' either of surrounding braces of the argument +in order to make YaTeX ignore the internal LaTeX sequences as an object of +changing. Anyway, it is very difficult to know which argument position +the cursor belongs because the LaTeX commands can be nested and braces can +freely emerge. So keep it mind to put the cursor on a brace when you are +thinking of changing a complicated argument. + + + +File: yatexe, Node: Killing LaTeX commands, Prev: Changing LaTeX commands, Up: Changing and Deleting + +Killing LaTeX commands +====================== + + `[prefix] k' kills the LaTeX commands sometimes with their arguments. +Following table illustrates the correspondence of the invoking position +and what is killed. + + [Invoking position] [action] + \begin, \end line kill \begin,\end pairs + %#BEGIN, %#END line kill %#BEGIN,%#END pairs + on a Section-type command kill section-type command + on a parenthesis kill parentheses + +Note that when killing `\begin, \end' or `%#BEGIN, %#END' pair, the lines +`\begin, \end' or `%#BEGIN, %#END' exist will be killed entirely. So take +care not to create any line that contains more than one `\begin' or so. + +While all operations above are to kill `containers' which surround some +text, universal argument (`C-u') for these commands kills not only +`containers' but also `contents' of them. See below as a sample. + + Original text: [prefix] k C-u [prefix] k + Main \footnote{note} here. Main note here. Main here. + ~(cursor) + + + +File: yatexe, Node: Filling, Next: Updation of includeonly, Prev: Changing and Deleting, Up: Top + +Filling +******* + + +Filling an item +=============== + + To fill a term (descriptive sentences) of `\item', type + +`M-q' + ... fill item + +on that item. + + YaTeX uses the value of the variable `YaTeX-item-regexp' as the regular +expression to search item header in itemize environment. If you make a +newcommand to itemize terms(e.g. `\underlineitem'), put + + (setq YaTeX-item-regexp + "\\(\\\\\\(sub\\)*item\\)\\|\\(\\\\underlineitem\\)") + +in your `~/.emacs'. If you are not familiar with regular expression for +Emacs-Lisp, name a newcommand for `itemize' beginning with `\item' such as +`\itembf', not `\bfitem'. + + This function reformats the `\item' into `hang-indented' style. For +example: + + itemize, enumerate environment: + > + >\item[foo] `foo' is the typical word for describing an + > arbitrarily written.... + description environment: + > \item[bar] When the word `for' is used as an arbitrarily + > word, `bar' is bound to follow it. + + Note that the indent depth of an `\item' word and its descriptive +paragraph are the same in latter case. If you want to use different +depth, invoke fill-paragraph at the beginning of non-whitespace +character(see below). + + +Filling paragraph +================= + + Fill-paragraph is little bit adapted for LaTeX sources. It retains from +filling in certain environments where formatting leads to a disaster such +as verbatim, tabular, or so. And it protects `\verb' expressions from +being folded (The variable `YaTeX-verb-regexp' controls this). Besides, +putting cursor on the first occurrence of non-whitespace character on a +line changes the fill-prefix temporarily to the depth of the line. + + + +File: yatexe, Node: Updation of includeonly, Next: What column, Prev: Filling, Up: Top + +Updation of `\includeonly' +************************** + + When you edit splitting source texts, the notation + + \includeonly{CurrentEditingFileName} + +in the main file reduces the time of typesetting. If you want to hack +other file a little however, you have to rewrite it to + + \includeonly{OtherFileNameYouWantToFix} + +in the main file. YaTeX automatically detects that the current edited +text is not in includeonly list and prompts you + + A)dd R)eplace %)comment? + +in the minibuffer. Type `a' if you want to add the current file name to +`\includeonly' list, `r' to replace \`includeonly' list with the current +file, and type `%' to comment out the `\includeonly' line. + + + +File: yatexe, Node: What column, Next: Intelligent newline, Prev: Updation of includeonly, Up: Top + +What column? +************ + + We are often get tired of finding the corresponding column in large +tabulars. For example, + + \begin{tabular}{|c|c|c|c|c|c|c|c|}\hline + Name&Position&Post No.&Addr.&Phone No.&FAX No.& + Home Addr.&Home Phone\\ \hline + Thunder Bird & 6 & 223 & LA & xxx-yyy & + zzz-www & Japan & 9876-54321 \\ + & 2 & \multicolumn{2}{c|}{Unknown} + &&&(???) + \\ \hline + \end{tabular} + +Suppose you have the cursor located at `(???)' mark, can you tell which +column it is belonging at once? Maybe no. In such case, type + +`[prefix] &' + ... What column + +in that position. YaTeX tells you the column header of the current field. +Since YaTeX assumes the first line of tabular environment as a row of +column headers, you can create a row of virtual column headers by putting +them in the first line and commenting that line with `%'. + + + +File: yatexe, Node: Intelligent newline, Next: Usepackage checker, Prev: What column, Up: Top + +Intelligent newline +******************* + + At the end of begin-type completion of tabular[*], array, itemize, +enumerate or tabbing environment, or typing + +`ESC RET' + ... Intelligent newline + +in these environments inserts the contents corresponding to the current +environment in the next line. (At the begin-type completion, this +contents can be removed by `undo'.) In `tabular' environment, for +example, `ESC RET' inserts the certain number of `&' and trailing `\\', +and `\hline' if other `\hline' is found in backward. Here are the list of +contents vs. environments. + + * `tabular', `tabular*', `array' + + Corresponding number of `&' and `\\'. And `\hline' if + needed. + + * `tabbing' + + The same number of `\>' as `\=' in the first line. + + * `itemize', `enumerate', `description', `list' + + `\item' or `item[]'. + + Note that since this function works seeing the contents of the first +line, please call this after the second line if possible. + + If you want to apply these trick to other environments, `foo' +environment for example, define the function named +`YaTeX-intelligent-newline-foo' to insert corresponding contents. That +function will be called at the beginning of the next line after the +newline is inserted to the current line. Since the function +`YaTeX-indent-line' is designed to indent the current line properly, +calling this function before your code to insert certain contents must be +useful. See the definition of the function +`YaTeX-intelligent-newline-itemize' as an example. + + + +File: yatexe, Node: Usepackage checker, Next: Online help, Prev: Intelligent newline, Up: Top + +Usepackage checker +****************** + +When you input begint-type, section-type, maketitle-type macros with +completion, and it requires some LaTeX2e package, YaTeX examines the +existence of correct `\usepackage'. If not, YaTeX inserts the +`\usepackage{}' declaration corresponding to input macro. + +To activate the package completion for your favarite package, set the +variable `YaTeX-package-alist-private' correctly. Please refere the value +of `YaTeX-package-alist-default' as an example. + + + +File: yatexe, Node: Online help, Next: Browsing file hierarchy, Prev: Usepackage checker, Up: Top + +Online help +*********** + + YaTeX provides you the online help with popular LaTeX commands. + + Here are the key strokes for the online help. + +`[prefix] ?' + ... Online help +`[prefix] /' + ... Online apropos + + +Online help +=========== + + `Online help' shows the documentation for the popular LaTeX +commands(defaults to the commands on the cursor) in the next buffer. +There are two help file, `global help' and `private help'. The former +file contains the descriptions on the standard LaTeX command and is +specified its name by variable `YaTeX-help-file'. Usually, the global +help file should be located in public space (`$EMACSEXECPATH' by default) +and should be world writable so that anyone can update it to enrich its +contents. The latter file contains descriptions on non-standard or +personal command definitions and is specified by +`YaTeX-help-file-private'. This file should be put into private +directory. + + +Online apropos +============== + + `Online apropos' is an equivalent of GNU Emacs's apropos. It shows all +the documentations that contains the keyword entered by the user. + + +When no descriptions are found... +================================= + + If there is no description on a command in help files, YaTeX requires +you to write a description on that command. If you are willing to do, +determine which help file to add and write the description on it referring +your manual of (La)TeX. Please send me your additional descriptions if +you describe the help on some standard commands. I might want to include +it in the next distribution. + + + +File: yatexe, Node: Browsing file hierarchy, Next: Cooperation with other packages, Prev: Online help, Up: Top + +Browsing file hierarchy +*********************** + + When you are editing multi-file source, typing + +`[prefix] d' + ... browse file hierarchy + +asks you the parent-most file (which may be defaulted) and displays the +documentation hierarchy in the next window. In this buffer, the following +commands are available. + +`n' + ... move to the next line and show its contents +`p' + ... move to the previous line and show its contents +`N' + ... move to the next file in the same inclusion level +`P' + ... move to the previous file in the same inclusion level +`j' + ... move to the next line +`k' + ... move to the previous line +`u' + ... move to the parent file +`.' + ... show the current files contents in the next window +`SPC' + ... scroll up the current file window +`DEL, b' + ... scroll down the current file window +`<' + ... show the beginning of the current file +`>' + ... show the end of the current file +`>' + ... return to the previous postion after `<' or `>' +`RET, g' + ... open the current file in the next window +`mouse-2' + ... same as RET(available only with window system) +`o' + ... other window +`1' + ... delete other windows +`-' + ... shrink hierarchy buffer window +`+' + ... enlarge hierarchy buffer window +`?' + ... describe mode +`q' + ... quit + + Note that operations on the file contents in the next window do not work +correctly when you close the corresponding file. + + + +File: yatexe, Node: Cooperation with other packages, Next: Customizations, Prev: Browsing file hierarchy, Up: Top + +Cooperation with other packages +******************************* + + YaTeX works better with other brilliant packages. + + +gmhist +====== + + When you are loading `gmhist.el' and `gmhist-mh.el', you can use +independent command history list at the prompt of preview command +(`[prefix] tp') and print command (`[prefix] tl'). On each prompt, you +can enter the previous command line string repeatedly by typing `M-p'. + + +min-out +======= + + `min-out', the outline minor mode, can be used in yatex-mode buffers. +If you want to use it with YaTeX, please refer the file `yatexm-o.el' as +an example. + + + +File: yatexe, Node: Customizations, Next: Etcetera, Prev: Cooperation with other packages, Up: Top + +Customizations +************** + + You can customize YaTeX by setting Emacs-Lisp variables and by making +add-in functions. + +* Menu: + +* Lisp variables:: +* Add-in functions:: +* Add-in generator:: + + + +File: yatexe, Node: Lisp variables, Next: Add-in functions, Prev: Customizations, Up: Customizations + +Lisp variables +============== + + You can change the key assignments or make completion more comfortable +by setting the values of various variables which control the movement of +yatex-mode. + + For example, if you want to change the prefix key stroke from `C-c' to +any other sequence, set YaTeX-prefix to whatever you want to use. If you +don't want to use the key sequence `C-c letter' which is assumed to be the +user reserved sequence in Emacs world, set `YaTeX-inhibit-prefix-letter' +to `t', and all of the default key bind of `C-c letter' will turn to the +corresponding `C-c C-letter' (but the region based completions that is +invoked with `C-c Capital-letter' remain valid, if you want to disable +those bindings, set that variable to 1 instead of `t'). + +* Menu: + +* All customizable variables:: +* Sample definitions:: +* Hook variables:: +* Hook file:: + + + +File: yatexe, Node: All customizable variables, Next: Sample definitions, Prev: Lisp variables, Up: Lisp variables + +All customizable variables +-------------------------- + + Here are the customizable variables of yatex-mode. Each value setq-ed +in `~/.emacs' is preferred and that of defined in `yatex.el' is neglected. +Parenthesized contents stands for the default value. When you are to +change some of these variables, see more detailed documentation of the +variable by `M-x describe-variable'. + + -- Variable: YaTeX-japan + Set this nil to produce all messages in English (`Depends on Japanese + feature of Emacs') + + -- Variable: YaTeX-kanji-code + Default buffer-file-coding-system for YaTeX modes' buffer. Set this + 0 to no language conversion. Nil to preserve original + coding-system. 1=Shift JIS, 2=JIS, 3=EUC, 4=UTF-8 (`1 or 2') + + -- Variable: YaTeX-prefix + Prefix key stroke (`C-c') + + -- Variable: YaTeX-inhibit-prefix-letter + Change key stroke from `C-c letter' to `C-c C-letter' (`nil') + + -- Variable: YaTeX-fill-prefix + Fill-prefix used in yatex-mode (`nil') + + -- Variable: YaTeX-user-completion-table + Name of user dictionary where learned completion table will be + stored. (`"~/.yatexrc"') + + -- Variable: tex-command + LaTeX typesetter command (`"latex"') + + -- Variable: dvi2-command + Preview command (`"xdvi -geo +0+0 -s 4"') + + -- Variable: dviprint-command-format + Command format to print dvi file (`"dvi2ps %f %t %s | lpr"') + + -- Variable: dviprint-from-format + Start page format of above %f. %b will turn to start page (`"-f %b"') + + -- Variable: dviprint-to-format + End page format of above %t. %e will turn to `end' page (`"-t %e"') + + -- Variable: makeindex-command + Default makeindex command (`"makeindex"' (`"makeind"' on MS-DOS)) + + -- Variable: YaTeX-dvipdf-command + Default command name to convert .dvi to PDF (`"dvipdfmx"') + + -- Variable: YaTeX-need-nonstop + Put `\nonstopmode{}' or not (`nil') + + -- Variable: latex-warning-regexp + Regular expression of warning message latex command puts out + (`"line.* [0-9]*"') + + -- Variable: latex-error-regexp + Regular expression of error message (`"l\\.[1-9][0-9]*"') + + -- Variable: latex-dos-emergency-message + Message latex command running on DOS puts at abort (`"Emergency + stop"') + + -- Variable: YaTeX-item-regexp + Regular expression of item command (`"\\\\item"') + + -- Variable: YaTeX-verb-regexp + Regexp of verb family. Omit \\\\. (`"verb\\*?\\|path"') + + -- Variable: YaTeX-nervous + T for using local dictionary (`t') + + -- Variable: YaTeX-sectioning-regexp + Regexp of LaTeX sectioning command + (`"\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"') + + -- Variable: YaTeX-fill-inhibit-environments + Inhibit fill in these environments (`'("tabular" "tabular*" "array" + "picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" + "verbatim" "verbatim*")') + + -- Variable: YaTeX-uncomment-once + T for deleting all preceding `%' (`nil') + + -- Variable: YaTeX-close-paren-always + T for always close all parenthesis automatically, `nil' for only eol + (`t') + + -- Variable: YaTeX-auto-math-mode + Switch math-mode automatically (`t') + + -- Variable: YaTeX-math-key-list-private + User defined alist, math-mode-prefix vs completion alist used in + image completion (`nil'). See `yatexmth.el' for the information + about how to define a completion alist. + + -- Variable: YaTeX-default-pop-window-height + Initial height of typesetting buffer when one-window. Number for the + lines of the buffer, numerical string for the percentage of the + screen-height. `nil' for half height (10) + + -- Variable: YaTeX-help-file + Global online help file name + (`$doc-directory/../../site-lisp/YATEXHLP.eng') + + -- Variable: YaTeX-help-file-private + Private online help file name (`"~/YATEXHLP.eng"') + + -- Variable: YaTeX-no-begend-shortcut + Disable [prefix] b ?? shortcut (`nil)' + + -- Variable: YaTeX-hilit-pattern-adjustment-private + List of the list that contain the regular expression and the symbol + of logical meaning of the string that matches the pattern. See also + the value from `(assq 'yatex-mode hilit-patterns-alist)' and the + value of `YaTeX-hilit-pattern-adjustment-default' (and even the + document of hilit19.el). + + -- Variable: YaTeX-sectioning-level + Alist of LaTeX's sectioning command vs its height. + + -- Variable: YaTeX-hierarchy-ignore-heading-regexp + `YaTeX-display-hierarchy' searches for sectioning command first, and + comment line secondary as a file headings. In latter case, ignore lines + that match with regular expression of this variable. Default value of + this variable is RCS header expressions and mode specifying line `-*- xxxx + -*'. + + -- Variable: YaTeX-skip-default-reader + Non-nil for this variable skips the default argument reader of + section-type command when add-in function for it is not defined + (`nil') + + -- Variable: YaTeX-create-file-prefix-g + When typing `prefix g' on the `\include' line, open the target file + even if the file doesn't exist (`nil') + + -- Variable: YaTeX-simple-messages + Simplyfy messages of various completions (`nil') + + -- Variable: YaTeX-hilit-sectioning-face + When hilit19 and yatex19 is active, YaTeX colors the sectioning + commands. This variable specifies the foreground and background + color of `\part' macro. The default value is `'(yellow/dodgerblue + yellow/slateblue)'. The first element of this list is for the screen + when `hilit-background-mode' is `'light', and the second element is + for `'dark'. You should specify both color as `forecolor/backcolor'. + + -- Variable: YaTeX-hilit-sectioning-attenuation-rate + When color mode, this variable specifies how much attenuate the color + density of `\subparagraph' compared with that of `\chapter' (`'(15 + 40)') See also `YaTeX-hilit-sectioning-face'. + + -- Variable: YaTeX-use-AMS-LaTeX + If you use AMS-LaTeX, set to `t' (`nil') + + -- Variable: YaTeX-use-LaTeX2e + If you use LaTeX2e, set to `t' (`t') + + -- Variable: YaTeX-template-file + File name which is automatically inserted at creation + (`~/work/template.tex') + + -- Variable: YaTeX-search-file-from-top-directory + Non-nil means to search input-files from the directory where main + file exists (`t') + + -- Variable: YaTeX-use-font-lock + Use font-lock to fontify buffer or not (`(featurep 'font-lock)' + + -- Variable: YaTeX-use-hilit19 + Use hilit19 to highlight buffer or not (`(featurep 'hilit19)' + + -- Variable: YaTeX-use-italic-bold + YaTeX tries to search italic, bold fontsets or not (`t' if Emacs-20 + or later). This variable is effective only when font-lock is used. + (`(featurep 'hilit19)' + + -- Variable: YaTeX-singlecmd-suffix + Suffix which is always inserted after maketitle-type macros. `"{}"' + is recommended. + + -- Variable: YaTeX-package-alist-private + Alist of LaTeX2e-package name vs. lists of macros in it. Set this + alist properly and YaTeX automatically check the declaratiion of + `usepackage' for corresponding macro, when you input that macro with + completion. If required `usepackage' is not found, YaTeX also + automatically inserts `\usepackage'. Alist is as follows; + '((PackageName1 (completionType ListOfMacro) (completionType + ListOfMacro)) (PackageName2 (completionType ListOfMacro) + (completionType ListOfMacro...))....) completionType is one of `env, + section, maketitle'. Consult the value of + `YaTeX-package-alist-default' as an example. + + -- Variable: YaTeX-tabular-indentation + At indentation by `C-i' in tabular or array environment, YaTeX put + the additional spaces to the normail indentation depth. The number + of additional spaces is the product of YaTeX-tabular-indentation and + the number of column position in tabular. + + -- Variable: YaTeX-noindent-env-regexp + Regexp of environment names that should begin with no indentation. + All verbatime-like environment name should match with. + + -- Variable: YaTeX-ref-default-label-string + Default \\ref time string format. This format is like strftime(3) + but allowed conversion char are as follows; %y -> Last 2 digit of + year, %b -> Month name, %m -> Monthe number(1-12), %d -> Day, %H -> + Hour, %M -> Minute, %S -> Second, %qx -> alphabetical-decimal + conversion of yymmdd. %qX -> alphabetical-decimal conversion of + HHMMSS. Beware defualt label-string should be always unique. So + this format string should have both time part (%H+%M+%S or %qX) and + date part (%y+(%b|%m)+%d or %qx). + + -- Variable: YaTeX-ref-generate-label-function + Function to generate default label string for unnamed \\label{}s. + The function pointed to this value should take two arguments. First + argument is LaTeX macro's name, second is macro's argument. Here is + an example for using this value. + (setq YaTeX-ref-generate-label-function 'my-yatex-generate-label) + (defun my-yatex-generate-label (command value) + (and (string= command "caption") + (re-search-backward "\\\\begin{\\(figure\\|table\\)}" nil t) + (setq command (match-string 1))) + (let ((alist '(("chapter" . "chap") + ("section" . "sec") + ("subsection" . "subsec") + ("figure" . "fig") + ("table" . "tbl")))) + (if (setq command (cdr (assoc command alist))) + (concat command ":" value) + (YaTeX::ref-generate-label nil nil)))) + + + + +File: yatexe, Node: Sample definitions, Next: Hook variables, Prev: All customizable variables, Up: Lisp variables + +Sample definitions +------------------ + + For instance, to change the prefix key stroke to `ESC', and name of the +user dictionary `~/src/emacs/yatexrc', and set `fill-prefix' to single TAB +character, add the following `setq' to `~/.emacs'. + + (setq YaTeX-prefix "\e" + YaTeX-user-completion-table "~/src/emacs/yatexrc" + YaTeX-fill-prefix " ") + + + +File: yatexe, Node: Hook variables, Next: Hook file, Prev: Sample definitions, Up: Lisp variables + +Hook variables +-------------- + + More customizations will be done by the hook-function defined in +hook-variable `yatex-mode-hook'. This is useful to define a shortcut key +sequence to enter some environments other than `document' and `enumerate' +etc. The following statement defines `[prefix] ba' to enter +`\begin{abstract}' ... `=end{abstract}' immediately. + + (setq yatex-mode-hook + '(lambda() (YaTeX-define-begend-key "ba" "abstract"))) + + You should use functions `YaTeX-define-key', or +`YaTeX-define-begend-key' to define all the key sequences of yatex-mode. + + + +File: yatexe, Node: Hook file, Prev: Hook variables, Up: Lisp variables + +Hook file +--------- + + You can stuff all of YaTeX related expressions into a file named +`yatexhks.el' if you have a lot of codes. YaTeX automatically load this +file at the initialization of itself. Using `yatexhks.el' makes +`yatex-mode-load-hook' unnecessary. + + + +File: yatexe, Node: Add-in functions, Next: Add-in generator, Prev: Lisp variables, Up: Customizations + +Add-in functions +================ + + You can easily define a function to input detailed arguments with +completion according to LaTeX environments or commands. + + +What is add-in functions? +------------------------- + + When you input `tabular' environment, don't you think "I want YaTeX to +complete its argument toward my favorite one such as `{|c|c|c|}'..."? +Yes, you can define the function to complete arguments for any environment +and any LaTeX commands. + + +Procedure +--------- + + Here is the procedure to define add-in functions. + 1. Define the function + 2. Put the function into `yatexhks.el' + +* Menu: + +* How the add-in function works:: +* How the function is called:: +* Useful functions for creating add-in:: +* Contribution:: + + + +File: yatexe, Node: How the add-in function works, Next: How the function is called, Prev: Add-in functions, Up: Add-in functions + +How the add-in function works +----------------------------- + +There are three types of add-in. + + 1. Option add-in + 2. argument add-in + 3. enclosing add-in + +"Option add-in" returns the LaTeX's optional parameters such as optional +strings after `\begin{ENV}', optional strings between a section-type +command and its first argument, and optional strings just after type +maketitle-type command. The following illustrates the name of add-in +functions, where underlined strings are generated by add-in functions. + + \begin{table}[ht] (Function name: YaTeX:table) + ~~~~ + \put(100,200){} (Function name: YaTeX:put) + ~~~~~~~~~ + \sum_{i=0}^{n} (Function name: YaTeX:sum) + ~~~~~~~~~~ + + Obviously, the function name is decided by concatenating the prefix +`YaTeX:' and LaTeX command's name. + + Another add-in type is "argument add-in", which completes arguments for +section-type commands. + + \newcommand{\foo}{bar} (Function name: YaTeX::newcommand) + ~~~~ ~~~ + + When the section-type command is inputted, the function named by +concatenating `YaTeX::' and section-type command, is called automatically +with an integer argument which indicates which argument of section-type +command is being read. Thus the add-in should determine the job referring +the value of its argument. + + "enclosing add-in" is for modifying and/or checking the region that will +be enclosed by section-type commands via `[prefix] S'. An enclosing +add-in function will be called with two arguments, beginning of the +enclosed region and end of the region. Suppose you want to enclose the +existing text `(a+b)/c' by `\frac{}'. + + a/c + | | + A B + +You do set-mark-command at point A and then move to point B. Typing +`[prefix] S' and input `frac' enclose the region like this; + + \frac{a/c} + +Normally, the expression `a/c' is translated to `\frac{a}{c}'. An +enclosing add-in is useful for modifying `/' to `}{'. + +* Menu: + +* Defining option-add-in:: +* Defining argument-add-in:: +* Defining enclosing-add-in:: + + + +File: yatexe, Node: Defining option-add-in, Next: Defining argument-add-in, Prev: How the add-in function works, Up: How the add-in function works + +Defining `option add-in' +........................ + + If you want `{|c|c|c|}' for all `tabular' environment, + + (defun YaTeX:tabular () + "{|c|c|c|}") + +is enough. If you want more complicated format, define as below. + + (defun YaTeX:tabular () + "{@{\\vrule width 1pt\\ }|||@{\\ \\vrule width 1pt}}") + +Note that the character `\' must be described as `\\' in Emacs-Lisp. The +next example reads the tabular format from keyboard. + (defun YaTeX:tabular () + (concat "{" (read-string "Rule: ") "}")) + + + +File: yatexe, Node: Defining argument-add-in, Next: Defining enclosing-add-in, Prev: Defining option-add-in, Up: How the add-in function works + +Defining `argument add-in' +.......................... + + This section describes how to define the add-in function for +`\newcommand'. + + The first argument of `\newcommand' begins always with `\'. The second +argument is usually so complex that we can not edit them in the +minibuffer. Here is the created function considering this. + + (defun YaTeX::newcommand (n) ;n is argument position + (cond + ((= n 1) ;1st argument is macro name + (read-string "Command: " "\\")) ;initial input `\' + ((= n 2) "") ;do nothing when reading arg#2 + (t nil))) + + Note that when the `argument add-in' function return `nil', normal +argument reader will be called. + + + +File: yatexe, Node: Defining enclosing-add-in, Prev: Defining argument-add-in, Up: How the add-in function works + +Defining `enclosing add-in' +........................... + + This section describes how to define the add-in function for text +enclosed by `\frac{}'. + + When enclosing the text `5/3' by `\frac{}', you might want to replace +`/' with `}{'. Enclosing function `YaTeX::frac-region' is called with two +arguments, beginning of enclosed text and end of enclosed text. The +function is expected to replace `/' with `}{'. Here is an example +expression. + + (defun YaTeX::frac-region (beg end) + (catch 'done + (while (search-forward "/" end t) + (goto-char (match-beginning 0)) + (if (y-or-n-p "Replace this slash(/) with `}{'") + (throw 'done (replace-match "}{"))) + (goto-char (match-end 0))))) + + + +File: yatexe, Node: How the function is called, Next: Useful functions for creating add-in, Prev: How the add-in function works, Up: Add-in functions + +How the function is called +-------------------------- + + YaTeX calls the add-in functions for specified begin-type, section-type, +and maketitle-type command, if any. `Option add-in' functions for +begin-type are called when `\begin{ENV}' has been inserted, functions for +section-type are called just before input of the first argument, and +functions for maketitle-type is called after maketitle-type command has +been inserted. `Argument add-in' functions are called at each entry of +arguments for section-type commands. + + + +File: yatexe, Node: Useful functions for creating add-in, Next: Contribution, Prev: How the function is called, Up: Add-in functions + +Useful functions for creating add-in +------------------------------------ + + Many add-in functions for typical LaTeX commands are defined in +`yatexadd.el'. Those are also useful as references. Here are the short +descriptions on useful functions, where [F] means function, [A] means +arguments, [D] means description. + +`[F]' + YaTeX:read-position +`[A]' + Character list which can show up in the brackets +`[D]' + Return the location specifier such as `[htb]'. When nothing is + entered, omit [] itself. If the possible characters are "htbp", call + this function as `(YaTeX:read-position "htbp")' + +`[F]' + YaTeX:read-coordinates +`[A]' + Base prompt, X-axis prompt, Y-axis prompt (each optional) +`[D]' + Read the coordinates with the prompt "BasePrompt X-axisPrompt:" for + X-axis, "BasePrompt Y-axisPrompt:" for Y-axis, and return it in the + form of "(X,Y)". The default prompts are `Dimension', `X', `Y' + respectively. + +`[F]' + YaTeX:check-completion-type +`[A]' + One of the symbols: 'begin, 'section, or 'maketitle +`[D]' + Check the current completion type is specified one and cause error + if not. The variable `YaTeX-current-completion-type' holds the symbol + according to the current completion type. + + + +File: yatexe, Node: Contribution, Prev: Useful functions for creating add-in, Up: Add-in functions + +Contribution +------------ + + If you make your own pretty function and you let it be in public, please +send me the function. I'm going to include it in the next release. + + + +File: yatexe, Node: Add-in generator, Prev: Add-in functions, Up: Customizations + +Add-in generator +================ + + First, don't forget to read the section of add-in functions *Note Add-in +functions::. If you easily understand how to define them, there's no need +to read this section. But being not familiar with Emacs-Lisp, when you +don't have clear idea what to do, this section describes how to get YaTeX +make add-in function. + + There are two methods of generation. One is for fully interactive +generator for beginners and another requires little knowledge of +Emacs-Lisp. + + +Generator for beginners +----------------------- + The former generator is called by + `M-x YaTeX-generate' + +strokes. All you have to do is follow the guidances. Defying them may +cases the disaster (I wonder what is it???). So when you make some +mistake, it is recommendable to type `C-g' and start afresh. + + +Simple generator +---------------- + + The latter generator is invoked by the next sequence. `M-x +YaTeX-generate-simple' This generator can make both "option add-in" and +"argument add-in" (*refer the section add-in functions* *Note How the +add-in function works::), whereas `YaTeX-generate' cannot make "argument +addin". + + For example, assume you have the LaTeX command as follows. + + \epsinput[t](250,50){hoge.eps}{plain}{Picture of foo} + (A) (B) (1) (2) (3) + (A)Optional parameter to specify the position + One of t(top), b(bottom), l(left), r(right) + (B)Maximum size of frame + (1)1st argument is filename of EPS file + (2)2nd argument indicates + plain do nothing + frame make frame around image + dframe make double-frame around image + for included EPS file. + (3)Caption for the picture + + Now get start with generation. Typing `M-x YaTeX-generate-simple' +brings the prompt: + (O)ption? (A)rgument? + + +Generating "option add-in" +.......................... + + Since (A), (B) above are optional argument, all we have to do to +complete them is define the option add-in for them. Let's generate the +function to complete (A). + + M-x YaTeX-generate-simple RET + epsinput RET + o + +Typing as above leads the next prompt. + + Read type(1): (S)tring (C)omplete (F)ile ([)option (P)osition co(O)rd. (q)uit + + This asks that "Which type is the completion style of 1st argument?". +Here are the possible completion style. + +`String' + read plain string +`Complete' + read with completion +`File' + read file name +`Option' + read optional string (if string omitted, omit [] too) +`Position' + read positional option (like [htbp]) +`Coord.' + read coordinates +`Quit' + quit from generating + + Since (A) is the optional argument to specify the location of included +EPS file, the completion style is `Position', and the possible characters +are t, b, l, and r. To tell these information to generator, operate as +follows. + + Read type(1).... p + Acceptable characters: tblr RET + + (B) is coordinate. So its completion style is coOrd. We want a prompt +meaning "Maximum size" when completion. + + Read type(2).... o + Prompt for coordinates: Max size RET + + That's all for optional argument. Select quit. + + Read type(3).... q + + Then the generated option add-in function for \epsinput will be shown in +the next window. + + +Generating "argument add-in" +............................ + + Next, create the argument add-in. The arguments for \epsinput are EPS +file name, framing style, and caption string in sequence. + + M-x YaTeX-generate-simple RET + epsinput RET + a + + Above key strokes bring the prompt that asks the number of argument. +Answer it with 3. + + How many arguments?: 3 RET + + Then the generator asks the completion style and prompt for completion. +Answer them. `f' for FileName and prompt string. + + Read type(1).... f + Prompt for argument#1 EPS file name RET + + The second argument is one of selected symbol. So the completion type +is `Completion'. + + Read type(2).... c + Prompt for argument#2 Include style RET + + Then all the candidates ready to be read. Type single RET after +entering all. + + Item[1](RET to exit): plain RET + Item[2](RET to exit): frame RET + Item[3](RET to exit): dframe RET + Item[4](RET to exit): RET + + The following prompt asks whether the entered string must belong to +candidates or not. In this case, since the argument must be one of +`plain', `frame', and `dframe', type `y'. + + Require match? (y or n) y + + The last argument is the caption string for which any completion is +needed. + + Read type(3).... s + Prompt for argument#3 Caption RET + default: Figure of RET + + Finally we'll get the argument add-in in the next window. + + +Contribution +------------ + + If you get your own pretty function and you let it be in public, please +steel yourself in the happy atmosphere and do not send me the function. I +do know it is not fine because it is generated by yatexgen:-p. + + + +File: yatexe, Node: Etcetera, Next: Copying, Prev: Customizations, Up: Top + +Etcetera +******** + + The standard completion tables provided in `yatex.el' contain a few +LaTeX commands I frequently use. This is to lessen the key strokes to +complete entire word, because too many candidates rarely used often cause +too many hits. Therefore always try to use completion in order to enrich +your dictionary, and you will also find `Wild Bird' growing suitable for +your LaTeX style. + + The package name `Wild Bird' is the English translation of Japanese +title `Yachou', which is a trick on words of Japanese. + + + +File: yatexe, Node: Copying, Prev: Etcetera, Up: Top + +Copying +******* + + This program is distributed as a free software. You can +use/copy/modify/redistribute this software freely but with NO warranty to +anything as a result of using this software. Adopting code from this +program is also free. But I would not do contract act. + +Any reports and suggestions are welcome as long as I feel interests in +this software. My possible e-mail address is `yuuji@yatex.org'. (as of +Jan.2004) And there is mailing list for YaTeX. Although the common +language is Japanese, questions in English will be welcome. To join the +ML, send the mail whose subject is `append' to the address +`yatex@yatex.org. If you have some question, please ask to +`yatex-admin@yatex.org'. + + The specification of this software will be surely modified (depending on +my feelings) without notice :-p. + + + HIROSE Yuuji + +Tag table: +Node: Top149 +Node: What is YaTeX?1490 +Node: Main features1863 +Node: Installation3392 +Node: Typesetting4169 +Node: Calling typesetter5299 +Node: Calling previewer7503 +Node: Printing out7864 +Node: %#notation8156 +Node: Changing typesetter8574 +Node: Splitting input files8938 +Node: Static region for typesetting10363 +Node: Lpr format11492 +Node: Controlling which command to invoke12565 +Node: Editing %# notation13158 +Node: Completion13702 +Node: Begin-type completion14262 +Node: Section-type completion17305 +Node: view-sectioning19740 +Node: Large-type completion21320 +Node: Maketitle-type completion22051 +Node: Arbitrary completion22603 +Node: End completion22993 +Node: Accent completion23463 +Node: Image completion24080 +Node: Greek letters completion26337 +Node: Local dictionaries27064 +Node: Commenting out28001 +Node: Cursor jump29460 +Node: Jump to corresponding object29772 +Node: Invoking image processor31173 +Node: Jump to main file32516 +Node: Jumping around the environment32881 +Node: Jumping to last completion position33299 +Node: Changing and Deleting33808 +Node: Changing LaTeX commands34200 +Node: Killing LaTeX commands35377 +Node: Filling36562 +Node: Updation of includeonly38413 +Node: What column39210 +Node: Intelligent newline40295 +Node: Usepackage checker41949 +Node: Online help42540 +Node: Browsing file hierarchy44215 +Node: Cooperation with other packages45952 +Node: Customizations46657 +Node: Lisp variables46991 +Node: All customizable variables47995 +Node: Sample definitions57794 +Node: Hook variables58307 +Node: Hook file59011 +Node: Add-in functions59350 +Node: How the add-in function works60210 +Node: Defining option-add-in62409 +Node: Defining argument-add-in63131 +Node: Defining enclosing-add-in64013 +Node: How the function is called64867 +Node: Useful functions for creating add-in65543 +Node: Contribution66948 +Node: Add-in generator67222 +Node: Etcetera72594 +Node: Copying73199 + +End tag table diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yatexe.tex --- a/docs/yatexe.tex Thu May 10 11:10:13 2012 +0900 +++ b/docs/yatexe.tex Thu May 10 11:40:02 2012 +0900 @@ -5,7 +5,7 @@ @iftex @c @syncodeindex fn cp -@c Last modified Sun Apr 15 22:51:34 2012 on firestorm +@c Last modified Thu May 10 11:12:44 2012 on firestorm @syncodeindex vr cp @end iftex @@ -15,7 +15,7 @@ @subtitle Yet Another tex-mode for emacs @title Wild Bird @subtitle // YaTeX // -@author @copyright{} 1991-2003 by HIROSE, Yuuji [yuuji@@yatex.org] +@author @copyright{} 1991-2012 by HIROSE, Yuuji [yuuji@@yatex.org] @end titlepage @node Top, What is YaTeX?, (dir), (dir) diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yatexj --- a/docs/yatexj Thu May 10 11:10:13 2012 +0900 +++ b/docs/yatexj Thu May 10 11:40:02 2012 +0900 @@ -1,7 +1,7 @@ Info file: yatexj, -*-Text-*- produced by `texinfo-format-buffer' from file `yatexj.tex' -using `texinfmt.el' version 2.42 of 7 Jul 2006. +using `texinfmt.el' version 2.38 of 3 July 1998. @@ -45,11 +45,11 @@ ‚Í‚¶‚ß‚É ******** - –ì’¹‚ÍAGNU Emacs ‚Å LaTeX —p‚Ì•¶‘‚ð쬂·‚鎞‚É pLaTeX ‚Ȃǂ̃^ƒCƒv -ƒZƒbƒgƒRƒ}ƒ“ƒh‚âAƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ð Emacs •ÒW‰æ–Ê’†‚©‚çs‚¦‚é‚悤‚É -‚·‚é‚Æ‹¤‚ÉAŠg’£«‚Ì‚‚¢ŽíX‚̕⊮‹@”\‚É‚æ‚èƒ\[ƒXƒeƒLƒXƒg‚Ì•ÒW‚ðŽx‰‡ -‚µ‚Ü‚·B‚³‚ç‚É LaTeX ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv‚É‚æ‚èƒ}ƒjƒ…ƒAƒ‹‚𒲂ׂé -ŽèŠÔ‚ðŒyŒ¸‚µ‚Ü‚·B + –ì’¹‚ÍAGNU Emacs ‚Å LaTeX —p‚Ì•¶‘‚ð쬂·‚鎞‚É pLaTeX ‚Ȃǂ̃^ƒCƒvƒZƒb +ƒgƒRƒ}ƒ“ƒh‚âAƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ð Emacs •ÒW‰æ–Ê’†‚©‚çs‚¦‚é‚悤‚É‚·‚é‚Æ +‹¤‚ÉAŠg’£«‚Ì‚‚¢ŽíX‚̕⊮‹@”\‚É‚æ‚èƒ\[ƒXƒeƒLƒXƒg‚Ì•ÒW‚ðŽx‰‡‚µ‚Ü‚·B‚³ +‚ç‚É LaTeX ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv‚É‚æ‚èƒ}ƒjƒ…ƒAƒ‹‚𒲂ׂéŽèŠÔ‚ðŒyŒ¸‚µ +‚Ü‚·B English manual *Note Top: (yatexe)Top. @@ -69,24 +69,23 @@ * sectionŒ^ƒRƒ}ƒ“ƒh - `\section{ƒ^ƒCƒgƒ‹}'‚â`\mbox{“à—e}'‚̂悤‚Ɉø”‚ðŽæ‚éLaTeXƒRƒ}ƒ“ƒh - ‚ðŽw‚µ‚Ü‚·B + `\section{ƒ^ƒCƒgƒ‹}'‚â`\mbox{“à—e}'‚̂悤‚Ɉø”‚ðŽæ‚éLaTeXƒRƒ}ƒ“ƒh‚ð + Žw‚µ‚Ü‚·B * maketitleŒ^ƒRƒ}ƒ“ƒh - `\maketitle'‚â`\tableofcontents'‚̂悤‚Ɉø”‚ðŽæ‚ç‚È‚¢LaTeXƒRƒ}ƒ“ - ƒh‚ðŽw‚µ‚Ü‚·B + `\maketitle'‚â`\tableofcontents'‚̂悤‚Ɉø”‚ðŽæ‚ç‚È‚¢LaTeXƒRƒ}ƒ“ƒh‚ð + Žw‚µ‚Ü‚·B * largeŒ^ƒRƒ}ƒ“ƒh - `{\large ...}' ‚â `{\tt ...}' ‚̂悤‚ȃtƒHƒ“ƒg/ƒTƒCƒYŽw’èŽq‚ðŽw‚µ - ‚Ü‚·B + `{\large ...}' ‚â `{\tt ...}' ‚̂悤‚ȃtƒHƒ“ƒg/ƒTƒCƒYŽw’èŽq‚ðŽw‚µ‚Ü‚·B * `[prefix]' - –ì’¹‚Ì‹@”\‚ðŒÄ‚Ño‚·‚½‚߂̃vƒŠƒtƒBƒNƒXƒL[BƒfƒtƒHƒ‹ƒg‚Å‚Í`C-c'‚É - Š„‚è“–‚Ä‚ç‚ê‚Ä‚¢‚é‚Ì‚ÅA“Á‚É•ÏX‚µ‚Ä‚¢‚È‚¢ê‡–{ƒ}ƒjƒ…ƒAƒ‹‚Ì - `[prefix]' ‚Æ‚¢‚¤•\‹L‚ÍA`C-c' ‚Æ“Ç‚ÝŠ·‚¦‚Ä‚­‚¾‚³‚¢B + –ì’¹‚Ì‹@”\‚ðŒÄ‚Ño‚·‚½‚߂̃vƒŠƒtƒBƒNƒXƒL[BƒfƒtƒHƒ‹ƒg‚Å‚Í`C-c'‚ÉŠ„‚è + “–‚Ä‚ç‚ê‚Ä‚¢‚é‚Ì‚ÅA“Á‚É•ÏX‚µ‚Ä‚¢‚È‚¢ê‡–{ƒ}ƒjƒ…ƒAƒ‹‚Ì `[prefix]' + ‚Æ‚¢‚¤•\‹L‚ÍA`C-c' ‚Æ“Ç‚ÝŠ·‚¦‚Ä‚­‚¾‚³‚¢B  @@ -99,27 +98,25 @@ * ƒJ[ƒ\ƒ‹ˆÊ’u‚É‚æ‚ç‚È‚¢ŒÅ’胊ƒWƒ‡ƒ“‚Ì•”•ªƒ^ƒCƒvƒZƒbƒg * \includeonly‚̃ƒ“ƒ^ƒbƒ`XV * ƒGƒ‰[‰ÓŠ‚Ö‚ÌŽ©“®ƒWƒƒƒ“ƒv(`C-c '') - * `\begin{}, \end{}, \section...' ‚È‚Ç‚Ì LaTeXƒRƒ}ƒ“ƒh‚̕⊮“ü—Í - (`C-c b', `C-c s', `C-c l', `C-c m') - * Šù‚É“ü—Í‚µ‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚âƒRƒ}ƒ“ƒhˆø”‚Ì’†‚ÉŽæ‚èž‚ÞŠ‡‚è•âŠ® - (`C-u' +’Êí•âŠ®ƒL[) + * `\begin{}, \end{}, \section...' ‚È‚Ç‚Ì LaTeX ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í(`C-c + b', `C-c s', `C-c l', `C-c m') + * Šù‚É“ü—Í‚µ‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚âƒRƒ}ƒ“ƒhˆø”‚Ì’†‚ÉŽæ‚èž‚ÞŠ‡‚è•âŠ®(`C-u' + +’Êí•âŠ®ƒL[) * ƒZƒNƒVƒ‡ƒ“‹æØ‚è“ü—ÍŽž‚Ì•¶‘\‘¢ƒAƒEƒgƒ‰ƒCƒ“•\Ž¦ * ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚̈ꊇƒVƒtƒg (*Note view-sectioning::) * •âŠ®Ž«‘‚ÌŠwK * LaTeX ‚̊‹«‚âƒRƒ}ƒ“ƒh‚ɉž‚¶‚½ƒKƒCƒh•t‚«ˆø”“ü—Í * –ì’¹‚É‚È‚¢ƒKƒCƒh•t‚«ˆø”“ü—ÍŠÖ”‚ÌŽ©“®¶¬(`yatexgen.el') * LaTeX ƒRƒ}ƒ“ƒh‚Ìíœ/•ÏX(`C-c k', `C-c c') - * ƒtƒ@ƒCƒ‹ŠÔA`\begin'<->`\end'ŠÔA - `\ref'<->`\label'ŠÔA - `\cite'<->`\bibitem'ƒWƒƒƒ“ƒv(`C-c g') - * ˆêŠ‡ƒRƒƒ“ƒgƒAƒEƒg/ƒAƒ“ƒRƒƒ“ƒgƒAƒEƒg(`C-c >', `C-c <', `C-c ,', - `C-c .') + * ƒtƒ@ƒCƒ‹ŠÔA`\begin'<->`\end'ŠÔA`\ref'<->`\label'ŠÔA + `\cite'<->`\bibitem'ƒWƒƒƒ“ƒv(`C-c g') + * ˆêŠ‡ƒRƒƒ“ƒgƒAƒEƒg/ƒAƒ“ƒRƒƒ“ƒgƒAƒEƒg(`C-c >', `C-c <', `C-c ,', `C-c + .') * ƒAƒNƒZƒ“ƒg‹L†/”Ž®ŠÂ‹«—pƒRƒ}ƒ“ƒh/ƒMƒŠƒVƒƒ•¶Žš‚Ì“ü—ÍŽx‰‡(`C-c a', `;', `/') * tabular/arrayŠÂ‹«‚̃Jƒ‰ƒ€ˆÊ’uƒKƒCƒh * •W€“I LaTeX ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv(`C-c ?', `C-c /') - * ƒhƒLƒ…ƒƒ“ƒg‚̃Cƒ“ƒNƒ‹[ƒh\‘¢‚ÌŽ‹Šo“I•\Ž¦‚ƃoƒbƒtƒ@Ø‚è‘Ö‚¦(`C-c - d') + * ƒhƒLƒ…ƒƒ“ƒg‚̃Cƒ“ƒNƒ‹[ƒh\‘¢‚ÌŽ‹Šo“I•\Ž¦‚ƃoƒbƒtƒ@Ø‚è‘Ö‚¦(`C-c d') * •âŠ®“ü—Í‚µ‚½ƒ}ƒNƒ‚ɉž‚¶‚Ä•K—v‚È \userpackage ‚ð“ü‚ê‚Ä‚­‚ê‚éæ‰ñ‚è userpackage * \label‚ð‘ł‚±‚Æ‚Í‚à‚¤–Y‚ê‚悤! ref‚âcite•âŠ®“ü—Í‚ÅŽ©“®¶¬‚µ‚Ü‚· @@ -140,31 +137,31 @@ (cons (cons "\\.tex$" 'yatex-mode) auto-mode-alist)) (autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) -ŽŸ‚É–ì’¹‚Ì emacs-lisp ƒtƒ@ƒCƒ‹ŒQ‚ð’u‚­ƒfƒBƒŒƒNƒgƒŠ‚ð load-path ‚ɉÁ‚¦‚Ü -‚·B‚½‚Æ‚¦‚ÎA `~/src/emacs/yatex'‚É’u‚­‚Ì‚Å‚ ‚ê‚ÎA +ŽŸ‚É–ì’¹‚Ì emacs-lisp ƒtƒ@ƒCƒ‹ŒQ‚ð’u‚­ƒfƒBƒŒƒNƒgƒŠ‚ð load-path ‚ɉÁ‚¦‚Ü‚·B +‚½‚Æ‚¦‚ÎA `~/src/emacs/yatex'‚É’u‚­‚Ì‚Å‚ ‚ê‚ÎA (setq load-path (cons (expand-file-name "~/src/emacs/yatex") load-path)) ‚È‚Ç‚Æ‚µ‚Ü‚·B - ˆÈã‚ÌÝ’è‚É‚æ‚èAŠg’£Žq‚ª .tex ‚Å‚ ‚éƒtƒ@ƒCƒ‹‚ð•ÒW‚·‚é‚ÆŽ©“®“I‚É–ì -’¹‚ªƒ[ƒh‚³‚ê‚Ü‚·B–ì’¹‚ª³í‚É‹N“®‚Å‚«‚½‚Æ‚«‚̓‚[ƒhƒ‰ƒCƒ“‚Ì•\Ž¦‚ª -u‚â‚Ä‚Óv‚É•Ï‚í‚è‚Ü‚·B + ˆÈã‚ÌÝ’è‚É‚æ‚èAŠg’£Žq‚ª .tex ‚Å‚ ‚éƒtƒ@ƒCƒ‹‚ð•ÒW‚·‚é‚ÆŽ©“®“I‚É–ì’¹‚ª +ƒ[ƒh‚³‚ê‚Ü‚·B–ì’¹‚ª³í‚É‹N“®‚Å‚«‚½‚Æ‚«‚̓‚[ƒhƒ‰ƒCƒ“‚Ì•\Ž¦‚ªu‚â‚Ä‚Óv +‚É•Ï‚í‚è‚Ü‚·B ƒ^ƒCƒvƒZƒbƒ^/ƒvƒŒƒ”ƒ…[ƒAŠÂ‹«‚ÌÝ’è =================================== - —˜—p‚·‚éŠO•”ƒvƒƒOƒ‰ƒ€‚ÉŠÖ‚·‚éˆÈ‰º‚Ì•Ï”‚ðŠm”F‚µA•K—v‚Ȃ糂µ‚¢’l‚É -•ÏX‚µ‚Ü‚·B + —˜—p‚·‚éŠO•”ƒvƒƒOƒ‰ƒ€‚ÉŠÖ‚·‚éˆÈ‰º‚Ì•Ï”‚ðŠm”F‚µA•K—v‚Ȃ糂µ‚¢’l‚É•ÏX +‚µ‚Ü‚·B `tex-command' ... ‹N“®‚·‚éƒ^ƒCƒvƒZƒbƒ^‚̃Rƒ}ƒ“ƒh–¼ `dvi2-command' ... ‹N“®‚·‚éƒvƒŒƒ”ƒ…[ƒA‚̃Rƒ}ƒ“ƒh–¼ `NTT-jTeX' - ... ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä - ‚µ‚Ü‚¤‚Ì‚ð—}§‚·‚éꇂÉt‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì - “I‚É‚ÍAfill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É%‚ð•t‰Á‚·‚é‚悤‚É‚È‚éB + ... ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü + ‚¤‚Ì‚ð—}§‚·‚éꇂÉt‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì“I‚É‚ÍA + fill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É%‚ð•t‰Á‚·‚é‚悤‚É‚È‚éB `YaTeX-kanji-code' ... •¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒh `dviprint-command-format' @@ -172,10 +169,9 @@ `makeindex-command' ... makeindexƒRƒ}ƒ“ƒh -‚±‚ê‚ç‚ð•ÏX‚·‚éꇂÍA‚â‚Í‚è`~/.emacs'‚É‚ÄA‚½‚Æ‚¦‚Î - (setq tex-command "pdflatex") -‚̂悤‚É‚µ‚Ä‚­‚¾‚³‚¢B‚ǂ̂悤‚È’l‚ðƒZƒbƒg‚·‚ê‚Ηǂ¢‚©‚ɂ‚¢‚Ä‚ÍA -*Note All customizable variables::‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B +‚±‚ê‚ç‚ð•ÏX‚·‚éꇂÍA‚â‚Í‚è`~/.emacs'‚É‚ÄA‚½‚Æ‚¦‚Î(setq tex-command +"pdflatex") ‚̂悤‚É‚µ‚Ä‚­‚¾‚³‚¢B‚ǂ̂悤‚È’l‚ðƒZƒbƒg‚·‚ê‚Ηǂ¢‚©‚ɂ‚¢‚Ä +‚ÍA*Note All customizable variables::‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B @@ -185,16 +181,16 @@ latexƒRƒ}ƒ“ƒh‹N“® ***************** -LaTeXƒ\[ƒX‚Ì•ÒW’†AŽŸ‚̃L[“ü—Í‚É‚æ‚èAplatex ‚Ȃǂ̃^ƒCƒvƒZƒbƒgƒvƒ -ƒOƒ‰ƒ€(ˆÈŒãƒ^ƒCƒvƒZƒbƒ^‚ƌĂÔ)AƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B +LaTeXƒ\[ƒX‚Ì•ÒW’†AŽŸ‚̃L[“ü—Í‚É‚æ‚èAplatex ‚Ȃǂ̃^ƒCƒvƒZƒbƒgƒvƒƒOƒ‰ +ƒ€(ˆÈŒãƒ^ƒCƒvƒZƒbƒ^‚ƌĂÔ)AƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B `[prefix] t j' ... ƒ^ƒCƒvƒZƒbƒ^(platex)‹N“® `[prefix] t r' ... ƒ^ƒCƒvƒZƒbƒ^‹N“®(—̈æŽw’è) `[prefix] t e' - ... ƒ^ƒCƒvƒZƒbƒ^‹N“®(ƒ|ƒCƒ“ƒgˆÊ’u‚̊‹«‚Ü‚½‚Í”Ž®ƒ‚[ƒh‚Ì - ‚Ý‘ÎÛ) + ... ƒ^ƒCƒvƒZƒbƒ^‹N“®(ƒ|ƒCƒ“ƒgˆÊ’u‚̊‹«‚Ü‚½‚Í”Ž®ƒ‚[ƒh‚Ì‚Ý‘Î + Û) `[prefix] t k' ... “®ì’†‚̃^ƒCƒvƒZƒbƒ^‚Ì’âŽ~ `[prefix] t b' @@ -202,7 +198,7 @@ `[prefix] t i' ... makeindex‹N“® `[prefix] t d' - ... ƒ^ƒCƒvƒZƒbƒgŠ®—¹Œãdvipdfmx‹N“® + ... ƒ^ƒCƒvƒZƒbƒgŠ®—¹Œãdvipdfmx‹N“® `[prefix] t p' ... ƒvƒŒƒ”ƒ…[ƒA‹N“® `[prefix] t l' @@ -223,49 +219,49 @@ ƒ^ƒCƒvƒZƒbƒ^‹N“® ================ - ƒ^ƒCƒvƒZƒbƒ^‚ð‹N“®‚·‚é‚ÆA•ÒWƒEƒBƒ“ƒhƒE‚ª2‚‚ɕªŠ„‚³‚êA•Ð•û‚̃EƒBƒ“ -ƒhƒE‚Ƀ^ƒCƒvƒZƒbƒg‰æ–Ê‚ª•\Ž¦‚³‚ê‚Ü‚·Bo—Í‚³‚ê‚郃bƒZ[ƒW‚ƘA“®‚µƒ^ƒC -ƒvƒZƒbƒgƒoƒbƒtƒ@‚ÍŽ©“®“I‚ɃXƒNƒ[ƒ‹‚µ‚Ü‚·B‚à‚µA“r’†‚ŃGƒ‰[‚ª‹N‚±‚Á -‚ÄŽ~‚Ü‚Á‚Ä‚µ‚Ü‚Á‚½ê‡‚ɂ̓^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ɈڂèA(`C-x o') ƒ^ƒCƒv -ƒZƒbƒ^‚Ìo‚µ‚Ä‚¢‚é ? ƒvƒƒ“ƒvƒg‚ɑ΂µ‚ÄA`x' (ˆ—‚Ì’†’f)‚È‚Ç‚ÌŽwŽ¦‚ð‘— -‚邱‚Æ‚ª‚Å‚«‚Ü‚·BƒGƒ‰[‚ðC³‚·‚éꇂÍA + ƒ^ƒCƒvƒZƒbƒ^‚ð‹N“®‚·‚é‚ÆA•ÒWƒEƒBƒ“ƒhƒE‚ª2‚‚ɕªŠ„‚³‚êA•Ð•û‚̃EƒBƒ“ƒh +ƒE‚Ƀ^ƒCƒvƒZƒbƒg‰æ–Ê‚ª•\Ž¦‚³‚ê‚Ü‚·Bo—Í‚³‚ê‚郃bƒZ[ƒW‚ƘA“®‚µƒ^ƒCƒvƒZƒb +ƒgƒoƒbƒtƒ@‚ÍŽ©“®“I‚ɃXƒNƒ[ƒ‹‚µ‚Ü‚·B‚à‚µA“r’†‚ŃGƒ‰[‚ª‹N‚±‚Á‚ÄŽ~‚Ü‚Á‚Ä +‚µ‚Ü‚Á‚½ê‡‚ɂ̓^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ɈڂèA(`C-x o') ƒ^ƒCƒvƒZƒbƒ^‚Ìo‚µ‚Ä +‚¢‚é ? ƒvƒƒ“ƒvƒg‚ɑ΂µ‚ÄA`x' (ˆ—‚Ì’†’f)‚È‚Ç‚ÌŽwŽ¦‚𑗂邱‚Æ‚ª‚Å‚«‚Ü‚·B +ƒGƒ‰[‚ðC³‚·‚éꇂÍA `[prefix] '' `(prefix+ƒAƒ|ƒXƒgƒƒtƒB)' ... ’¼‘O‚̃Gƒ‰[”­¶s‚ÖƒWƒƒƒ“ƒv -‚ð“ü—Í‚·‚邱‚Æ‚É‚æ‚èAƒ^ƒCƒvƒZƒbƒ^‚ªƒGƒ‰[‚ð”­¶‚µ‚½s‚Ɉڂ邱‚Æ‚ª‚Å‚« -‚Ü‚·B‚Ü‚½Aƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚é overfull hbox ‚Ȃǂ̃EƒH[ƒjƒ“ƒOs‚É -‚à‘Ήž‚µ‚Ä‚¢‚Ü‚·‚Ì‚ÅA‡ŽŸ `[prefix] '' ‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAˆê‚‘O‚̃EƒH[ -ƒjƒ“ƒO”­¶s‚ɃWƒƒƒ“ƒv‚µ‚Ä‚¢‚«‚Ü‚·B - - ‚à‚µA‹C‚É‚È‚éƒGƒ‰[s‚ª‚ ‚Á‚½ê‡‚ÍAƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ÅAƒGƒ‰[ -‚Ì•\Ž¦‚³‚ê‚Ä‚¢‚és‚ɃJ[ƒ\ƒ‹‚ð‡‚킹ƒXƒy[ƒXƒL[‚ð‰Ÿ‚·‚Æ LaTeX ƒ\[ƒX‚Ì -‘Ήž‚·‚és‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B +‚ð“ü—Í‚·‚邱‚Æ‚É‚æ‚èAƒ^ƒCƒvƒZƒbƒ^‚ªƒGƒ‰[‚ð”­¶‚µ‚½s‚Ɉڂ邱‚Æ‚ª‚Å‚«‚Ü‚·B +‚Ü‚½Aƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚é overfull hbox ‚Ȃǂ̃EƒH[ƒjƒ“ƒOs‚É‚à‘Ήž‚µ +‚Ä‚¢‚Ü‚·‚Ì‚ÅA‡ŽŸ `[prefix] '' ‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAˆê‚‘O‚̃EƒH[ƒjƒ“ƒO”­¶ +s‚ɃWƒƒƒ“ƒv‚µ‚Ä‚¢‚«‚Ü‚·B + + ‚à‚µA‹C‚É‚È‚éƒGƒ‰[s‚ª‚ ‚Á‚½ê‡‚ÍAƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ÅAƒGƒ‰[‚Ì•\ +Ž¦‚³‚ê‚Ä‚¢‚és‚ɃJ[ƒ\ƒ‹‚ð‡‚킹ƒXƒy[ƒXƒL[‚ð‰Ÿ‚·‚Æ LaTeX ƒ\[ƒX‚̑Ήž‚· +‚és‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B —̈æƒ^ƒCƒvƒZƒbƒg ---------------- - ƒ|ƒCƒ“ƒg‚ƃ}[ƒN‚ÌŠÔA‚ ‚é‚¢‚̓eƒLƒXƒg’†‚É–„‚ßž‚ñ‚¾ `%#BEGIN' ‚Æ -`%#END'‚̊Ԃ̗̈æ(*Note %#notation::)‚¾‚¯‚ðØ‚èŽæ‚Á‚ă^ƒCƒvƒZƒbƒg‚·‚邱 -‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚ÌꇃƒCƒ“ƒtƒ@ƒCƒ‹‚̃vƒŠƒAƒ“ƒuƒ‹‚ªˆêŽžƒtƒ@ƒCƒ‹‚̃vƒŠ -ƒAƒ“ƒuƒ‹‚Æ‚µ‚ÄŽg‚í‚ê‚Ü‚·B‚µ‚½‚ª‚Á‚ăvƒŠƒAƒ“ƒuƒ‹‚É‚È‚¢ƒ}ƒNƒ’è‹`‚ª—̈æ -“à‚É‚ ‚é‚ƃGƒ‰[‚É‚È‚è‚Ü‚·B—̈æƒ^ƒCƒvƒZƒbƒg‚ðŽg‚¤ê‡A•K‚¸ƒ}ƒNƒ’è‹` -‚̓vƒŠƒAƒ“ƒuƒ‹(`\begin{document}'‚æ‚è‘O)‚É’u‚­‚悤‚É‚µ‚ĉº‚³‚¢BˆêŽžƒtƒ@ -ƒCƒ‹‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚Ì‚ ‚éƒfƒBƒŒƒNƒgƒŠ‚Ì`texput.tex'‚Æ‚¢‚¤–¼‘O‚Åo—Í‚³ -‚ê‚é‚Ì‚ÅAã‘‚«‚É‚Í’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B + ƒ|ƒCƒ“ƒg‚ƃ}[ƒN‚ÌŠÔA‚ ‚é‚¢‚̓eƒLƒXƒg’†‚É–„‚ßž‚ñ‚¾ `%#BEGIN' ‚Æ`%#END' +‚̊Ԃ̗̈æ(*Note %#notation::)‚¾‚¯‚ðØ‚èŽæ‚Á‚ă^ƒCƒvƒZƒbƒg‚·‚邱‚Æ‚ª‚Å‚«‚Ü +‚·B‚±‚ÌꇃƒCƒ“ƒtƒ@ƒCƒ‹‚̃vƒŠƒAƒ“ƒuƒ‹‚ªˆêŽžƒtƒ@ƒCƒ‹‚̃vƒŠƒAƒ“ƒuƒ‹‚Æ‚µ‚Ä +Žg‚í‚ê‚Ü‚·B‚µ‚½‚ª‚Á‚ăvƒŠƒAƒ“ƒuƒ‹‚É‚È‚¢ƒ}ƒNƒ’è‹`‚ª—̈æ“à‚É‚ ‚é‚ƃGƒ‰[‚É +‚È‚è‚Ü‚·B—̈æƒ^ƒCƒvƒZƒbƒg‚ðŽg‚¤ê‡A•K‚¸ƒ}ƒNƒ’è‹`‚̓vƒŠƒAƒ“ƒuƒ‹ +(`\begin{document}'‚æ‚è‘O)‚É’u‚­‚悤‚É‚µ‚ĉº‚³‚¢BˆêŽžƒtƒ@ƒCƒ‹‚̓ƒCƒ“ƒtƒ@ +ƒCƒ‹‚Ì‚ ‚éƒfƒBƒŒƒNƒgƒŠ‚Ì`texput.tex'‚Æ‚¢‚¤–¼‘O‚Åo—Í‚³‚ê‚é‚Ì‚ÅAã‘‚«‚É‚Í +’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B ŠÂ‹«ƒ^ƒCƒvƒZƒbƒg ---------------- - `[prefix] te' ‚ð‰Ÿ‚·‚ÆAƒ|ƒCƒ“ƒgˆÊ’u‚ÌÅ‚à“à‘¤‚̊‹«A‚Ü‚½‚Í”Ž®ƒ‚[ -ƒh“à‚Ìꇂ͂»‚Ì”Ž®ƒ‚[ƒh‘S‘Ì‚ªŽ©“®“I‚ɗ̈æ‘I‘ð‚³‚ê‚ÄA—̈æƒ^ƒCƒvƒZƒb -ƒg‚ðŒÄ‚Ño‚µ‚Ü‚·BtabularŠÂ‹«‚┎®ƒ‚[ƒh‚Å•¡ŽG‚È‚à‚Ì‚ðì‚Á‚Ä‚¢‚éê‡‚Í -Šm‚©‚ß‚½‚¢•”•ª‚¾‚¯‚ðŠm”F‚Å‚«‚é‚Ì‚Å•Ö—˜‚Å‚·B‚±‚ê‚à `texput.tex' ‚ÉŠY“– -•”•ª‚ð‘‚«o‚µ‚Ü‚·BƒvƒŒƒ”ƒ…[ƒA‚Å `texput.dvi' ‚ðŠJ‚¢‚½‚Ü‚Ü‚É‚µ‚Ä‚¨‚¯ -‚ÎC³‚ÆŠm”F‚ª‘f‘‚­‚Å‚«‚é‚Å‚µ‚傤B + `[prefix] te' ‚ð‰Ÿ‚·‚ÆAƒ|ƒCƒ“ƒgˆÊ’u‚ÌÅ‚à“à‘¤‚̊‹«A‚Ü‚½‚Í”Ž®ƒ‚[ƒh“à +‚Ìꇂ͂»‚Ì”Ž®ƒ‚[ƒh‘S‘Ì‚ªŽ©“®“I‚ɗ̈æ‘I‘ð‚³‚ê‚ÄA—̈æƒ^ƒCƒvƒZƒbƒg‚ðŒÄ‚Ñ +o‚µ‚Ü‚·BtabularŠÂ‹«‚┎®ƒ‚[ƒh‚Å•¡ŽG‚È‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇂ͊m‚©‚ß‚½‚¢ +•”•ª‚¾‚¯‚ðŠm”F‚Å‚«‚é‚Ì‚Å•Ö—˜‚Å‚·B‚±‚ê‚à `texput.tex' ‚ÉŠY“–•”•ª‚ð‘‚«o‚µ +‚Ü‚·BƒvƒŒƒ”ƒ…[ƒA‚Å `texput.dvi' ‚ðŠJ‚¢‚½‚Ü‚Ü‚É‚µ‚Ä‚¨‚¯‚ÎC³‚ÆŠm”F‚ª‘f‘ +‚­‚Å‚«‚é‚Å‚µ‚傤B  @@ -273,11 +269,11 @@ ƒvƒŒƒ”ƒ…[ƒA‹N“® ================ - `[prefix] t p' ‚É‚æ‚èƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B‚³‚ç‚ÉA‚à‚µ‚ ‚È‚½ -‚ªA-remote ‹@”\‚‚«‚Ìxdvi‚ð—˜—p‚µ‚Ä‚¢‚éê‡‚Í `[prefix] t s' ‚ð‰Ÿ‚·‚± -‚Æ‚É‚æ‚èƒJ[ƒ\ƒ‹ˆÊ’u‚Ì•¶Žš—ñ‚ðŒŸõ‚µ‚Ä‚»‚̃y[ƒW‚ð•\Ž¦‚·‚é‚悤‚É‚·‚Å‚É -‹N“®’†‚Ìxdvi‚É–½—ß‚ð‘—‚è‚Ü‚·B‚±‚ê‚É‚æ‚èAŒ»Ý•ÒW’†‚̉ӊ‚̃^ƒCƒvƒZƒb -ƒgŒ‹‰Ê‚ð‘¦À‚ÉŒ©‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + `[prefix] t p' ‚É‚æ‚èƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B‚³‚ç‚ÉA‚à‚µ‚ ‚È‚½‚ªA- +remote ‹@”\‚‚«‚Ìxdvi‚ð—˜—p‚µ‚Ä‚¢‚éê‡‚Í `[prefix] t s' ‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚è +ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì•¶Žš—ñ‚ðŒŸõ‚µ‚Ä‚»‚̃y[ƒW‚ð•\Ž¦‚·‚é‚悤‚É‚·‚Å‚É‹N“®’†‚Ìxdvi +‚É–½—ß‚ð‘—‚è‚Ü‚·B‚±‚ê‚É‚æ‚èAŒ»Ý•ÒW’†‚̉ӊ‚̃^ƒCƒvƒZƒbƒgŒ‹‰Ê‚ð‘¦À‚ÉŒ© +‚邱‚Æ‚ª‚Å‚«‚Ü‚·B @@ -287,8 +283,8 @@ ƒvƒŠƒ“ƒgƒAƒEƒg ============== - `[prefix] t l'‚ð‰Ÿ‚µ‚ăvƒŠƒ“ƒgƒAƒEƒg‚ðŽwŽ¦‚·‚é‚ÆAo—ÍŠJŽn/I—¹ƒy[ƒW -‚ð•·‚¢‚Ä‚­‚é‚Ì‚ÅA‚»‚ꂼ‚ê‚É“š‚¦‚Ü‚·B‚±‚ê‚ðÈ—ª‚µ‚½‚¢Žž‚ÍA + `[prefix] t l'‚ð‰Ÿ‚µ‚ăvƒŠƒ“ƒgƒAƒEƒg‚ðŽwŽ¦‚·‚é‚ÆAo—ÍŠJŽn/I—¹ƒy[ƒW‚ð +•·‚¢‚Ä‚­‚é‚Ì‚ÅA‚»‚ꂼ‚ê‚É“š‚¦‚Ü‚·B‚±‚ê‚ðÈ—ª‚µ‚½‚¢Žž‚ÍA universal-argument ‚ð‚‚¯A @@ -304,8 +300,8 @@ %#‹L–@ ****** - –{•¶’†‚É`%#'‚Å‚Í‚¶‚Ü‚éƒL[ƒ[ƒh‚ð–„‚ßž‚Þ‚±‚ƂŃ^ƒCƒvƒZƒbƒ^‹N“®“™‚Ì -§Œä‚ð‚·‚é‚±‚Æ‚ª‚Å‚«‚Ü‚·B + –{•¶’†‚É`%#'‚Å‚Í‚¶‚Ü‚éƒL[ƒ[ƒh‚ð–„‚ßž‚Þ‚±‚ƂŃ^ƒCƒvƒZƒbƒ^‹N“®“™‚̧Œä +‚ð‚·‚é‚±‚Æ‚ª‚Å‚«‚Ü‚·B * Menu: @@ -313,6 +309,7 @@ * Splitting input files:: “ü—̓tƒ@ƒCƒ‹•ªŠ„ * Fix region for typesetting:: —̈æ‚̌Œè * lpr format:: ƒvƒŠƒ“ƒgƒAƒEƒgƒRƒ}ƒ“ƒh—pƒtƒH[ƒ}ƒbƒg +* Controlling which command to invoke:: ‚»‚Ì‘¼‚Ì‹N“®ƒRƒ}ƒ“ƒh§Œä * Editing %# notation:: %#‹L–@‚Ì•ÒW @@ -337,35 +334,33 @@ “ü—̓tƒ@ƒCƒ‹•ªŠ„ ================ -‚Ü‚½AÍ–ˆ‚ɕʃtƒ@ƒCƒ‹‚Ì .tex ‚ð쬂µ‚Ä‚¢‚éꇂÅA`main.tex'‚©‚ç -`sub.tex' ‚ð `\include'‚µ‚Ä‚¢‚é‚悤‚ÈŽž‚ÍA`sub.tex'‚Ì”CˆÓ‚̈ʒu‚ÉŽŸ‚Ì -‚悤‚Ès‚ð–„‚ßž‚Ý‚Ü‚·B +‚Ü‚½AÍ–ˆ‚ɕʃtƒ@ƒCƒ‹‚Ì .tex ‚ð쬂µ‚Ä‚¢‚éꇂÅA`main.tex'‚©‚ç +`sub.tex' ‚ð `\include'‚µ‚Ä‚¢‚é‚悤‚ÈŽž‚ÍA`sub.tex'‚Ì”CˆÓ‚̈ʒu‚ÉŽŸ‚̂悤 +‚Ès‚ð–„‚ßž‚Ý‚Ü‚·B %#!platex main.tex -ã‚Ì—á‚̂悤‚ɃRƒ}ƒ“ƒh–¼‚¾‚¯‚Å‚È‚­ˆø”‚à‘‚¢‚½ê‡‚É‚ÍA‘S‚Ä‚ð‚»‚Ì‚Ü‚Ü -shell ‚É“n‚·‚Ì‚ÅŽŸ‚̂悤‚É‘‚¯‚ÎAghostview ‚È‚Ç‚ðƒvƒŒƒ”ƒ…[ƒA‚ÉŽg‚¤Žž -‚É•Ö—˜‚Å‚·B +ã‚Ì—á‚̂悤‚ɃRƒ}ƒ“ƒh–¼‚¾‚¯‚Å‚È‚­ˆø”‚à‘‚¢‚½ê‡‚É‚ÍA‘S‚Ä‚ð‚»‚Ì‚Ü‚Ü +shell ‚É“n‚·‚Ì‚ÅŽŸ‚̂悤‚É‘‚¯‚ÎAghostview ‚È‚Ç‚ðƒvƒŒƒ”ƒ…[ƒA‚ÉŽg‚¤Žž‚É•Ö +—˜‚Å‚·B %#!platex main && dvi2ps main.dvi > main -‚È‚¨A‚±‚Ìs‚ÌÅŒã‚Ì’PŒê‚̃sƒŠƒIƒhˆÈ‘O‚ðuƒƒCƒ“ƒtƒ@ƒCƒ‹v‚̃x[ƒXƒl[ -ƒ€‚Å‚ ‚é‚Ɖ¼’肵‚Ü‚·(ã‚Ì2‚‚Ìꇂǂ¿‚ç‚à`main')B‚±‚Ìs‚É‹Lq‚µ‚½A -`%f'‚̓ƒCƒ“ƒtƒ@ƒCƒ‹–¼‚ÉA `%r' ‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚ÌŠg’£Žq‚ðŽæ‚蜂¢‚½•” -•ª‚É’uŠ·‚³‚ê‚Ü‚·B‚½‚¾‚µA`%f,%r'‚ð—˜—p‚µ‚½ê‡A‰‰ñƒ^ƒCƒvƒZƒbƒgŽž‚É•K -‚¸ƒƒCƒ“ƒtƒ@ƒCƒ‹–¼‚Ì“ü—͂𑣂³‚ê‚Ü‚·B - - `[prefix] g' (*Note Cursor jump::ŽQÆ) ‚ł̃tƒ@ƒCƒ‹ŠÔƒWƒƒƒ“ƒv‚ð—LŒø‚É -‹@”\‚³‚¹‚邽‚ßA“ü—̓tƒ@ƒCƒ‹•ªŠ„Žž‚É‚ÍŽŸ‚Ì‚±‚Æ‚É’ˆÓ‚µ‚ĉº‚³‚¢B - - 1. ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚ðì‚Á‚ÄA‚»‚Ì’†‚ɃTƒuƒtƒ@ƒCƒ‹‚ð’u‚­‚±‚Æ‚Í‚Å‚«‚邪 - ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚̃TƒuƒfƒBƒŒƒNƒgƒŠ‚É‚Í’u‚¯‚È‚¢B - 2. ƒƒCƒ“ƒtƒ@ƒCƒ‹‚©‚çƒTƒuƒfƒBƒŒƒNƒgƒŠ“à‚̃tƒ@ƒCƒ‹‚ð - include - ‚·‚鎞‚É‚ÍA‘Š‘΃pƒXŽw’è‚ð—p‚¢‚ÄA - `\include{chap1/sub}'‚̂悤‚É‹LqB +‚È‚¨A‚±‚Ìs‚ÌÅŒã‚Ì’PŒê‚̃sƒŠƒIƒhˆÈ‘O‚ðuƒƒCƒ“ƒtƒ@ƒCƒ‹v‚̃x[ƒXƒl[ƒ€‚Å +‚ ‚é‚Ɖ¼’肵‚Ü‚·(ã‚Ì2‚‚Ìꇂǂ¿‚ç‚à`main')B‚±‚Ìs‚É‹Lq‚µ‚½A`%f'‚̓ +ƒCƒ“ƒtƒ@ƒCƒ‹–¼‚ÉA `%r' ‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚ÌŠg’£Žq‚ðŽæ‚蜂¢‚½•”•ª‚É’uŠ·‚³‚ê +‚Ü‚·B‚½‚¾‚µA`%f,%r'‚ð—˜—p‚µ‚½ê‡A‰‰ñƒ^ƒCƒvƒZƒbƒgŽž‚É•K‚¸ƒƒCƒ“ƒtƒ@ƒC +ƒ‹–¼‚Ì“ü—͂𑣂³‚ê‚Ü‚·B + + `[prefix] g' (*Note Cursor jump::ŽQÆ) ‚ł̃tƒ@ƒCƒ‹ŠÔƒWƒƒƒ“ƒv‚ð—LŒø‚É‹@ +”\‚³‚¹‚邽‚ßA“ü—̓tƒ@ƒCƒ‹•ªŠ„Žž‚É‚ÍŽŸ‚Ì‚±‚Æ‚É’ˆÓ‚µ‚ĉº‚³‚¢B + + 1. ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚ðì‚Á‚ÄA‚»‚Ì’†‚ɃTƒuƒtƒ@ƒCƒ‹‚ð’u‚­‚±‚Æ‚Í‚Å‚«‚邪ƒT + ƒuƒfƒBƒŒƒNƒgƒŠ‚̃TƒuƒfƒBƒŒƒNƒgƒŠ‚É‚Í’u‚¯‚È‚¢B + 2. ƒƒCƒ“ƒtƒ@ƒCƒ‹‚©‚çƒTƒuƒfƒBƒŒƒNƒgƒŠ“à‚̃tƒ@ƒCƒ‹‚ð include ‚·‚鎞‚É‚ÍA + ‘Š‘΃pƒXŽw’è‚ð—p‚¢‚ÄA`\include{chap1/sub}'‚̂悤‚É‹LqB 3. ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ªˆê‚Âã‚̃fƒBƒŒƒNƒgƒŠ‚É‚ ‚éꇂàAƒTƒuƒtƒ@ƒCƒ‹‚É‚Í %#!platex main.tex ‚̂悤‚É‹Lq‚·‚é(../main‚Å‚Í‚È‚¢)B @@ -378,36 +373,35 @@ —̈æ‚̌Œè ========== - `[prefix] tr' ‚̗̈æŽw’è‚̃^ƒCƒvƒZƒbƒg‚Å‚ÍA‚Æ‚­‚ÉŽw’è‚Ì‚È‚¢‚©‚¬‚èA -`C-SPC'‚Ń}[ƒN‚µ‚½ˆÊ’u‚ÆAƒ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚ÌŠÔ‚ð—̈æ‚Æ‚Ý‚È‚µ‚Ü‚· -‚ªA•K‚¸Œˆ‚Ü‚Á‚½—̈æ‚ðƒ^ƒCƒvƒZƒbƒg‚µ‚½‚¢ê‡‚ÍA‚»‚̗̈æ‚ð + `[prefix] tr' ‚̗̈æŽw’è‚̃^ƒCƒvƒZƒbƒg‚Å‚ÍA‚Æ‚­‚ÉŽw’è‚Ì‚È‚¢‚©‚¬‚èA +`C-SPC'‚Ń}[ƒN‚µ‚½ˆÊ’u‚ÆAƒ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚ÌŠÔ‚ð—̈æ‚Æ‚Ý‚È‚µ‚Ü‚·‚ªA +•K‚¸Œˆ‚Ü‚Á‚½—̈æ‚ðƒ^ƒCƒvƒZƒbƒg‚µ‚½‚¢ê‡‚ÍA‚»‚̗̈æ‚ð %#BEGIN <“n‚µ‚½‚¢—̈æ> %#END -‚̂悤‚É`%#BEGIN'‚Æ`%#END'‚ň͂ÝAƒJ[ƒ\ƒ‹‚ðu`%#BEGIN'ˆÈ~v‚É’u‚¢‚Ä‚­ -‚¾‚³‚¢B‚±‚ÌŽž‚̗̈挈’è‹K‘¥‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B - - - 1. ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É`%#BEGIN'‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª‚  - ‚éê‡ +‚̂悤‚É`%#BEGIN'‚Æ`%#END'‚ň͂ÝAƒJ[ƒ\ƒ‹‚ðu`%#BEGIN'ˆÈ~v‚É’u‚¢‚Ä‚­‚¾ +‚³‚¢B‚±‚ÌŽž‚̗̈挈’è‹K‘¥‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B + + + 1. ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É`%#BEGIN'‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª‚ ‚éê + ‡ 1. `%#BEGIN'‚æ‚èƒoƒbƒtƒ@‚Ì––”ö•ûŒü‚É`%#END'‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ªŒ©‚‚©‚Á ‚½ê‡B =>`%#BEGIN' ‚©‚çA‚»‚Ì `%#END' ‚Ì‚ ‚éˆÊ’u‚Ü‚ÅB - 2. `%#END' ‚ªŒ©‚‚©‚ç‚È‚©‚Á‚½ê‡B - =>ƒoƒbƒtƒ@‚ÌÅŒã”ö‚Ü‚ÅB + 2. `%#END' ‚ªŒ©‚‚©‚ç‚È‚©‚Á‚½ê‡B=>ƒoƒbƒtƒ@‚ÌÅŒã”ö‚Ü‚ÅB 2. ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É `%#BEGIN' ‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª Œ©‚‚©‚ç‚È‚©‚Á‚½ê‡B =>ƒ}[ƒN(`C-SPC'ˆÊ’u)‚ƃ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚̊Ԃ̗̈æB - tabular ŠÂ‹«‚ð‰½“x‚àŽŽsöŒë‚µ‚Ä‚¢‚é‚悤‚ÈꇂÍA`\begin'‚Ì‘O‚Ìs‚É -`%#BEGIN' ‚Æ‘‚«A`\end' ‚ÌŽŸ‚Ìs‚É `%#END' ‚Æ‘‚¢‚Ä‚¨‚­‚ÆŠÈ’P‚Éì•\Œ‹ -‰Ê‚ðƒeƒXƒg‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A’·‚¢ .tex ƒtƒ@ƒCƒ‹‚̌㔼‚É -`%#BEGIN' ‚ð‘‚¢‚Ä‚¨‚¯‚ÎA‘O”¼‚Ì•”•ª‚Í–³Ž‹‚Å‚«‚Ü‚·B‚±‚ÌBEGIN‚ÆEND‚ÌÁ -‚µ–Y‚ê‚É‚Í\•ª‚²’ˆÓ‰º‚³‚¢B + tabular ŠÂ‹«‚ð‰½“x‚àŽŽsöŒë‚µ‚Ä‚¢‚é‚悤‚ÈꇂÍA`\begin'‚Ì‘O‚Ìs‚É +`%#BEGIN' ‚Æ‘‚«A`\end' ‚ÌŽŸ‚Ìs‚É `%#END' ‚Æ‘‚¢‚Ä‚¨‚­‚ÆŠÈ’P‚Éì•\Œ‹‰Ê‚ð +ƒeƒXƒg‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A’·‚¢ .tex ƒtƒ@ƒCƒ‹‚̌㔼‚É `%#BEGIN' ‚ð‘ +‚¢‚Ä‚¨‚¯‚ÎA‘O”¼‚Ì•”•ª‚Í–³Ž‹‚Å‚«‚Ü‚·B‚±‚ÌBEGIN‚ÆEND ‚ÌÁ‚µ–Y‚ê‚É‚Í\•ª‚² +’ˆÓ‰º‚³‚¢B @@ -417,9 +411,9 @@ lprƒtƒH[ƒ}ƒbƒg =============== - ‚Ü‚¸AƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh—ñ‚̃tƒH[ƒ}ƒbƒg‚ɂ‚¢‚Äà–¾‚µ‚Ü‚·BƒR -ƒ}ƒ“ƒh—ñƒtƒH[ƒ}ƒbƒg‚ÍA3‚Â‚Ì Lisp •Ï”‚É‚æ‚Á‚Ä•\Œ»‚³‚ê‚Ü‚·BƒfƒtƒHƒ‹ƒg -‚Ì dvi2ps —p‚̃tƒH[ƒ}ƒbƒg‚ð—á‚Éà–¾‚µ‚Ü‚·B + ‚Ü‚¸AƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh—ñ‚̃tƒH[ƒ}ƒbƒg‚ɂ‚¢‚Äà–¾‚µ‚Ü‚·BƒRƒ}ƒ“ +ƒh—ñƒtƒH[ƒ}ƒbƒg‚ÍA3‚Â‚Ì Lisp •Ï”‚É‚æ‚Á‚Ä•\Œ»‚³‚ê‚Ü‚·BƒfƒtƒHƒ‹ƒg‚Ì +dvi2ps —p‚̃tƒH[ƒ}ƒbƒg‚ð—á‚Éà–¾‚µ‚Ü‚·B `(1)dviprint-command-format' `"dvi2ps %f %t %s | lpr"' @@ -430,19 +424,18 @@ `(3)dviprint-to-format' `"-t %e"' -ŽÀۂɃvƒŠƒ“ƒgƒAƒEƒg‚·‚鎞‚ÍA(1)’†‚Ì %s ‚ªƒtƒ@ƒCƒ‹–¼‚É’u‚«Š·‚¦‚ç‚êA -%f ‚ª(2)‚Ì“à—eA%t ‚ª(3)‚Ì“à—e‚É’u‚«Š·‚¦‚ç‚ê‚Ü‚·B‚»‚ÌÛ‚É(2)‚Ì•¶Žš—ñ’† -‚Ì %b ‚Íuo—ÍŠJŽnƒy[ƒWvA(3)‚Ì•¶Žš—ñ’†‚Ì %e ‚Íuo—ÍI—¹ƒy[ƒWv‚É’u -‚«Š·‚¦‚ç‚ê‚Ü‚·B‚à‚µAƒy[ƒW‚ðŽw’肵‚È‚¢Žž‚É‚ÍA%f, %t —¼•û‚Æ‚à–³Ž‹‚³‚ê -‚Ü‚·B - - ‚±‚ÌAdviprint-command-format ‚ð—ÕŽž‚É•Ï‚¦‚½‚¢Žž‚ÍALaTeX ‚̃\[ƒXƒe -ƒLƒXƒg’†‚Ì”CˆÓ‚ÌꊂÉA +ŽÀۂɃvƒŠƒ“ƒgƒAƒEƒg‚·‚鎞‚ÍA(1)’†‚Ì %s ‚ªƒtƒ@ƒCƒ‹–¼‚É’u‚«Š·‚¦‚ç‚êA%f ‚ª +(2)‚Ì“à—eA%t ‚ª(3)‚Ì“à—e‚É’u‚«Š·‚¦‚ç‚ê‚Ü‚·B‚»‚ÌÛ‚É(2)‚Ì•¶Žš—ñ’†‚Ì %b ‚Í +uo—ÍŠJŽnƒy[ƒWvA(3)‚Ì•¶Žš—ñ’†‚Ì %e ‚Íuo—ÍI—¹ƒy[ƒWv‚É’u‚«Š·‚¦‚ç‚ê +‚Ü‚·B‚à‚µAƒy[ƒW‚ðŽw’肵‚È‚¢Žž‚É‚ÍA%f, %t —¼•û‚Æ‚à–³Ž‹‚³‚ê‚Ü‚·B + + ‚±‚ÌAdviprint-command-format ‚ð—ÕŽž‚É•Ï‚¦‚½‚¢Žž‚ÍALaTeX ‚̃\[ƒXƒeƒLƒX +ƒg’†‚Ì”CˆÓ‚ÌꊂÉA %#LPR dvi2ps %f %t %s | 4up -page 4 | texfix | lpr -Plp2 -‚̂悤‚É‘‚¢‚ĉº‚³‚¢BƒvƒŠƒ“ƒgƒAƒEƒg‚·‚éƒy[ƒW”ÍˆÍ‚ð‚¢‚¿‚¢‚¿•·‚©‚¹‚È‚¢ -‚悤‚É‚·‚鎞‚É +‚̂悤‚É‘‚¢‚ĉº‚³‚¢BƒvƒŠƒ“ƒgƒAƒEƒg‚·‚éƒy[ƒW”ÍˆÍ‚ð‚¢‚¿‚¢‚¿•·‚©‚¹‚È‚¢‚悤 +‚É‚·‚鎞‚É %#LPR dvi2ps %s | lpr @@ -458,14 +451,14 @@ LaTeX •¶‘‚ÉŠÖ˜A‚·‚éƒRƒ}ƒ“ƒh‚͈ȉº‚Ì %# ‹L–@‚ÅŽw’è‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B `%#BIBTEX' - - ... makeindex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t b) + + ... makeindex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t b) `%#MAKEINDEX' - - ... bibtex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t i) - -s“ª‚ª‚±‚ê‚ç‚̃L[ƒ[ƒh‚ÅŽn‚Ü‚és‚ðLaTeX•¶‘‚Ì擪•t‹ß‚É‘‚¢‚Ä‚¨‚¯‚ÎA -‚»‚ê‚ÅŽw’肵‚½ƒRƒ}ƒ“ƒh‚ð‹N“®‚Å‚«‚Ü‚·B + + ... bibtex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t i) + +s“ª‚ª‚±‚ê‚ç‚̃L[ƒ[ƒh‚ÅŽn‚Ü‚és‚ðLaTeX•¶‘‚Ì擪•t‹ß‚É‘‚¢‚Ä‚¨‚¯‚ÎA‚» +‚ê‚ÅŽw’肵‚½ƒRƒ}ƒ“ƒh‚ð‹N“®‚Å‚«‚Ü‚·B  @@ -483,11 +476,10 @@ !)Edit-%#! B)EGIN-END-region L)Edit-%#LPR -‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA`%#!'‚É‘±‚­ƒRƒ}ƒ“ƒh‚ð•ÏX‚µ‚½‚¢Žž‚É‚Í -`!'‚ðA`%#LPR'‚Å lpr ƒtƒH[ƒ}ƒbƒg‚ð•Ï‚¦‚½‚¢Žž‚Í`l'‚ðA‚ ‚ç‚© -‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“‚ð `%#BEGIN' ` `%#END' ‚ÅŠ‡‚肽‚¢Žž‚ÍA -`b'‚ð‰Ÿ‚µ‚Ü‚·B`b'‚ð‘I‚ñ‚¾Žž‚É‚ÍA‚»‚ê‚܂Ńoƒbƒtƒ@’†‚É’u‚©‚ê‚Ä‚¢‚½ -`%#BEGIN', `%#END' ‚ªŽ©“®“I‚ÉÁ‹Ž‚³‚ê‚Ü‚·B +‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA`%#!'‚É‘±‚­ƒRƒ}ƒ“ƒh‚ð•ÏX‚µ‚½‚¢Žž‚É‚Í`!'‚ðA +`%#LPR'‚Å lpr ƒtƒH[ƒ}ƒbƒg‚ð•Ï‚¦‚½‚¢Žž‚Í`l'‚ðA‚ ‚ç‚©‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“ +‚ð `%#BEGIN' ` `%#END' ‚ÅŠ‡‚肽‚¢Žž‚ÍA`b'‚ð‰Ÿ‚µ‚Ü‚·B`b'‚ð‘I‚ñ‚¾Žž‚É‚ÍA +‚»‚ê‚܂Ńoƒbƒtƒ@’†‚É’u‚©‚ê‚Ä‚¢‚½`%#BEGIN', `%#END' ‚ªŽ©“®“I‚ÉÁ‹Ž‚³‚ê‚Ü‚·B  @@ -496,17 +488,17 @@ •âŠ®“ü—Í ******** - LaTeX ‚ł̊‹«–¼‚È‚Ç‚ÍA–ì’¹‚̕⊮‹@”\‚ð—˜—p‚µ‚Ä”\—¦“I‚É“ü—Í‚·‚邱‚Æ -‚ª‚Å‚«‚Ü‚·B + LaTeX ‚ł̊‹«–¼‚È‚Ç‚ÍA–ì’¹‚̕⊮‹@”\‚ð—˜—p‚µ‚Ä”\—¦“I‚É“ü—Í‚·‚邱‚Æ‚ª‚Å +‚«‚Ü‚·B * Menu: -* beginŒ^•âŠ®:: -* sectionŒ^•âŠ®:: -* largeŒ^•âŠ®:: -* maketitleŒ^•âŠ®:: +* beginŒ^•âŠ®:: +* sectionŒ^•âŠ®:: +* largeŒ^•âŠ®:: +* maketitleŒ^•âŠ®:: * Arbitrary completion:: Žž•âŠ® -* end•âŠ®:: +* end•âŠ®:: * Accent mark completion:: ƒAƒNƒZƒ“ƒg‹L†•âŠ® * Image completion:: ”Ž®‹L†ƒCƒ[ƒW•âŠ® * Greek letter completion:: ƒMƒŠƒVƒƒ•¶Žš•âŠ® @@ -518,14 +510,14 @@ beginŒ^•âŠ® =========== - `\begin{env}...\end{env}'‚Ì—l‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ðbeginŒ^•âŠ®‚ƌĂԂ± -‚Æ‚É‚µ‚Ü‚·Bbegin Œ^•âŠ®‚ÍA + `\begin{env}...\end{env}'‚Ì—l‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ðbeginŒ^•âŠ®‚ƌĂԂ±‚Æ‚É +‚µ‚Ü‚·Bbegin Œ^•âŠ®‚ÍA `[prefix] b' ... begin Œ^•âŠ®ŠJŽn(•W€‚Å‚Í `C-c b') -‚ÅŽn‚Ü‚è‚Ü‚·B•p”É‚É—p‚¢‚ç‚ê‚鎟‚Ì LaTeX ŠÂ‹«‚̕⊮‚ÍA[prefix] `b'‚É‘± -‚­ŽŸ‚Ì1•¶Žš‚ð“ü—Í‚·‚邾‚¯‚ÅA`\begin{xxx}...\end{xxx}'‚ðŠ®¬‚³‚¹‚Ü‚·B +‚ÅŽn‚Ü‚è‚Ü‚·B•p”É‚É—p‚¢‚ç‚ê‚鎟‚Ì LaTeX ŠÂ‹«‚̕⊮‚ÍA[prefix] `b' ‚É‘±‚­ +ŽŸ‚Ì1•¶Žš‚ð“ü—Í‚·‚邾‚¯‚ÅA`\begin{xxx}...\end{xxx}'‚ðŠ®¬‚³‚¹‚Ü‚·B `[prefix] b c' ... `\begin{center}...\end{center}' @@ -562,8 +554,8 @@ `[prefix] b V' ... `\begin{verse}...\end{verse}' - ã‹L‚Ì‚à‚̈ȊO‚̊‹«–¼‚Í Emacs ‚ÌŽ‚ƒCƒ“ƒNƒŠƒƒ“ƒ^ƒ‹‚ȕ⊮‹@”\‚ð—p‚¢ -‚Ä“ü—Í‚µ‚Ü‚·(ã‹L‚̊‹«–¼‚àˆÈ‰º‚̕⊮“ü—͉”\)B + ã‹L‚Ì‚à‚̈ȊO‚̊‹«–¼‚Í Emacs ‚ÌŽ‚ƒCƒ“ƒNƒŠƒƒ“ƒ^ƒ‹‚ȕ⊮‹@”\‚ð—p‚¢‚Ä +“ü—Í‚µ‚Ü‚·(ã‹L‚̊‹«–¼‚àˆÈ‰º‚̕⊮“ü—͉”\)B `[prefix] b SPC' ... begin Œ^•âŠ®“ü—Í @@ -572,39 +564,39 @@ Begin environment(default document): -‚Æ•\Ž¦‚³‚ê‚Ü‚·B‚±‚±‚ÅA‰½‚à“ü‚ꂸ‚ɃŠƒ^[ƒ“ƒL[‚̂݉Ÿ‚·‚ÆAŠ‡ŒÊ“à‚Éo -‚Ä‚¢‚éƒfƒtƒHƒ‹ƒg‚̊‹«–¼‚ª“ü—Í‚³‚ê‚Ü‚·‚ªA“K“–‚Ȋ‹«–¼‚ð“ü—Í‚·‚é‚ÆA -`\begin{ŠÂ‹«–¼} c \end{ŠÂ‹«–¼}'‚ª•¶‘’†‚É‘}“ü‚³‚ê‚Ü‚·Bƒ~ƒjƒoƒbƒtƒ@‚Å -ŠÂ‹«–¼‚ð“ü—Í‚·‚é‚Æ‚«‚ÉAŠÂ‹«–¼‚Ì“ª•¶Žš‚ð“ü—Í‚µuƒXƒy[ƒXv‚ð‚½‚½‚­‚ÆA -ˆê’v‚·‚éŠÂ‹«–¼‚ª“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚½ê‡A³‚µ‚¢ŠÂ‹«–¼‚ɕ⊮‚³‚ê‚é‚Ì -‚ÅA“ü—Í‚ÌŽèŠÔ‚ªÈ‚¯‚Ü‚·B“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚È‚¢ŠÂ‹«–¼‚ð“ü—Í‚µ‚½Žž‚Í -ƒ†[ƒUê—p‚̃e[ƒuƒ‹‚É“o˜^‚³‚êA‚³‚ç‚É‚»‚̃e[ƒuƒ‹‚ðŽ©“®“I‚ÉAƒ†[ƒUŽ« -‘(ƒfƒtƒHƒ‹ƒg‚Å‚Í `~/.yatexrc')‚É•Û‘¶‚µ‚Ü‚·B - -‚³‚ç‚ÉA“Á’è‚̊‹«‚ð•âŠ®“ü—Í‚µ‚½Žž‚É‚Í‚»‚̊‹«‚Å•K‚¸—p‚¢‚ç‚ê‚éƒGƒ“ƒgƒŠ -‚ðŽ©“®‘}“ü‚µ‚Ü‚·(—á: `itemize'ŠÂ‹«‚É‚¨‚¯‚é`\item'‚È‚Ç)B‘}“ü‚³‚ꂽƒGƒ“ -ƒgƒŠ‚ª•s—v‚ÈꇂɂÍundo‚É‚æ‚Á‚ÄÁ‹Ž‚µ‚ĉº‚³‚¢B +‚Æ•\Ž¦‚³‚ê‚Ü‚·B‚±‚±‚ÅA‰½‚à“ü‚ꂸ‚ɃŠƒ^[ƒ“ƒL[‚̂݉Ÿ‚·‚ÆAŠ‡ŒÊ“à‚Éo‚Ä‚¢ +‚éƒfƒtƒHƒ‹ƒg‚̊‹«–¼‚ª“ü—Í‚³‚ê‚Ü‚·‚ªA“K“–‚Ȋ‹«–¼‚ð“ü—Í‚·‚é‚ÆA`\begin{ŠÂ +‹«–¼} c \end{ŠÂ‹«–¼}'‚ª•¶‘’†‚É‘}“ü‚³‚ê‚Ü‚·Bƒ~ƒjƒoƒbƒtƒ@‚Ŋ‹«–¼‚ð“ü—Í‚· +‚é‚Æ‚«‚ÉAŠÂ‹«–¼‚Ì“ª•¶Žš‚ð“ü—Í‚µuƒXƒy[ƒXv‚ð‚½‚½‚­‚ÆAˆê’v‚·‚éŠÂ‹«–¼‚ª“à +•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚½ê‡A³‚µ‚¢ŠÂ‹«–¼‚ɕ⊮‚³‚ê‚é‚Ì‚ÅA“ü—Í‚ÌŽèŠÔ‚ªÈ‚¯‚Ü +‚·B“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚È‚¢ŠÂ‹«–¼‚ð“ü—Í‚µ‚½Žž‚̓†[ƒUê—p‚̃e[ƒuƒ‹‚É“o˜^ +‚³‚êA‚³‚ç‚É‚»‚̃e[ƒuƒ‹‚ðŽ©“®“I‚ÉAƒ†[ƒUŽ«‘(ƒfƒtƒHƒ‹ƒg‚Å‚Í +`~/.yatexrc')‚É•Û‘¶‚µ‚Ü‚·B + +‚³‚ç‚ÉA“Á’è‚̊‹«‚ð•âŠ®“ü—Í‚µ‚½Žž‚É‚Í‚»‚̊‹«‚Å•K‚¸—p‚¢‚ç‚ê‚éƒGƒ“ƒgƒŠ‚ðŽ© +“®‘}“ü‚µ‚Ü‚·(—á: `itemize'ŠÂ‹«‚É‚¨‚¯‚é`\item'‚È‚Ç)B‘}“ü‚³‚ꂽƒGƒ“ƒgƒŠ‚ª•s +—v‚ÈꇂɂÍundo‚É‚æ‚Á‚ÄÁ‹Ž‚µ‚ĉº‚³‚¢B Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚ÅŠ‡‚é ------------------------------ - ‚Æ‚±‚ë‚ÅAʼn‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ƒuƒƒbƒN‚ðŒã‚©‚çAitemize ŠÂ‹«‚Ì’† -‚ɕ‚¶‚±‚ß‚½‚¢‚ÆŽv‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚È‚Æ‚«‚ÍA‚ ‚ç‚©‚¶‚ß -•Â‚¶‚±‚ß‚½‚¢’i—Ž‚ðƒ}[ƒN‚µ‚ÄAbegin Œ^•âŠ®‚ÌŠeƒRƒ}ƒ“ƒh‚Ì `[prefix]' -‚ÌŽŸ‚Ìw¬•¶Žš‚Ì 'b'x ‚ðw‘啶Žšx‚É•Ï‚¦‚Ä‹N“®‚µ‚ĉº‚³‚¢B(‚Ü‚½‚ÍA -`C-u' ‚ðæ‚É‘Å‚¿Auniversal argument ‚ð‚‚¯‚Ä‚à‰Â”\‚Å‚·) - - —Ⴆ‚΂ ‚éƒpƒ‰ƒOƒ‰ƒt‚ð description ŠÂ‹«‚Ì’†‚É“ü‚ꂽ‚¢‚Æ‚«‚ÍA‚»‚̃pƒ‰ -ƒOƒ‰ƒt‚ðƒ}[ƒN‚µ‚Ä‚©‚çA + ‚Æ‚±‚ë‚ÅAʼn‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ƒuƒƒbƒN‚ðŒã‚©‚çAitemize ŠÂ‹«‚Ì’†‚ɕ‚¶‚± +‚ß‚½‚¢‚ÆŽv‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚È‚Æ‚«‚ÍA‚ ‚ç‚©‚¶‚ߕ‚¶‚±‚ß‚½‚¢’i—Ž +‚ðƒ}[ƒN‚µ‚ÄAbegin Œ^•âŠ®‚ÌŠeƒRƒ}ƒ“ƒh‚Ì `[prefix]' ‚ÌŽŸ‚Ìw¬•¶Žš‚Ì 'b'x +‚ðw‘啶Žšx‚É•Ï‚¦‚Ä‹N“®‚µ‚ĉº‚³‚¢B(‚Ü‚½‚ÍA`C-u' ‚ðæ‚É‘Å‚¿Auniversal +argument ‚ð‚‚¯‚Ä‚à‰Â”\‚Å‚·) + + —Ⴆ‚΂ ‚éƒpƒ‰ƒOƒ‰ƒt‚ð description ŠÂ‹«‚Ì’†‚É“ü‚ꂽ‚¢‚Æ‚«‚ÍA‚»‚̃pƒ‰ƒO +ƒ‰ƒt‚ðƒ}[ƒN‚µ‚Ä‚©‚çA `[prefix] B D' `(‚Ü‚½‚Í ESC 1 [prefix] b D)' `(‚Ü‚½‚Í C-u [prefix] b D ‚È‚Ç)' ‚ƃ^ƒCƒv‚µ‚Ä‚­‚¾‚³‚¢B‚±‚ê‚ÍA`[prefix] b SPC'‚̕⊮“ü—Í‚É‚à‚ ‚Ä‚Í‚Ü‚èA -`b' ‚ð‘啶Žš‚É•Ï‚¦‚ÄA`[prefix] B SPC' ‚ƃ^ƒCƒv‚·‚ê‚ÎA‚ ‚ç‚©‚¶‚߃}[ƒN -‚µ‚Ä‚¨‚¢‚½ƒŠƒWƒ‡ƒ“‚ðAbegin ‚Æ end ‚̊‹«‚ÅŠ‡‚è‚Ü‚·B +`b' ‚ð‘啶Žš‚É•Ï‚¦‚ÄA`[prefix] B SPC' ‚ƃ^ƒCƒv‚·‚ê‚ÎA‚ ‚ç‚©‚¶‚߃}[ƒN‚µ +‚Ä‚¨‚¢‚½ƒŠƒWƒ‡ƒ“‚ðAbegin ‚Æ end ‚̊‹«‚ÅŠ‡‚è‚Ü‚·B  @@ -613,8 +605,8 @@ sectionŒ^•âŠ® ============= - `\section{–Ú“I}' ‚̂悤‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ð section Œ^•âŠ®‚ƌĂԂ±‚Æ -‚É‚µ‚Ü‚·Bsection Œ^•âŠ®‚ÍA + `\section{–Ú“I}' ‚̂悤‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ð section Œ^•âŠ®‚ƌĂԂ±‚Æ‚É‚µ +‚Ü‚·Bsection Œ^•âŠ®‚ÍA `[prefix] s' ... section Œ^•âŠ® @@ -624,15 +616,15 @@ (C-v for view-section) \???{} (default documentclass): -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅA‚»‚±‚Å `section' ‚̂悤‚È LaTeX ƒRƒ}ƒ“ƒh -–¼‚ð“ü—Í‚µ‚Ü‚·B‚±‚±‚Å‚àƒŠƒ^[ƒ“ƒL[‚Ì‚Ý‚ÅŠ‡ŒÊ“à‚̃fƒtƒHƒ‹ƒg’l‚ª‘I‘ð‚³ -‚ê‚é‚Ù‚©A`chapter'‚Ȃǂ̂悤‚È•p“x‚Ì‚‚¢–¼Ì“ü—͂ɂ̓Xƒy[ƒXƒL[‚É‚æ‚é -•âŠ®‹@”\‚ª—LŒø‚Å‚·B ŽŸ‚ÉA{}‚Ì’†g‚Ì“ü—͂𑣂·A +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅA‚»‚±‚Å `section' ‚̂悤‚È LaTeX ƒRƒ}ƒ“ƒh–¼‚ð +“ü—Í‚µ‚Ü‚·B‚±‚±‚Å‚àƒŠƒ^[ƒ“ƒL[‚Ì‚Ý‚ÅŠ‡ŒÊ“à‚̃fƒtƒHƒ‹ƒg’l‚ª‘I‘ð‚³‚ê‚é‚Ù‚©A +`chapter'‚Ȃǂ̂悤‚È•p“x‚Ì‚‚¢–¼Ì“ü—͂ɂ̓Xƒy[ƒXƒL[‚É‚æ‚é•âŠ®‹@”\‚ª—L +Œø‚Å‚·B ŽŸ‚ÉA{}‚Ì’†g‚Ì“ü—͂𑣂·A \section{???}: -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅAƒZƒNƒVƒ‡ƒ“‚̃^ƒCƒgƒ‹‚È‚Ç‚ð“ü—Í‚µ‚Ü‚·B‚½ -‚Æ‚¦‚ÎA +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅAƒZƒNƒVƒ‡ƒ“‚̃^ƒCƒgƒ‹‚È‚Ç‚ð“ü—Í‚µ‚Ü‚·B‚½‚Æ‚¦ +‚ÎA (C-v for view-section) \???{} (default documentclass): section \section{???}: –Ú“I @@ -654,7 +646,7 @@ * Menu: -* 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh:: +* 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh:: * Enclose section-type command:: Š‡‚è•âŠ® * Recursive completion:: Ä‹A•âŠ® * view-sectioning:: ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ @@ -667,10 +659,10 @@ 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh ------------------------------------- - ‚Æ‚±‚ë‚ÅA`\addtolength{\topmargin}{8mm}' ‚Ȃǂ̂悤‚ÉAˆø”‚ð“ñ‚ÂˆÈ -ãŽæ‚é LaTeX ƒRƒ}ƒ“ƒh‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚ȃRƒ}ƒ“ƒh‚̕⊮“ü—Í‚É‚ÍA -section Œ^•âŠ®ŒÄ‚Ño‚µ‚Ɉø”‚ð•t‚¯‚Ä‚­‚¾‚³‚¢B—Ⴆ‚Îã‚Ì`addtolength'‚Ì -—á‚Å‚ ‚ê‚ÎAˆø”2‚ðŽw’肵‚Ü‚·B‚‚܂èA + ‚Æ‚±‚ë‚ÅA`\addtolength{\topmargin}{8mm}' ‚Ȃǂ̂悤‚ÉAˆø”‚ð“ñ‚ˆÈãŽæ +‚é LaTeX ƒRƒ}ƒ“ƒh‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚ȃRƒ}ƒ“ƒh‚̕⊮“ü—Í‚É‚ÍA section Œ^ +•âŠ®ŒÄ‚Ño‚µ‚Ɉø”‚ð•t‚¯‚Ä‚­‚¾‚³‚¢B—Ⴆ‚Îã‚Ì`addtolength' ‚Ì—á‚Å‚ ‚ê‚ÎA +ˆø”2‚ðŽw’肵‚Ü‚·B‚‚܂èA C-u 2 [prefix] s (‚Ü‚½‚ÍAESC 2 [prefix] s) @@ -680,13 +672,12 @@ \addtolength{???}: \topmargin Argument 2: 8mm -‚̂悤‚É“ü—Í‚µ‚Ä‚­‚¾‚³‚¢Bʼn‚Ì addtolength ‚Ì•”•ª‚ÆA‘æˆêˆø”‚Å‚ ‚é -topmargin ‚Ì“ü—Í‚Í“–‘RƒXƒy[ƒX‚É‚æ‚é•âŠ®“ü—Í‚ª‰Â”\‚Å‚·Bƒ†[ƒUŽ«‘‚É“o -˜^‚³‚ê‚é LaTeX ƒRƒ}ƒ“ƒh‚É‚ÍA‚±‚̈ø”‚Ì”‚àŠwK‚³‚ê‚é‚Ì‚ÅAʼn‚̕⊮‚Ì -Žžˆø”‚Ì”‚ðŽw’肵‚Ä‹N“®‚µ‚Ä‚¨‚¯‚ÎAˆÈŒã‚̕⊮Žž‚É‚ÍA‹L‰¯‚³‚ꂽŒÂ”‚¾ -‚¯ˆø”‚ð•·‚¢‚Ä—ˆ‚é‚悤‚É‚È‚è‚Ü‚·B‚ ‚Ƃňø”‚̌”‚ð•Ï‚¦‚½‚¢Žž‚ÍAÄ‚Ñ -`C-u'‚ð—p‚¢‚Ȕ‚ðŽw’肵’¼‚·‚±‚Æ‚ÅAŽ©“®“I‚ÉŽ«‘’†‚̈ø”‚̌”‚Ì•”•ª‚ð -XV‚µ‚Ü‚·B +‚̂悤‚É“ü—Í‚µ‚Ä‚­‚¾‚³‚¢Bʼn‚Ì addtolength ‚Ì•”•ª‚ÆA‘æˆêˆø”‚Å‚ ‚é +\topmargin ‚Ì“ü—Í‚Í“–‘RƒXƒy[ƒX‚É‚æ‚é•âŠ®“ü—Í‚ª‰Â”\‚Å‚·Bƒ†[ƒUŽ«‘‚É“o˜^ +‚³‚ê‚é LaTeX ƒRƒ}ƒ“ƒh‚É‚ÍA‚±‚̈ø”‚Ì”‚àŠwK‚³‚ê‚é‚Ì‚ÅAʼn‚̕⊮‚ÌŽžˆø +”‚Ì”‚ðŽw’肵‚Ä‹N“®‚µ‚Ä‚¨‚¯‚ÎAˆÈŒã‚̕⊮Žž‚É‚ÍA‹L‰¯‚³‚ꂽŒÂ”‚¾‚¯ˆø”‚ð +•·‚¢‚Ä—ˆ‚é‚悤‚É‚È‚è‚Ü‚·B‚ ‚Ƃňø”‚̌”‚ð•Ï‚¦‚½‚¢Žž‚ÍAÄ‚Ñ `C-u' ‚ð—p +‚¢‚Ȕ‚ðŽw’肵’¼‚·‚±‚Æ‚ÅAŽ©“®“I‚ÉŽ«‘’†‚̈ø”‚̌”‚Ì•”•ª‚ðXV‚µ‚Ü‚·B @@ -696,8 +687,8 @@ Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠ‡‚é ------------------------ - ‚Ü‚½A‹N“®ƒRƒ}ƒ“ƒh‚Ì`s'‚ð‘啶Žš‚É•Ï‚¦‚Ä‹N“®‚·‚é‚ÆA‚ ‚ç‚©‚¶‚ß‘‚¢‚½•¶ -Í‚ð section Œ^ƒRƒ}ƒ“ƒh‚Ì‘æˆêˆø”‚Æ‚µ‚ÄŠ‡‚è‚Ü‚·B + ‚Ü‚½A‹N“®ƒRƒ}ƒ“ƒh‚Ì`s'‚ð‘啶Žš‚É•Ï‚¦‚Ä‹N“®‚·‚é‚ÆA‚ ‚ç‚©‚¶‚ß‘‚¢‚½•¶Í +‚ð section Œ^ƒRƒ}ƒ“ƒh‚Ì‘æˆêˆø”‚Æ‚µ‚ÄŠ‡‚è‚Ü‚·B  @@ -706,10 +697,10 @@ Ä‹A•âŠ® -------- - ‚“x‚ÈŽg‚¢•û‚É‚È‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñ‚ªAsectionŒ^•âŠ®‚̈ø”‚Ì“ü—ÍŽž‚É‚³‚ç -‚ɕ⊮“ü—Í‚ð—˜—p‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·(section/large/maketitleŒ^‚ÉŒÀ‚é)B -sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”‚ÉX‚É LaTeX ƒRƒ}ƒ“ƒh‚ª—ˆ‚éꇂɂ̓~ƒjƒoƒbƒtƒ@ -‚Å–ì’¹‚̕⊮ƒL[‚ðÄ‹A“I‚É“ü—Í‚·‚邱‚Ƃňø”‚Ì“ü—Í‚àŒø—¦“I‚És‚È‚¦‚Ü‚·B + ‚“x‚ÈŽg‚¢•û‚É‚È‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñ‚ªAsectionŒ^•âŠ®‚̈ø”‚Ì“ü—ÍŽž‚É‚³‚ç‚É +•âŠ®“ü—Í‚ð—˜—p‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·(section/large/maketitleŒ^‚ÉŒÀ‚é)Bsection +Œ^ƒRƒ}ƒ“ƒh‚̈ø”‚ÉX‚É LaTeX ƒRƒ}ƒ“ƒh‚ª—ˆ‚éꇂɂ̓~ƒjƒoƒbƒtƒ@‚Å–ì’¹‚Ì•â +Š®ƒL[‚ðÄ‹A“I‚É“ü—Í‚·‚邱‚Ƃňø”‚Ì“ü—Í‚àŒø—¦“I‚És‚È‚¦‚Ü‚·B  @@ -718,28 +709,27 @@ ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ ---------------------------------- - ’Êí‚ÌsectionŒ^•âŠ®‚ÌŽž‚Ƀ~ƒjƒoƒbƒtƒ@‚Å`C-v'‚ð‰Ÿ‚·‚ÆŒ»Ý‘¶Ý‚·‚éƒZƒN -ƒVƒ‡ƒ“‹æØ‚èƒRƒ}ƒ“ƒh‘S‚Ä‚ð `*Sectioning Lines*'‚Æ‚¢‚¤ƒoƒbƒtƒ@‚Ɉꗗ•\Ž¦ -‚µ‚Ü‚·(u<<--v‚̂‚¢‚Ä‚¢‚és‚ª‚à‚Á‚Æ‚à‹ß‚¢ƒZƒNƒVƒ‡ƒ“‹æØ‚è)B‚±‚ÌŽžƒ~ -ƒjƒoƒbƒtƒ@‚Å`C-p', `C-n' ‚ð‰Ÿ‚·‚Æ`part', `chapter', ..., -`subparagraph' ‚̃Rƒ}ƒ“ƒh‚ª˜_—ŠK‘w‚Ì‚‚³‚É‚µ‚½‚ª‚Á‚Ä㉺‚µ‚Ü‚·B‚Ü‚½A -`C-v', `M-v' ‚ð‰Ÿ‚·‚ƃZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚ªƒXƒNƒ[ƒ‹‚µA”Žš‚Ì -`0'``7'‚ð‰Ÿ‚·‚Æ‚ ‚é‚‚³ˆÈã‚̃ZƒNƒVƒ‡ƒ“‹æ؂肾‚¯‚ð‘I‚ñ‚Å•\Ž¦‚µ‚Ü‚·(ŽÀ -Û‚É‚â‚Á‚ÄŒ©‚ê‚Εª‚©‚è‚Ü‚·)B + ’Êí‚ÌsectionŒ^•âŠ®‚ÌŽž‚Ƀ~ƒjƒoƒbƒtƒ@‚Å`C-v'‚ð‰Ÿ‚·‚ÆŒ»Ý‘¶Ý‚·‚éƒZƒNƒVƒ‡ +ƒ“‹æØ‚èƒRƒ}ƒ“ƒh‘S‚Ä‚ð `*Sectioning Lines*'‚Æ‚¢‚¤ƒoƒbƒtƒ@‚Ɉꗗ•\Ž¦‚µ‚Ü‚· +(u<<--v‚̂‚¢‚Ä‚¢‚és‚ª‚à‚Á‚Æ‚à‹ß‚¢ƒZƒNƒVƒ‡ƒ“‹æØ‚è)B‚±‚ÌŽžƒ~ƒjƒoƒbƒtƒ@ +‚Å`C-p', `C-n' ‚ð‰Ÿ‚·‚Æ`part', `chapter', ..., `subparagraph' ‚̃Rƒ}ƒ“ƒh‚ª +˜_—ŠK‘w‚Ì‚‚³‚É‚µ‚½‚ª‚Á‚Ä㉺‚µ‚Ü‚·B‚Ü‚½A`C-v', `M-v' ‚ð‰Ÿ‚·‚ƃZƒNƒVƒ‡ +ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚ªƒXƒNƒ[ƒ‹‚µA”Žš‚Ì`0'``7'‚ð‰Ÿ‚·‚Æ‚ ‚é‚‚³ˆÈã‚̃Z +ƒNƒVƒ‡ƒ“‹æ؂肾‚¯‚ð‘I‚ñ‚Å•\Ž¦‚µ‚Ü‚·(ŽÀÛ‚É‚â‚Á‚ÄŒ©‚ê‚Εª‚©‚è‚Ü‚·)B `*Sectioning Lines*'ƒoƒbƒtƒ@‚ÍA `M-x YaTeX-section-overview' ... ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚𶬠-‚Å쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ð‘I‘ð‚µ”CˆÓ‚Ìs‚ŃXƒy[ƒX‚ð‰Ÿ‚· -‚ÆAŠY“–‚·‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ì‚ ‚é–{•¶’†‚ÌꊂɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚³‚ç‚ÉA -“¯ƒoƒbƒtƒ@‚Å `u' ‚ð‰Ÿ‚·‚ÆAƒ\[ƒXƒeƒLƒXƒg‚̑Ήž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ª -ˆêŠK‘wオ‚è(—á: subsection ‚ª section ‚É•Ï‚í‚é)A`d'‚ð‰Ÿ‚·‚ƈêŠK‘w‰º‚ª -‚è‚Ü‚·B`*Sectioning Lines*'ƒoƒbƒtƒ@‚É‚ ‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ìs‚ðƒ}[ƒN -‚µ‚Ä‚¨‚¢‚Ä`U'‚ð‰Ÿ‚·‚ƃŠƒWƒ‡ƒ““à‚Ì‚à‚̂ɑΉž‚·‚éƒ\[ƒXƒeƒLƒXƒg‚̃ZƒNƒVƒ‡ -ƒ“ƒRƒ}ƒ“ƒh‚·‚ׂĂªˆêŠK‘wオ‚èA`D'‚ð‰Ÿ‚·‚Ɖº‚ª‚è‚Ü‚·BƒZƒNƒVƒ‡ƒ“‹æØ‚è -ˆê——ƒoƒbƒtƒ@‚Å—˜—p‚Å‚«‚éƒL[ƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B +‚Å쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ð‘I‘ð‚µ”CˆÓ‚Ìs‚ŃXƒy[ƒX‚ð‰Ÿ‚·‚ÆA +ŠY“–‚·‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ì‚ ‚é–{•¶’†‚ÌꊂɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚³‚ç‚ÉA“¯ƒoƒb +ƒtƒ@‚Å `u' ‚ð‰Ÿ‚·‚ÆAƒ\[ƒXƒeƒLƒXƒg‚̑Ήž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ªˆêŠK‘wã +‚ª‚è(—á: subsection ‚ª section ‚É•Ï‚í‚é)A`d'‚ð‰Ÿ‚·‚ƈêŠK‘w‰º‚ª‚è‚Ü‚·B +`*Sectioning Lines*'ƒoƒbƒtƒ@‚É‚ ‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ìs‚ðƒ}[ƒN‚µ‚Ä‚¨‚¢‚Ä +`U'‚ð‰Ÿ‚·‚ƃŠƒWƒ‡ƒ““à‚Ì‚à‚̂ɑΉž‚·‚éƒ\[ƒXƒeƒLƒXƒg‚̃ZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚· +‚ׂĂªˆêŠK‘wオ‚èA`D'‚ð‰Ÿ‚·‚Ɖº‚ª‚è‚Ü‚·BƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚Å +—˜—p‚Å‚«‚éƒL[ƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B `SPC' ... ‘Ήž‚·‚éƒ\[ƒXs‚ÖƒWƒƒƒ“ƒv @@ -764,13 +754,12 @@ ƒ‰ƒxƒ‹Ž©“®¶¬ -------------- - `\ref{}' ‚â `\cite{}' ƒ}ƒNƒ‚ðsectionŒ^•âŠ®‚Å“ü‚ꂽꇎQÆæ‚ƂȂ蓾 -‚é‚à‚Ì‚ð‘S‚Ä’T‚µ‚ăƒjƒ…[‚É‚µ‚Ä‘I‘ð‚Å‚«‚Ü‚·BŽQÆæ‚É‚Í`\label{}'‚ð‚ -‚¯‚Ä‚¨‚­•K—v‚Í‚ ‚è‚Ü‚¹‚ñB‚à‚µ‚ ‚ê‚ÎA‚»‚̃‰ƒxƒ‹‚ðŽg‚¢A‚È‚¯‚ê‚΂»‚Ìê -‚ÅŽQÆæ‚É`\label{}'‚ðì‚点‚Ä‚­‚ê‚Ü‚·Bƒ‰ƒxƒ‹–¼‚ðl‚¦‚é‚Ì‚Í‹ê’É‚ÉŠ´‚¶ -‚é‚à‚Ì‚Å‚·B‘S‚ẴJƒEƒ“ƒ^‚Ƀ‰ƒxƒ‹‚ð‚‚¯‚é‚Ì‚à‚½‚¢‚Ö‚ñ‚Å‚·B‚à‚¤ƒ‰ƒxƒ‹ -–¼‚ɉ½‚ð‚‚¯‚é‚©Aƒ‰ƒxƒ‹‚ð‚‚¯‚é‚©‚‚¯‚Ü‚¢‚©A‚È‚Ç‚Æ‚¢‚¤‚±‚Æ‚Í–Y‚ê‚Ü‚µ‚å -‚¤! + `\ref{}' ‚â `\cite{}' ƒ}ƒNƒ‚ðsectionŒ^•âŠ®‚Å“ü‚ꂽꇎQÆæ‚ƂȂ蓾‚é +‚à‚Ì‚ð‘S‚Ä’T‚µ‚ăƒjƒ…[‚É‚µ‚Ä‘I‘ð‚Å‚«‚Ü‚·BŽQÆæ‚É‚Í`\label{}'‚ð‚‚¯‚Ä‚¨ +‚­•K—v‚Í‚ ‚è‚Ü‚¹‚ñB‚à‚µ‚ ‚ê‚ÎA‚»‚̃‰ƒxƒ‹‚ðŽg‚¢A‚È‚¯‚ê‚΂»‚Ìê‚ÅŽQÆæ‚É +`\label{}'‚ðì‚点‚Ä‚­‚ê‚Ü‚·Bƒ‰ƒxƒ‹–¼‚ðl‚¦‚é‚Ì‚Í‹ê’É‚ÉŠ´‚¶‚é‚à‚Ì‚Å‚·B‘S +‚ẴJƒEƒ“ƒ^‚Ƀ‰ƒxƒ‹‚ð‚‚¯‚é‚Ì‚à‚½‚¢‚Ö‚ñ‚Å‚·B‚à‚¤ƒ‰ƒxƒ‹–¼‚ɉ½‚ð‚‚¯‚é‚©A +ƒ‰ƒxƒ‹‚ð‚‚¯‚é‚©‚‚¯‚Ü‚¢‚©A‚È‚Ç‚Æ‚¢‚¤‚±‚Æ‚Í–Y‚ê‚Ü‚µ‚傤!  @@ -789,18 +778,18 @@ {\??? } (default large): -‚Æ•\Ž¦‚³‚ê‚é‚Ì‚ÅAã‹L‚Ì‚à‚Ì‚Æ“¯‚¶—v—̂ŕ⊮“ü—Í‚µ‚ĉº‚³‚¢B•âŠ®Œó•â‚É -—pˆÓ‚³‚ê‚Ä‚¢‚é‚Ì‚ÍA`footnotesize' ‚â `huge' ‚̂悤‚È•¶ŽšƒTƒCƒYŽw’èŽq‚ÆA -`bf'‚â`dg'‚̂悤‚ȃtƒHƒ“ƒgŽw’èŽq‚Å‚·B +‚Æ•\Ž¦‚³‚ê‚é‚Ì‚ÅAã‹L‚Ì‚à‚Ì‚Æ“¯‚¶—v—̂ŕ⊮“ü—Í‚µ‚ĉº‚³‚¢B•âŠ®Œó•â‚É—pˆÓ +‚³‚ê‚Ä‚¢‚é‚Ì‚ÍA`footnotesize' ‚â `huge' ‚̂悤‚È•¶ŽšƒTƒCƒYŽw’èŽq‚ÆA`bf' +‚â`dg'‚̂悤‚ȃtƒHƒ“ƒgŽw’èŽq‚Å‚·B Šù‚É‘‚¢‚½•¶Žš‚ðŠ‡‚é -------------------- - ‚Ü‚½AbeginŒ^•âŠ®‚ÌŽž‚Æ“¯—lAæ‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ˆê˜A‚Ì•¶Í‚Ì•¶Žš‚̃TƒC -ƒY‚ð•Ï‚¦‚½‚¢‚ÆŽv‚¤Žž‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚ÈŽž‚ÍAƒTƒCƒY‚â‘å‚«‚³‚ð•Ï‚¦ -‚½‚¢•¶Žš‚͈̔͂ðƒ}[ƒN‚µ‚Ä‚©‚çAŒÄ‚Ño‚µƒL[‚ð `[prefix] L' ‚ÆA‘啶Žš -‚Ì L‚É•Ï‚¦‚ČĂÑo‚¹‚ÎA‚»‚̃ŠƒWƒ‡ƒ“‘S‘Ì‚ªAƒuƒŒ[ƒX‚ň͂܂ê‚Ü‚·B + ‚Ü‚½AbeginŒ^•âŠ®‚ÌŽž‚Æ“¯—lAæ‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ˆê˜A‚Ì•¶Í‚Ì•¶Žš‚̃TƒCƒY +‚ð•Ï‚¦‚½‚¢‚ÆŽv‚¤Žž‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚ÈŽž‚ÍAƒTƒCƒY‚â‘å‚«‚³‚ð•Ï‚¦‚½‚¢•¶ +Žš‚͈̔͂ðƒ}[ƒN‚µ‚Ä‚©‚çAŒÄ‚Ño‚µƒL[‚ð `[prefix] L' ‚ÆA‘啶Žš‚Ì L ‚É•Ï +‚¦‚ČĂÑo‚¹‚ÎA‚»‚̃ŠƒWƒ‡ƒ“‘S‘Ì‚ªAƒuƒŒ[ƒX‚ň͂܂ê‚Ü‚·B  @@ -814,8 +803,8 @@ `[prefix] m' ... maketitle Œ^•âŠ®ŠJŽn -‚ÅAmaketitle Œ^•âŠ®‚ðŠJŽn‚µ‚Ü‚·B•âŠ®‚Ì—v—Ì‚Í¡‚Ü‚Å‚Ì‚à‚Ì‚Æ‚Ü‚Á‚½‚­“¯ -‚¶‚Å‚·BLaTeX —p‚̃Rƒ}ƒ“ƒh–¼‚ª•âŠ®Œó•â‚Æ‚µ‚Ä—pˆÓ‚³‚ê‚Ä‚¢‚Ü‚·B +‚ÅAmaketitle Œ^•âŠ®‚ðŠJŽn‚µ‚Ü‚·B•âŠ®‚Ì—v—Ì‚Í¡‚Ü‚Å‚Ì‚à‚Ì‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å +‚·BLaTeX —p‚̃Rƒ}ƒ“ƒh–¼‚ª•âŠ®Œó•â‚Æ‚µ‚Ä—pˆÓ‚³‚ê‚Ä‚¢‚Ü‚·B  @@ -824,15 +813,15 @@ Žž•âŠ® ======== - ‚³‚ÄA¡‚Ü‚Åq‚ׂ½“TŒ^“I‚È LaTeX ƒRƒ}ƒ“ƒhŒ`Ž®‚̕⊮“ü—Í‚ð—p‚¢‚¸‚ÉA¡ -“ü—Í‚µ‚悤‚Æ‚µ‚Ä‚¢‚é LaTeX ƒRƒ}ƒ“ƒh‚𕶑’†‚Ì”CˆÓ‚̈ʒu‚ÅŽž•âŠ®‚·‚邱 -‚Æ‚à‚Å‚«‚Ü‚·BLaTeX ƒRƒ}ƒ“ƒh(擪‚ª\‚ÅŽn‚Ü‚é)‚ð“ü—Í‚µ‚Ä‚¢‚é“r’†‚ÅA + ‚³‚ÄA¡‚Ü‚Åq‚ׂ½“TŒ^“I‚È LaTeX ƒRƒ}ƒ“ƒhŒ`Ž®‚̕⊮“ü—Í‚ð—p‚¢‚¸‚ÉA¡“ü +—Í‚µ‚悤‚Æ‚µ‚Ä‚¢‚é LaTeX ƒRƒ}ƒ“ƒh‚𕶑’†‚Ì”CˆÓ‚̈ʒu‚ÅŽž•âŠ®‚·‚邱‚Æ‚à +‚Å‚«‚Ü‚·BLaTeX ƒRƒ}ƒ“ƒh(擪‚ª\‚ÅŽn‚Ü‚é)‚ð“ü—Í‚µ‚Ä‚¢‚é“r’†‚ÅA `[prefix] SPC' ... Žž•âŠ® -‚ð“ü—Í‚·‚ê‚ÎA‘S‚Ă̕⊮Œó•â‚Ì’†‚©‚çˆê’v‚·‚é‚à‚Ì‚ª‘I‚΂êƒJ[ƒ\ƒ‹ˆÊ’u‚É -‘}“ü‚³‚ê‚Ü‚·B +‚ð“ü—Í‚·‚ê‚ÎA‘S‚Ă̕⊮Œó•â‚Ì’†‚©‚çˆê’v‚·‚é‚à‚Ì‚ª‘I‚΂êƒJ[ƒ\ƒ‹ˆÊ’u‚É‘}“ü +‚³‚ê‚Ü‚·B  @@ -842,9 +831,9 @@ ======= Œ»ÝŠJ‚¢‚½‚܂܂̊‹«–¼‚ðŽ©“®“I‚ÉŒŸo‚µA`\end{ŠÂ‹«–¼}'‚ð‘}“ü‚µ‚Ü‚·B -begin Œ^•âŠ®‚ð—p‚¢‚ê‚Ί‹«‚̕‚¶–Y‚ê‚Í‚È‚¢‚Ì‚Å‚·‚ªAŽž‚ɂ͂‚¢‚‚¢Žè‚Å -`\begin{ŠÂ‹«–¼}' ‚ð“ü‚ê‚Ä‚µ‚Ü‚¢A”ß‚µ‚¢Žv‚¢‚ð‚·‚é‚±‚Æ‚ª‚ ‚è‚Ü‚·B‚»‚Ì‚æ -‚¤‚ÈŽž‚É‚Í‹C‚É‚¹‚¸‘±‚¯‚Ä•¶Í‚ð“ü—Í‚µA‚µ‚©‚é‚Ì‚¿‚É +begin Œ^•âŠ®‚ð—p‚¢‚ê‚Ί‹«‚̕‚¶–Y‚ê‚Í‚È‚¢‚Ì‚Å‚·‚ªAŽž‚ɂ͂‚¢‚‚¢Žè‚Å +`\begin{ŠÂ‹«–¼}' ‚ð“ü‚ê‚Ä‚µ‚Ü‚¢A”ß‚µ‚¢Žv‚¢‚ð‚·‚é‚±‚Æ‚ª‚ ‚è‚Ü‚·B‚»‚̂悤 +‚ÈŽž‚É‚Í‹C‚É‚¹‚¸‘±‚¯‚Ä•¶Í‚ð“ü—Í‚µA‚µ‚©‚é‚Ì‚¿‚É `[prefix] e' ... end •âŠ® @@ -867,8 +856,8 @@ 1:` 2:' 3:^ 4:" 5:~ 6:= 7:. u v H t c d b -‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA”ŽšA‚Ü‚½‚͑Ήž‚·‚é‹L†/‰pŽš‚ð“ü—Í‚µ‚ĉº -‚³‚¢B‚·‚é‚Æ•ÒWƒoƒbƒtƒ@‚ÉA +‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA”ŽšA‚Ü‚½‚͑Ήž‚·‚é‹L†/‰pŽš‚ð“ü—Í‚µ‚ĉº‚³ +‚¢B‚·‚é‚Æ•ÒWƒoƒbƒtƒ@‚ÉA \`{} @@ -886,17 +875,17 @@ ==================== Žå‚É”Ž®ƒ‚[ƒh‚ÅŽg—p‚³‚ê‚éA–îˆó‚⃰‚È‚Ç‚Ì‹L†‚ð‹[Ž—“I‚É•\Œ»‚·‚éƒL[“ü—Í -‚ÅALaTeX ƒRƒ}ƒ“ƒh‚ð“ü—Í‚Å‚«‚Ü‚·B‚±‚ê‚Í–ì’¹Ž©g‚Ìu”Ž®ƒ‚[ƒhv‚Å‚Ì‚Ý -“®ì‚µ‚Ü‚·B–ì’¹‚̓J[ƒ\ƒ‹‚ªTeX‚Ì”Ž®ŠÂ‹«‚Ì’†‚É‚ ‚鎞‚É`;'‚âA -`:'‚É“ÁŽê‚È‹@”\‚ðŽ‚½‚¹‚Ü‚·B - - ‚³‚ÄA—Ⴆ‚ÎA©(leftarrow)‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡Aˆê”Ê“I‚É‚Í -u<-v‚̂悤‚É‚µ‚Ü‚·‚ªA‚±‚ê‚ð—˜—p‚µ‚ÄA”Ž®‹L†ƒCƒ[ƒW“ü—̓‚[ƒh‚Å -`\leftarrow'‚ð“ü—Í‚·‚é‚É‚ÍA`;'(ƒZƒ~ƒRƒƒ“)‚ð‘Å‚Á‚Ä‚©‚ç`<-'‚Æ“ü—Í‚µ‚Ü‚·B -“¯—l‚ÉA’·‚¢–îˆó©-(long-leftarrow) ‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡u<--v -‚Æ‚·‚é‚Ì‚ÅA`\longleftarrow'‚ð“ü—Í‚·‚邽‚ß‚É‚ÍA`;<--'‚Æ“ü—Í‚µ‚Ü‚·B‚  -‚é‚¢‚Í–³ŒÀ‘å‹L†‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚鎞‚Íuoov‚̂悤‚É‚·‚邱‚Æ‚©‚çA -`\infty' ‚ð“ü—Í‚·‚鎞‚ÍA`;oo'‚ƃL[“ü—Í‚µ‚Ü‚·B +‚ÅALaTeX ƒRƒ}ƒ“ƒh‚ð“ü—Í‚Å‚«‚Ü‚·B‚±‚ê‚Í–ì’¹Ž©g‚Ìu”Ž®ƒ‚[ƒhv‚Å‚Ì‚Ý“®ì +‚µ‚Ü‚·B–ì’¹‚̓J[ƒ\ƒ‹‚ªTeX‚Ì”Ž®ŠÂ‹«‚Ì’†‚É‚ ‚鎞‚É`;'‚âA`:'‚É“ÁŽê‚È‹@”\ +‚ðŽ‚½‚¹‚Ü‚·B + + ‚³‚ÄA—Ⴆ‚ÎA©(leftarrow)‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡Aˆê”Ê“I‚É‚Íu<-v +‚̂悤‚É‚µ‚Ü‚·‚ªA‚±‚ê‚ð—˜—p‚µ‚ÄA”Ž®‹L†ƒCƒ[ƒW“ü—̓‚[ƒh‚Å`\leftarrow' +‚ð“ü—Í‚·‚é‚É‚ÍA`;'(ƒZƒ~ƒRƒƒ“)‚ð‘Å‚Á‚Ä‚©‚ç`<-'‚Æ“ü—Í‚µ‚Ü‚·B“¯—l‚ÉA’·‚¢ +–îˆó©-(long-leftarrow) ‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡u<--v‚Æ‚·‚é‚Ì‚ÅA +`\longleftarrow'‚ð“ü—Í‚·‚邽‚ß‚É‚ÍA`;<--' ‚Æ“ü—Í‚µ‚Ü‚·B‚ ‚é‚¢‚Í–³ŒÀ‘å‹L +†‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚鎞‚Íuoov‚̂悤‚É‚·‚邱‚Æ‚©‚çA`\infty' ‚ð“ü—Í +‚·‚鎞‚ÍA`;oo'‚ƃL[“ü—Í‚µ‚Ü‚·B ‚±‚ê‚ç‚Ì‘€ì‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B @@ -909,18 +898,16 @@ - ‚¢‚¸‚ê‚ÌꇂàAƒCƒ[ƒW“ü—Í‚ðs‚Á‚Ä‚¢‚é“r’†‚Å–]‚Ý‚Ì‚à‚Ì‚ªƒoƒbƒtƒ@‚É -•\Ž¦‚³‚ꂽ‚È‚çA‚»‚±‚ŃCƒ[ƒW“ü—Í‚ðŽ~‚ß‚ÄŽŸ‚Ì•ÒW“®ì‚ɈڂÁ‚Ä‚à\‚¢‚Ü -‚¹‚ñB - - ”Ž®ŠÂ‹«’†‚Å`;'Ž©g‚ð“ü—Í‚·‚é‚É‚Í`;;'‚̂悤‚É‚µ‚Ü‚·BƒCƒ[ƒW“ü—Í‚Ì“r -’†‚ÅTAB‚ð‰Ÿ‚·‚ÆA‚»‚ê‚Ü‚Å“ü—Í‚µ‚½•¶Žš‚ÅŽn‚Ü‚é‚à‚̈ꗗ‚ª•\Ž¦‚³‚ê‚Ü‚·B‚± -‚±‚Å–Ú“I‚Ì LaTeX ƒRƒ}ƒ“ƒh‚܂ŃJ[ƒ\ƒ‹‚ðˆÚ“®‚µÄ“xTAB‚ð‰Ÿ‚·‚±‚Æ‚Å‚»‚Ì -LaTeX ƒRƒ}ƒ“ƒh‚ªƒoƒbƒtƒ@‚É‘}“ü‚³‚ê‚Ü‚·B - - ‚ǂ̃L[“ü—Í‚É‚Ç‚Ì‹L†‚ª‘Ήž‚µ‚Ä‚¢‚é‚©‘S‚Ä’m‚肽‚¢Žž‚ÍA`;'‚ð‰Ÿ‚µ‚½’¼ -Œã‚ÉTAB‚ð‰Ÿ‚µ‚Ä‚­‚¾‚³‚¢BˆÈ‰º‚Ì—á‚ÍA`;<'‚ƉŸ‚µ‚½Œã‚ÉTAB‚ð‰Ÿ‚µ‚½‚à‚Ì‚Å -‚·B + ‚¢‚¸‚ê‚ÌꇂàAƒCƒ[ƒW“ü—Í‚ðs‚Á‚Ä‚¢‚é“r’†‚Å–]‚Ý‚Ì‚à‚Ì‚ªƒoƒbƒtƒ@‚É•\Ž¦ +‚³‚ꂽ‚È‚çA‚»‚±‚ŃCƒ[ƒW“ü—Í‚ðŽ~‚ß‚ÄŽŸ‚Ì•ÒW“®ì‚ɈڂÁ‚Ä‚à\‚¢‚Ü‚¹‚ñB + + ”Ž®ŠÂ‹«’†‚Å`;'Ž©g‚ð“ü—Í‚·‚é‚É‚Í`;;'‚̂悤‚É‚µ‚Ü‚·BƒCƒ[ƒW“ü—Í‚Ì“r’† +‚ÅTAB‚ð‰Ÿ‚·‚ÆA‚»‚ê‚Ü‚Å“ü—Í‚µ‚½•¶Žš‚ÅŽn‚Ü‚é‚à‚̈ꗗ‚ª•\Ž¦‚³‚ê‚Ü‚·B‚±‚±‚Å +–Ú“I‚Ì LaTeX ƒRƒ}ƒ“ƒh‚܂ŃJ[ƒ\ƒ‹‚ðˆÚ“®‚µÄ“xTAB‚ð‰Ÿ‚·‚±‚Æ‚Å‚»‚Ì LaTeX ƒR +ƒ}ƒ“ƒh‚ªƒoƒbƒtƒ@‚É‘}“ü‚³‚ê‚Ü‚·B + + ‚ǂ̃L[“ü—Í‚É‚Ç‚Ì‹L†‚ª‘Ήž‚µ‚Ä‚¢‚é‚©‘S‚Ä’m‚肽‚¢Žž‚ÍA`;'‚ð‰Ÿ‚µ‚½’¼Œã +‚ÉTAB‚ð‰Ÿ‚µ‚Ä‚­‚¾‚³‚¢BˆÈ‰º‚Ì—á‚ÍA`;<'‚ƉŸ‚µ‚½Œã‚ÉTAB‚ð‰Ÿ‚µ‚½‚à‚Ì‚Å‚·B KEY LaTeX sequence sign < \leq … @@ -928,18 +915,17 @@ <- \leftarrow © <= \Leftarrow <= -¶‚©‚ç[“ü—̓L[]A[‘Ήž‚·‚é LaTeX ƒRƒ}ƒ“ƒh]A[(‹[Ž—)‹L†}Ž¦]A‚Æ‚¢‚¤‡ -‚Ńƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA‚æ‚­Žg‚¤‚à‚Ì‚ðŠo‚¦‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B‚à‚Ì -‚É‚æ‚Á‚Ä‚ÍASCII•¶Žš‚Å•\Œ»‚·‚邱‚Æ‚ª¢“ï‚È‚Ì‚ÅA‚ ‚Ü‚èŠo‚¦‚â‚·‚¢ƒL[•À‚Ñ -‚Å‚Í‚È‚¢‚à‚Ì‚ª‚ ‚é‚Å‚µ‚傤‚©‚çA‚»‚̂悤‚ÈꇂÍ\maketitle Œ^•âŠ®‚Å“ü—Í -‚·‚é‚©AˆÈ‰º‚Éq‚ׂé‘Ήž•\‚ÌÝ’è‚ðs‚Á‚Ä’Pƒ‚ȃL[•À‚Ñ‚Ì‚à‚Ì‚ðÝ’è‚·‚é -‚Æ—Ç‚¢‚Å‚µ‚傤B - - “ü—̓L[‚Æ LaTeX ƒRƒ}ƒ“ƒhA‹L†‚̑Ήž•\‚ðŒÂl“I‚Éݒ肵‚½‚¢ê‡‚Í -Emacs-Lisp •Ï” `YaTeX-math-sign-alist-private' ‚É’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚» -‚Ì“à—e‚ƃfƒtƒHƒ‹ƒg‚Ì‚à‚Ì‚ð‡‚킹‚½‚à‚Ì‚ª‘Ήž•\‚Æ‚µ‚ÄŽg—p‚³‚ê‚Ü‚· -(private‚Ì•û‚ª—D悳‚ê‚é)B‚È‚¨A‚±‚Ì•Ï”‚Ì\‘¢‚ɂ‚¢‚Ä‚Í -`yatexmth.el' ‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B +¶‚©‚ç[“ü—̓L[]A[‘Ήž‚·‚é LaTeX ƒRƒ}ƒ“ƒh]A[(‹[Ž—)‹L†}Ž¦]A‚Æ‚¢‚¤‡‚Å +ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA‚æ‚­Žg‚¤‚à‚Ì‚ðŠo‚¦‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B‚à‚Ì‚É‚æ‚Á +‚Ä‚ÍASCII•¶Žš‚Å•\Œ»‚·‚邱‚Æ‚ª¢“ï‚È‚Ì‚ÅA‚ ‚Ü‚èŠo‚¦‚â‚·‚¢ƒL[•À‚Ñ‚Å‚Í‚È‚¢ +‚à‚Ì‚ª‚ ‚é‚Å‚µ‚傤‚©‚çA‚»‚̂悤‚Èê‡‚Í \maketitle Œ^•âŠ®‚Å“ü—Í‚·‚é‚©AˆÈ +‰º‚Éq‚ׂé‘Ήž•\‚ÌÝ’è‚ðs‚Á‚Ä’Pƒ‚ȃL[•À‚Ñ‚Ì‚à‚Ì‚ðÝ’è‚·‚é‚Æ—Ç‚¢‚Å‚µ‚傤B + + “ü—̓L[‚Æ LaTeX ƒRƒ}ƒ“ƒhA‹L†‚̑Ήž•\‚ðŒÂl“I‚Éݒ肵‚½‚¢ê‡‚Í +Emacs-Lisp •Ï” `YaTeX-math-sign-alist-private' ‚É’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚»‚Ì“à +—e‚ƃfƒtƒHƒ‹ƒg‚Ì‚à‚Ì‚ð‡‚킹‚½‚à‚Ì‚ª‘Ήž•\‚Æ‚µ‚ÄŽg—p‚³‚ê‚Ü‚·(private ‚Ì•û +‚ª—D悳‚ê‚é)B‚È‚¨A‚±‚Ì•Ï”‚Ì\‘¢‚ɂ‚¢‚Ä‚Í `yatexmth.el' ‚ðŽQÆ‚µ‚Ä‚­‚¾ +‚³‚¢B  @@ -948,16 +934,16 @@ ƒMƒŠƒVƒƒ•¶Žš•âŠ® ================ - ‚à‚¤ˆê‚ÂA”Ž®ŠÂ‹«’†‚Å`:'‚ð‰Ÿ‚·‚ƃMƒŠƒVƒƒ•¶Žš“ü—̓‚[ƒh‚É“ü‚è‚Ü‚·B -`:'‚ð‰Ÿ‚µ‚½’¼Œã‚É`a'‚ð‰Ÿ‚·‚Æ`\alpha'‚ªA`g' ‚ð‰Ÿ‚·‚Æ `\gamma'‚ªA‚ȂǃA -ƒ‹ƒtƒ@ƒxƒbƒg‚ɑΉž‚µ‚½ƒMƒŠƒVƒƒ•¶Žš‚ª‘}“ü‚³‚ê‚Ü‚·B‘€ì•û–@‚Í;‚Ì”Ž®‹L† -•âŠ®‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å‚·B‚Ü‚¸‚Í`:'‚Ì’¼Œã‚ÉTAB‚ð‰Ÿ‚µ‚Ăǂ̃Aƒ‹ƒtƒ@ƒxƒbƒg -‚ɂǂ̃MƒŠƒVƒƒ•¶Žš‚ª‘Ήž‚µ‚Ä‚¢‚é‚©’²‚ׂĂ݂Ă­‚¾‚³‚¢B - - `;'‚Æ`:'‚𔎮ŠÂ‹«’†‚ʼnŸ‚µ‚Ä‚¢‚é‚É‚à‚©‚©‚í‚炸AƒCƒ[ƒW•âŠ®‚ª“­‚©‚È -‚¢ê‡‚ÍA`C-u ;'‚̂悤‚É universal-argument ‚ð‚‚¯‚ăL[‚ð‰Ÿ‚·‚±‚Æ‚É‚æ -‚èA‹­§“I‚ɃCƒ[ƒW•âŠ®‚É“ü‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A‚±‚ÌŽž‚ɂǂ̂悤‚È -ó‘Ô‚Å”Ž®ŠÂ‹«“à”»’è‚ÉŽ¸”s‚µ‚½‚©‚ð‚²˜A—‰º‚³‚¢B + ‚à‚¤ˆê‚ÂA”Ž®ŠÂ‹«’†‚Å`:'‚ð‰Ÿ‚·‚ƃMƒŠƒVƒƒ•¶Žš“ü—̓‚[ƒh‚É“ü‚è‚Ü‚·B`:'‚ð +‰Ÿ‚µ‚½’¼Œã‚É`a'‚ð‰Ÿ‚·‚Æ`\alpha'‚ªA`g' ‚ð‰Ÿ‚·‚Æ `\gamma'‚ªA‚ȂǃAƒ‹ƒtƒ@ƒxƒb +ƒg‚ɑΉž‚µ‚½ƒMƒŠƒVƒƒ•¶Žš‚ª‘}“ü‚³‚ê‚Ü‚·B‘€ì•û–@‚Í;‚Ì”Ž®‹L†•âŠ®‚Æ‚Ü‚Á‚½ +‚­“¯‚¶‚Å‚·B‚Ü‚¸‚Í`:'‚Ì’¼Œã‚ÉTAB‚ð‰Ÿ‚µ‚Ăǂ̃Aƒ‹ƒtƒ@ƒxƒbƒg‚ɂǂ̃MƒŠƒVƒƒ•¶ +Žš‚ª‘Ήž‚µ‚Ä‚¢‚é‚©’²‚ׂĂ݂Ă­‚¾‚³‚¢B + + `;'‚Æ`:'‚𔎮ŠÂ‹«’†‚ʼnŸ‚µ‚Ä‚¢‚é‚É‚à‚©‚©‚í‚炸AƒCƒ[ƒW•âŠ®‚ª“­‚©‚È‚¢ê +‡‚ÍA`C-u ;'‚̂悤‚É universal-argument ‚ð‚‚¯‚ăL[‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èA‹­ +§“I‚ɃCƒ[ƒW•âŠ®‚É“ü‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A‚±‚ÌŽž‚ɂǂ̂悤‚Èó‘Ô‚Å”Ž® +ŠÂ‹«“à”»’è‚ÉŽ¸”s‚µ‚½‚©‚ð‚²˜A—‰º‚³‚¢B  @@ -966,23 +952,23 @@ ƒ[ƒJƒ‹Ž«‘ ************ - •âŠ®“ü—Í—p‚ÌŒó•â‚ÍŽOŽí—Þ‚ÌŽ«‘‚©‚ç\¬‚³‚ê‚Ä‚¢‚Ü‚·Bˆê‚‚Í`yatex.el' -‚É‘g‚Ýž‚܂ꂽu•W€Ž«‘vA‚à‚¤ˆê‚‚̓†[ƒU‚ªŒÂl“I‚Éí—p‚·‚éƒRƒ}ƒ“ƒh -‚ð•Û‘¶‚·‚éuƒ†[ƒUŽ«‘vA‚»‚µ‚Ä‚à‚¤‚ЂƂ‚͂ ‚éƒfƒBƒŒƒNƒgƒŠ‚Å‚Ì‚Ý—LŒø -‚ȃRƒ}ƒ“ƒh‚ð•Û‘¶‚·‚éuƒ[ƒJƒ‹Ž«‘v‚Å‚·B - - •âŠ®“ü—ÍŽž‚ÉV‚µ‚¢’PŒê‚ð“ü‚ꂽꇂÉA‚»‚Ì’PŒê‚ð‚Ç‚ÌŽ«‘‚É“ü‚ê‚é‚©•· -‚¢‚Ä—ˆ‚Ü‚·B + •âŠ®“ü—Í—p‚ÌŒó•â‚ÍŽOŽí—Þ‚ÌŽ«‘‚©‚ç\¬‚³‚ê‚Ä‚¢‚Ü‚·Bˆê‚‚Í`yatex.el'‚É‘g +‚Ýž‚܂ꂽu•W€Ž«‘vA‚à‚¤ˆê‚‚̓†[ƒU‚ªŒÂl“I‚Éí—p‚·‚éƒRƒ}ƒ“ƒh‚ð•Û‘¶‚· +‚éuƒ†[ƒUŽ«‘vA‚»‚µ‚Ä‚à‚¤‚ЂƂ‚͂ ‚éƒfƒBƒŒƒNƒgƒŠ‚Å‚Ì‚Ý—LŒø‚ȃRƒ}ƒ“ƒh‚ð +•Û‘¶‚·‚éuƒ[ƒJƒ‹Ž«‘v‚Å‚·B + + •âŠ®“ü—ÍŽž‚ÉV‚µ‚¢’PŒê‚ð“ü‚ꂽꇂÉA‚»‚Ì’PŒê‚ð‚Ç‚ÌŽ«‘‚É“ü‚ê‚é‚©•·‚¢‚Ä +—ˆ‚Ü‚·B `foo' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ɑ΂µA`u'‚Æ“š‚¦‚é‚Æuƒ†[ƒUŽ«‘v‚ðA`l'‚Æ“š‚¦‚é‚ƃ[ -ƒJƒ‹Ž«‘‚ðXV‚µA`n'‚Æ“š‚¦‚é‚ÆŽ«‘ƒtƒ@ƒCƒ‹‚ÍXV‚¹‚¸Œ»Ý‚ÌEmacsƒZƒbƒVƒ‡ -ƒ“‚Ì‚Ý—LŒø‚È’PŒê‚Æ‚µA`d'‚Æ“š‚¦‚é‚ÆV‚½‚È’PŒê‚ðŠwK‚¹‚¸‚Ɏ̂Ă邱‚Æ‚É‚È -‚è‚Ü‚·B - - ‚à‚µAƒ[ƒJƒ‹Ž«‘‚Ì‹@”\‚Í‚¢‚炸A‘S‚ă†[ƒUŽ«‘‚ÌXV‚Ì‚Ý‚Å‚æ‚¢‚ÆŒ¾ -‚¤ê‡‚É‚Í`~/.emacs'‚È‚Ç‚ÅA +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ɑ΂µA`u'‚Æ“š‚¦‚é‚Æuƒ†[ƒUŽ«‘v‚ðA`l'‚Æ“š‚¦‚é‚ƃ[ƒJ +ƒ‹Ž«‘‚ðXV‚µA`n'‚Æ“š‚¦‚é‚ÆŽ«‘ƒtƒ@ƒCƒ‹‚ÍXV‚¹‚¸Œ»Ý‚ÌEmacs ƒZƒbƒVƒ‡ƒ“ +‚Ì‚Ý—LŒø‚È’PŒê‚Æ‚µA`d'‚Æ“š‚¦‚é‚ÆV‚½‚È’PŒê‚ðŠwK‚¹‚¸‚Ɏ̂Ă邱‚Æ‚É‚È‚è‚Ü +‚·B + + ‚à‚µAƒ[ƒJƒ‹Ž«‘‚Ì‹@”\‚Í‚¢‚炸A‘S‚ă†[ƒUŽ«‘‚ÌXV‚Ì‚Ý‚Å‚æ‚¢‚ÆŒ¾‚¤ê +‡‚É‚Í`~/.emacs'‚È‚Ç‚ÅA (setq YaTeX-nervous nil) @@ -996,8 +982,8 @@ ************** - LaTeX‚Ì•ÒW‚É‚ÍŽŽsöŒë‚ª‚‚«‚à‚Ì‚Å‚·B‚ ‚é•”•ª‚ðˆêŠ‡‚ŃRƒƒ“ƒgƒAƒEƒg -‚µ‚½‚èAƒRƒƒ“ƒg‚ðŠO‚µ‚½‚肵‚½‚¢‚±‚Æ‚ª‚ ‚è‚Ü‚·B + LaTeX‚Ì•ÒW‚É‚ÍŽŽsöŒë‚ª‚‚«‚à‚Ì‚Å‚·B‚ ‚é•”•ª‚ðˆêŠ‡‚ŃRƒƒ“ƒgƒAƒEƒg‚µ +‚½‚èAƒRƒƒ“ƒg‚ðŠO‚µ‚½‚肵‚½‚¢‚±‚Æ‚ª‚ ‚è‚Ü‚·B `[prefix] >' ... ƒŠƒWƒ‡ƒ“‚ð % ‚ŃRƒƒ“ƒgƒAƒEƒg @@ -1011,15 +997,15 @@ `[prefix] ,' ... Œ»Ý‚̃pƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŠO‚· -‚ÍAƒJ[ƒ\ƒ‹‚̈ʒu‚·‚éƒpƒ‰ƒOƒ‰ƒt‘S‘̂ɑ΂µ‚Ä‚Ì‘€ì‚Å‚·B‚È‚¨A‚±‚±‚Å‚¢ -‚¤uƒpƒ‰ƒOƒ‰ƒtv‚Í (`mark-paragraph') ŠÖ”‚É‚æ‚èƒ}[ƒN‚³‚ê‚é”͈͂ðŽw‚µ -‚Ü‚·(•W€Ý’è‚Å`ESC h'‚ɃoƒCƒ“ƒh‚³‚ê‚Ä‚¢‚é)B‚È‚¨AŠù‚É`%'‚ŃRƒƒ“ƒgƒA -ƒEƒg‚³‚ê‚Ä‚¢‚éƒpƒ‰ƒOƒ‰ƒt‚ɑ΂µ‚ÄŒJ‚è•Ô‚µƒpƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŽg—p‚µ‚½ -ꇂ̓®ì‚Í•ÛØ‚µ‚Ü‚¹‚ñ‚̂Ō䒈ӂ­‚¾‚³‚¢B - - ‚³‚ÄA•¶Í‚ɑ΂µ‚Ä‚¾‚¯‚Å‚È‚­AŽž‚É‚Í`\begin', `\end' Ž©‘Ì‚É‘Î -‚µ‚Ä‚àƒRƒƒ“ƒgƒAƒEƒg‚Ì‘€ì‚ð‚µ‚½‚¢‚Æ‚«‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚È‚Æ‚«‚ÍA -`\begin{}' ‚ ‚é‚¢‚Í `\end{}' ‚Ìs‚ɃJ[ƒ\ƒ‹‚ð‡‚킹A +‚ÍAƒJ[ƒ\ƒ‹‚̈ʒu‚·‚éƒpƒ‰ƒOƒ‰ƒt‘S‘̂ɑ΂µ‚Ä‚Ì‘€ì‚Å‚·B‚È‚¨A‚±‚±‚Å‚¢‚¤ +uƒpƒ‰ƒOƒ‰ƒtv‚Í (`mark-paragraph') ŠÖ”‚É‚æ‚èƒ}[ƒN‚³‚ê‚é”͈͂ðŽw‚µ‚Ü‚· +(•W€Ý’è‚Å`ESC h'‚ɃoƒCƒ“ƒh‚³‚ê‚Ä‚¢‚é)B‚È‚¨AŠù‚É`%'‚ŃRƒƒ“ƒgƒAƒEƒg‚³‚ê +‚Ä‚¢‚éƒpƒ‰ƒOƒ‰ƒt‚ɑ΂µ‚ÄŒJ‚è•Ô‚µƒpƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŽg—p‚µ‚½ê‡‚Ì“®ì‚Í +•ÛØ‚µ‚Ü‚¹‚ñ‚̂Ō䒈ӂ­‚¾‚³‚¢B + + ‚³‚ÄA•¶Í‚ɑ΂µ‚Ä‚¾‚¯‚Å‚È‚­AŽž‚É‚Í`\begin', `\end' Ž©‘̂ɑ΂µ‚Ä‚àƒRƒ +ƒ“ƒgƒAƒEƒg‚Ì‘€ì‚ð‚µ‚½‚¢‚Æ‚«‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚È‚Æ‚«‚ÍA`\begin{}' ‚ ‚é +‚¢‚Í `\end{}' ‚Ìs‚ɃJ[ƒ\ƒ‹‚ð‡‚킹A `[prefix] >' ... `\begin{}'``\end{}' ‘S‚ăRƒƒ“ƒgƒAƒEƒg @@ -1033,11 +1019,10 @@ `[prefix] ,' ... `\begin{}' ‚Æ `\end{}' ‚̃Rƒƒ“ƒg‚ðŠO‚· -‚ÍA‘Ήž‚·‚é `\begin' ‚Æ `\end' 2s‚¾‚¯‚ðAƒRƒƒ“ƒg‘€ì‚Ì‘ÎÛ‚Æ‚µ‚Ü‚·B -ƒŠƒWƒ‡ƒ“‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚悤‚Æ‚µ‚ÄAƒ}[ƒN‚ðݒ肵‚½‚Ì‚¿‚ɃJ[ƒ\ƒ‹‚ð -ˆÚ“®‚µ`[preifx] >' ‚ð‰Ÿ‚µ‚Ä‚àƒJ[ƒ\ƒ‹‚ª `\begin{}' ‚Ìã‚É‚ ‚é‚Æ -`\begin{}'``\end{}'ƒ‚[ƒh‚ŃRƒƒ“ƒg‹@”\‚ª“­‚¢‚Ä‚µ‚Ü‚¤‚Ì‚Å’ˆÓ‚µ‚ĉº‚³ -‚¢B +‚ÍA‘Ήž‚·‚é `\begin' ‚Æ `\end' 2s‚¾‚¯‚ðAƒRƒƒ“ƒg‘€ì‚Ì‘ÎÛ‚Æ‚µ‚Ü‚·BƒŠ +ƒWƒ‡ƒ“‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚悤‚Æ‚µ‚ÄAƒ}[ƒN‚ðݒ肵‚½‚Ì‚¿‚ɃJ[ƒ\ƒ‹‚ðˆÚ“®‚µ +`[preifx] >' ‚ð‰Ÿ‚µ‚Ä‚àƒJ[ƒ\ƒ‹‚ª `\begin{}' ‚Ìã‚É‚ ‚é‚Æ`\begin{}'` +`\end{}'ƒ‚[ƒh‚ŃRƒƒ“ƒg‹@”\‚ª“­‚¢‚Ä‚µ‚Ü‚¤‚Ì‚Å’ˆÓ‚µ‚ĉº‚³‚¢B  @@ -1049,11 +1034,11 @@ * Menu: -* ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv:: -* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®:: -* ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv:: -* ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv:: -* ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv:: +* ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv:: +* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®:: +* ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv:: +* ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv:: +* ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv::  @@ -1067,8 +1052,8 @@ `[prefix] g' ... ‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv -‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌLaTeXƒRƒ}ƒ“ƒh‚ɑΉž‚·‚éꊂɃWƒƒƒ“ƒv‚µ -‚Ü‚·B‘ΉžŠÖŒW‚ª‘¶Ý‚·‚é‚ƉðŽß‚³‚ê‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B +‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌLaTeXƒRƒ}ƒ“ƒh‚ɑΉž‚·‚éꊂɃWƒƒƒ“ƒv‚µ‚Ü +‚·B‘ΉžŠÖŒW‚ª‘¶Ý‚·‚é‚ƉðŽß‚³‚ê‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B * `\begin{}' ©¨ `\end{}' * `%#BEGIN' ©¨ `%#END' @@ -1077,23 +1062,22 @@ * `\include(\input)' ¨ ‘Ήž‚·‚éƒtƒ@ƒCƒ‹ * `\bibitem{}' ©¨ `\cite{}' - `\begin{}' ‚© `\end{}' ‚Ìs‚Å`[prefix] g'‚ð‰Ÿ‚·‚±‚Æ‚É -‚æ‚èA‘Ήž‚·‚é`end/begin'‚Ìs‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚à‚¿‚ë‚ñ‘Ήž‚·‚é‚à‚Ì‚ª -‚È‚¢ê‡‚̓Gƒ‰[‚É‚È‚è‚Ü‚·B‚Ü‚½‚±‚ê‚ÍA—̈æŒÅ’è‚Ì‚½‚ß‚Ì `%#BEGIN' ‚Æ -`%#END' ‚̃yƒA‚ɑ΂µ‚Ä‚à“¯—l‚É“®ì‚µ‚Ü‚·B‚È‚¨A`label/ref'‚â -`cite/bibitem'‘Ήž‚·‚é‚à‚Ì‚ª•Êƒtƒ@ƒCƒ‹‚É‚ ‚鎞‚ÍAƒWƒƒƒ“ƒvæ‚Æ‚È‚éƒtƒ@ -ƒCƒ‹‚ªƒI[ƒvƒ“‚³‚ê‚Ä‚¢‚È‚¯‚ê‚΂Ȃè‚Ü‚¹‚ñB*Note %#notation::. -ƒƒCƒ“‚Ì .tex ƒtƒ@ƒCƒ‹‚Ì `\include{chap1}' ‚ȂǂɃJ[ƒ\ƒ‹‚ð‡‚킹A -`[prefix] g' ‚ð‰Ÿ‚·‚ÆA`chap1.tex' ‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B + `\begin{}' ‚© `\end{}' ‚Ìs‚Å`[prefix] g'‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èA‘Ήž‚·‚é +`end/begin'‚Ìs‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚à‚¿‚ë‚ñ‘Ήž‚·‚é‚à‚Ì‚ª‚È‚¢ê‡‚̓Gƒ‰[‚É +‚È‚è‚Ü‚·B‚Ü‚½‚±‚ê‚ÍA—̈æŒÅ’è‚Ì‚½‚ß‚Ì `%#BEGIN' ‚Æ `%#END' ‚̃yƒA‚ɑ΂µ‚Ä +‚à“¯—l‚É“®ì‚µ‚Ü‚·B‚È‚¨A`label/ref'‚â`cite/bibitem'‘Ήž‚·‚é‚à‚Ì‚ª•Êƒtƒ@ +ƒCƒ‹‚É‚ ‚鎞‚ÍAƒWƒƒƒ“ƒvæ‚Æ‚È‚éƒtƒ@ƒCƒ‹‚ªƒI[ƒvƒ“‚³‚ê‚Ä‚¢‚È‚¯‚ê‚΂Ȃè‚Ü‚¹ +‚ñB*Note %#notation::. ƒƒCƒ“‚Ì .tex ƒtƒ@ƒCƒ‹‚Ì `\include{chap1}' ‚È‚Ç‚É +ƒJ[ƒ\ƒ‹‚ð‡‚킹A`[prefix] g' ‚ð‰Ÿ‚·‚ÆA`chap1.tex' ‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B ‚Ü‚½A `[prefix] 4 g' ... •ÊƒEƒBƒ“ƒhƒE‚őΉžƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv -‚ð‰Ÿ‚·‚ÆA‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv‚ð•ÊƒEƒBƒ“ƒhƒE‚Ås‚¢‚Ü‚·B‚½ -‚¾‚µA‚±‚Ì‹@”\‚Í `begin/end', `%#BEGIN/%#END' ŠÔ‚̃Wƒƒƒ“ƒv‚ɑ΂µ‚Ä‚Í(ˆÓ -–¡‚ª‚È‚¢‚ÆŽv‚í‚ê‚é‚Ì‚Å)‹@”\‚µ‚È‚¢‚Ì‚Å’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B +‚ð‰Ÿ‚·‚ÆA‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv‚ð•ÊƒEƒBƒ“ƒhƒE‚Ås‚¢‚Ü‚·B‚½‚¾‚µA +‚±‚Ì‹@”\‚Í `begin/end', `%#BEGIN/%#END' ŠÔ‚̃Wƒƒƒ“ƒv‚ɑ΂µ‚Ä‚Í(ˆÓ–¡‚ª‚È‚¢ +‚ÆŽv‚í‚ê‚é‚Ì‚Å)‹@”\‚µ‚È‚¢‚Ì‚Å’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B  @@ -1102,29 +1086,28 @@ ‚¨ŠG•`‚«ƒc[ƒ‹‹N“® ================== -ã‹L‚Ìu‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒv‚Æ‚ÍA—Ⴆ‚Î -`\epsfile{file=foo}' ‚̂悤‚È‘}ŠGŽæ‚螂݃Rƒ}ƒ“ƒh‚Ì‚±‚Æ‚ÅA‚±‚Ìs‚ɃJ[ -ƒ\ƒ‹‚ð‡‚킹‚Ä`[prefix] g'‚ð‰Ÿ‚·‚Æ‚»‚̉摜ƒtƒ@ƒCƒ‹‚ÌŒ³‚Æ‚È‚Á‚½ƒtƒ@ƒCƒ‹ -‚ð‘Ήž‚·‚邨ŠG•`‚«ƒc[ƒ‹‚ð‹N“®‚µ‚ăI[ƒvƒ“‚µ‚Ü‚·B‹N“®‚·‚éƒc[ƒ‹‚Ì”»’è -‚͈ȉº‚̂悤‚É‚È‚³‚ê‚Ü‚·B - - 1. ƒJƒŒƒ“ƒgs‚ª•Ï” `YaTeX-processed-file-regexp-alist' ‚É’è‹`‚³‚ê‚Ä - ‚¢‚鳋K•\Œ»‚Ì‚¢‚¸‚ê‚©‚ƃ}ƒbƒ`‚µ‚½‚çAƒtƒ@ƒCƒ‹–¼‚É‘Š“–‚·‚é•”•ª‚ð - (\\)‚©‚甲‚«o‚µ‚ÄŠo‚¦‚Ä‚¨‚­(‰½”Ô–Ú‚Ì\\(\\)‚©‚Í•Ï”‚ÌŠeƒŠƒXƒg‚Ì - cdr •”‚É“ü‚ê‚Ä‚¨‚­)Bƒ}ƒbƒ`‚µ‚È‚¯‚ê‚Ή½‚à‚µ‚È‚¢B - 2. s––‚ÉA•Ï” `YaTeX-file-processor-alist' ‚É“o˜^‚³‚ê‚Ä‚¢‚éƒRƒ}ƒ“ƒh - ‚ªu%ƒRƒ}ƒ“ƒhv ‚̂悤‚É‘‚¢‚Ä‚ ‚ê‚΋­§“I‚ÉuƒRƒ}ƒ“ƒh ƒtƒ@ƒCƒ‹ - –¼.Šg’£Žqv‚ð‹N“®B - 3. ‚È‚¯‚ê‚ÎA•Ï” `YaTeX-file-processor-alist' ‚ÌŠeƒŠƒXƒg‚Ìcdr•”‚É“ü‚Á - ‚Ä‚¢‚éŠg’£Žq‚ðuƒtƒ@ƒCƒ‹–¼v‚ÌŒã‚ë‚É‘«‚µ‚½ƒtƒ@ƒCƒ‹‚ª‘¶Ý‚·‚é‚©‡ŽŸ - ’²‚ׂÄA‘¶Ý‚µ‚½ê‡car•”‚É“ü‚Á‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éB +ã‹L‚Ìu‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒv‚Æ‚ÍA—Ⴆ‚Î `\epsfile{file=foo}' ‚Ì +‚悤‚È‘}ŠGŽæ‚螂݃Rƒ}ƒ“ƒh‚Ì‚±‚Æ‚ÅA‚±‚Ìs‚ɃJ[ƒ\ƒ‹‚ð‡‚킹‚Ä`[prefix] g' +‚ð‰Ÿ‚·‚Æ‚»‚̉摜ƒtƒ@ƒCƒ‹‚ÌŒ³‚Æ‚È‚Á‚½ƒtƒ@ƒCƒ‹‚ð‘Ήž‚·‚邨ŠG•`‚«ƒc[ƒ‹‚ð‹N“® +‚µ‚ăI[ƒvƒ“‚µ‚Ü‚·B‹N“®‚·‚éƒc[ƒ‹‚Ì”»’è‚͈ȉº‚̂悤‚É‚È‚³‚ê‚Ü‚·B + + 1. ƒJƒŒƒ“ƒgs‚ª•Ï” `YaTeX-processed-file-regexp-alist' ‚É’è‹`‚³‚ê‚Ä‚¢‚é + ³‹K•\Œ»‚Ì‚¢‚¸‚ê‚©‚ƃ}ƒbƒ`‚µ‚½‚çAƒtƒ@ƒCƒ‹–¼‚É‘Š“–‚·‚é•”•ª‚ð \\(\\)‚© + ‚甲‚«o‚µ‚ÄŠo‚¦‚Ä‚¨‚­(‰½”Ô–Ú‚Ì\\(\\)‚©‚Í•Ï”‚ÌŠeƒŠƒXƒg‚Ì cdr •”‚É“ü + ‚ê‚Ä‚¨‚­)Bƒ}ƒbƒ`‚µ‚È‚¯‚ê‚Ή½‚à‚µ‚È‚¢B + 2. s––‚ÉA•Ï” `YaTeX-file-processor-alist' ‚É“o˜^‚³‚ê‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ª + u%ƒRƒ}ƒ“ƒhv ‚̂悤‚É‘‚¢‚Ä‚ ‚ê‚΋­§“I‚ÉuƒRƒ}ƒ“ƒh ƒtƒ@ƒCƒ‹–¼.Šg’£ + Žqv‚ð‹N“®B + 3. ‚È‚¯‚ê‚ÎA•Ï” `YaTeX-file-processor-alist' ‚ÌŠeƒŠƒXƒg‚Ìcdr•”‚É“ü‚Á‚Ä + ‚¢‚éŠg’£Žq‚ðuƒtƒ@ƒCƒ‹–¼v‚ÌŒã‚ë‚É‘«‚µ‚½ƒtƒ@ƒCƒ‹‚ª‘¶Ý‚·‚é‚©‡ŽŸ’²‚× + ‚ÄA‘¶Ý‚µ‚½ê‡car•”‚É“ü‚Á‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éB 4. ˆÈã‚Ç‚ê‚©‚Ƀ}ƒbƒ`‚µ‚È‚¯‚ê‚΂ ‚«‚ç‚ß‚éB -•Ï” `YaTeX-file-processor-alist' ‚Æ•Ï” `YaTeX-file-processor-alist' -‚ÌÝ’è•û–@‚ɂ‚¢‚Ä‚Í‚»‚ꂼ‚ê‚Ì•Ï”‚ɂ‚¢‚Ä describe-variable ‚µ‚Äà–¾‚ð -“Ç‚ñ‚ʼnº‚³‚¢B‚¤‚Ü‚­Ý’è‚·‚é‚ÆA‰æ‘œƒtƒ@ƒCƒ‹‚É‚©‚¬‚炸A”CˆÓ‚ÌŒ`Ž®‚̃tƒ@ -ƒCƒ‹‚ð”CˆÓ‚̃vƒƒZƒbƒT‚ň—‚·‚éƒRƒ}ƒ“ƒh‚ðŠÈ’P‚ɌĂÑo‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B +•Ï” `YaTeX-file-processor-alist' ‚Æ•Ï” `YaTeX-file-processor-alist' ‚ÌÝ +’è•û–@‚ɂ‚¢‚Ä‚Í‚»‚ꂼ‚ê‚Ì•Ï”‚ɂ‚¢‚Ä describe-variable ‚µ‚Äà–¾‚ð“Ç‚ñ‚Å +‰º‚³‚¢B‚¤‚Ü‚­Ý’è‚·‚é‚ÆA‰æ‘œƒtƒ@ƒCƒ‹‚É‚©‚¬‚炸A”CˆÓ‚ÌŒ`Ž®‚̃tƒ@ƒCƒ‹‚ð”C +ˆÓ‚̃vƒƒZƒbƒT‚ň—‚·‚éƒRƒ}ƒ“ƒh‚ðŠÈ’P‚ɌĂÑo‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B  @@ -1140,9 +1123,9 @@ `[prefix] 4 ^' ... •ÊƒEƒBƒ“ƒhƒE‚ŃƒCƒ“ƒtƒ@ƒCƒ‹‚ɃWƒƒƒ“ƒv -‚ð‰Ÿ‚·‚ÆAƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì•ÒWƒoƒbƒtƒ@‚ÉØ‘Ö‚¦‚Ü‚·B‚à‚µAƒƒCƒ“ƒtƒ@ƒC -ƒ‹‚ðƒI[ƒvƒ“‚µ‚Ä‚¢‚È‚¢ê‡‚ÍAƒJƒŒƒ“ƒgƒfƒBƒŒƒNƒgƒŠ‚©‚ç’T‚µ‚ÄŽ©“®“I‚ɃI[ -ƒvƒ“‚µ‚Ü‚·B +‚ð‰Ÿ‚·‚ÆAƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì•ÒWƒoƒbƒtƒ@‚ÉØ‘Ö‚¦‚Ü‚·B‚à‚µAƒƒCƒ“ƒtƒ@ƒCƒ‹‚ð +ƒI[ƒvƒ“‚µ‚Ä‚¢‚È‚¢ê‡‚ÍAƒJƒŒƒ“ƒgƒfƒBƒŒƒNƒgƒŠ‚©‚ç’T‚µ‚ÄŽ©“®“I‚ɃI[ƒvƒ“‚µ +‚Ü‚·B  @@ -1160,8 +1143,8 @@ `M-C-@' ... ŠÂ‹«‘S‘Ì‚ðƒ}[ƒN -ã‹L‚̃Rƒ}ƒ“ƒh‚Í’Êí‚Ì`[prefix]'ƒL[‚Å‚Í‚È‚­`META'ƒL[‚ðƒvƒŠƒtƒBƒNƒX‚Æ -‚µ‚Ä‹@”\‚·‚é‚Ì‚Å‚²’ˆÓ‰º‚³‚¢B +ã‹L‚̃Rƒ}ƒ“ƒh‚Í’Êí‚Ì`[prefix]'ƒL[‚Å‚Í‚È‚­`META'ƒL[‚ðƒvƒŠƒtƒBƒNƒX‚Æ‚µ‚Ä +‹@”\‚·‚é‚Ì‚Å‚²’ˆÓ‰º‚³‚¢B  @@ -1170,10 +1153,9 @@ ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv ========================== -–ì’¹‚͕⊮“ü—Í‚µ‚½ˆÊ’u‚ðí‚ɃŒƒWƒXƒ^ `3'‚É•Û‘¶‚µ‚Ä‚¢‚Ü‚·B“ü—Í“r’†‚Å”@ -‰½‚È‚éƒtƒ@ƒCƒ‹‚Ì”@‰½‚È‚éˆÊ’u‚És‚Á‚½‚Æ‚µ‚Ä‚àA`C-x j -3'(`jump-to-register')‚ðŽg‚Á‚Ä’¼‚¿‚ÉÅŒã‚̕⊮“ü—͈ʒu‚ɖ߂邱‚Æ‚ª‚Å‚« -‚Ü‚·B +–ì’¹‚͕⊮“ü—Í‚µ‚½ˆÊ’u‚ðí‚ɃŒƒWƒXƒ^ `3'‚É•Û‘¶‚µ‚Ä‚¢‚Ü‚·B“ü—Í“r’†‚Å”@‰½‚È +‚éƒtƒ@ƒCƒ‹‚Ì”@‰½‚È‚éˆÊ’u‚És‚Á‚½‚Æ‚µ‚Ä‚àA`C-x j 3'(`jump-to-register')‚ð +Žg‚Á‚Ä’¼‚¿‚ÉÅŒã‚̕⊮“ü—͈ʒu‚ɖ߂邱‚Æ‚ª‚Å‚«‚Ü‚·B  @@ -1182,8 +1164,8 @@ •ÏX/íœ ********* - Šù‚É“ü—Í‚³‚ê‚Ä‚¢‚é LaTeX ƒRƒ}ƒ“ƒh‚Ì•ÏX/휂̂½‚߂Ɉȉº‚Ì‹@”\‚ª—pˆÓ -‚³‚ê‚Ä‚¢‚Ü‚·B + Šù‚É“ü—Í‚³‚ê‚Ä‚¢‚é LaTeX ƒRƒ}ƒ“ƒh‚Ì•ÏX/휂̂½‚߂Ɉȉº‚Ì‹@”\‚ª—pˆÓ‚³‚ê +‚Ä‚¢‚Ü‚·B `[prefix] c' ... ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì LaTeX ƒRƒ}ƒ“ƒh‚Ì•ÏX @@ -1191,8 +1173,8 @@ ... ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì LaTeX ƒRƒ}ƒ“ƒh‚Ìíœ -‚±‚ê‚ç‚̃Rƒ}ƒ“ƒh‚ÍAƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éꊂɂæ‚Á‚Ä“®ì‚ðŒˆ’è‚·‚é‚Ì‚Å’ -ˆÓ‚µ‚ĉº‚³‚¢B +‚±‚ê‚ç‚̃Rƒ}ƒ“ƒh‚ÍAƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éꊂɂæ‚Á‚Ä“®ì‚ðŒˆ’è‚·‚é‚Ì‚Å’ˆÓ‚µ +‚ĉº‚³‚¢B * Menu: @@ -1206,9 +1188,9 @@ LaTeX ƒRƒ}ƒ“ƒh‚Ì•ÏX ==================== -•ÏX‚µ‚½‚¢ LaTeX ƒRƒ}ƒ“ƒh‚ɃJ[ƒ\ƒ‹‚ð‡‚킹‚Ä `[prefix] c' -‚ð‰Ÿ‚·‚Æ‚»‚̃Rƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚È‚Ç‚ð—p‚¢‚ÄŽèŒy‚É•Ï‚¦‚邱‚Æ‚ª‚Å‚«‚Ü‚·B -`[prefix] c' ‚Å•ÏX‚Å‚«‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B +•ÏX‚µ‚½‚¢ LaTeX ƒRƒ}ƒ“ƒh‚ɃJ[ƒ\ƒ‹‚ð‡‚킹‚Ä `[prefix] c' ‚ð‰Ÿ‚·‚Æ‚»‚̃R +ƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚È‚Ç‚ð—p‚¢‚ÄŽèŒy‚É•Ï‚¦‚邱‚Æ‚ª‚Å‚«‚Ü‚·B`[prefix] c' ‚Å•Ï +X‚Å‚«‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B * `begin/end' ‚̊‹«–¼ * sectionŒ^ƒRƒ}ƒ“ƒh‚̃Rƒ}ƒ“ƒh–¼ @@ -1217,9 +1199,9 @@ * largeŒ^ƒRƒ}ƒ“ƒh * (ƒCƒ[ƒW•âŠ®‚Å“ü—͉”\‚È)”Ž®ƒ‚[ƒhê—p‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh - •Ï‚¦‚½‚¢sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”‚ª‚³‚ç‚É LaTeX ƒRƒ}ƒ“ƒh‚ðŠÜ‚ÞꇂÍA -‚»‚̈ø”‚ðˆÍ‚Þ’†Š‡ŒÊ‚Ìã‚Å `[prefix] c' ‚ð‰Ÿ‚·‚±‚Æ‚Å’†‚̃Rƒ}ƒ“ƒh‚ð•ÏX -‘ÎÛ”»’è‚©‚眊O‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + •Ï‚¦‚½‚¢sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”‚ª‚³‚ç‚É LaTeX ƒRƒ}ƒ“ƒh‚ðŠÜ‚ÞꇂÍA‚»‚Ì +ˆø”‚ðˆÍ‚Þ’†Š‡ŒÊ‚Ìã‚Å `[prefix] c' ‚ð‰Ÿ‚·‚±‚Æ‚Å’†‚̃Rƒ}ƒ“ƒh‚ð•ÏX‘ÎÛ”»’è +‚©‚眊O‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B @@ -1240,13 +1222,12 @@ Š‡ŒÊ‚Ì㠑΂ð‚È‚·Š‡ŒÊ‚Ìíœ -`\begin, \end' ‚¨‚æ‚Ñ `%#BEGIN, %#END' ‚ð휂·‚éê‡A`\begin, \end' -‚â `%#BEGIN, %#END' ‚Ì‘¶Ý‚·‚és‚͂܂邲‚Æ휂³‚ê‚é‚Ì‚ÅA‚»‚ê‚ç‚̈ês -‚É `\begin' ‚È‚Ç‚ð“ñ‚ˆÈã˜A‚Ë‚Ä‘‚©‚È‚¢‚悤‚É’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢Bã‹L‚Ì -‚à‚Ì‚Í‚·‚ׂĖ{•¶‚ðˆÍ‚¤u—eŠív‚ð휂·‚é‚悤‚É“­‚«‚Ü‚·‚ªA -universal-argument (`C-u') ‚ð‘Å‚Á‚½Œã‚Å`[prefix] k'‚ðƒ^ƒCƒv‚·‚é‚ÆA‚»‚ê -‚¼‚ê‚Ìu—eŠív‚ÉŠÜ‚Ü‚ê‚éu’†gv‚àˆê‹C‚É휂µ‚Ü‚·BˆÈ‰º‚Ì—á‚ðŽQl‚É‚µ -‚ĉº‚³‚¢B +`\begin, \end' ‚¨‚æ‚Ñ `%#BEGIN, %#END' ‚ð휂·‚éê‡A`\begin, \end' ‚â +`%#BEGIN, %#END' ‚Ì‘¶Ý‚·‚és‚͂܂邲‚Æ휂³‚ê‚é‚Ì‚ÅA‚»‚ê‚ç‚̈ês‚É +`\begin' ‚È‚Ç‚ð“ñ‚ˆÈã˜A‚Ë‚Ä‘‚©‚È‚¢‚悤‚É’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢Bã‹L‚Ì‚à‚Ì‚Í +‚·‚ׂĖ{•¶‚ðˆÍ‚¤u—eŠív‚ð휂·‚é‚悤‚É“­‚«‚Ü‚·‚ªAuniversal-argument +(`C-u') ‚ð‘Å‚Á‚½Œã‚Å`[prefix] k'‚ðƒ^ƒCƒv‚·‚é‚ÆA‚»‚ꂼ‚ê‚Ìu—eŠív‚ÉŠÜ‚Ü‚ê +‚éu’†gv‚àˆê‹C‚É휂µ‚Ü‚·BˆÈ‰º‚Ì—á‚ðŽQl‚É‚µ‚ĉº‚³‚¢B Œ³‚̃eƒLƒXƒg: [prefix] k C-u [prefix] k –{•¶\footnote{‹r’}‚Å‚·B –{•¶‹r’‚Å‚·B –{•¶‚Å‚·B @@ -1263,21 +1244,21 @@ item‚ÌŒ…‘µ‚¦ ============ - itemize ŠÂ‹«’†‚É‚ ‚é`\item'‚Ì€–Ú(•¶Í)‚ª•¡”s‚É“n‚éꇂÉA€–Ú‚Ìæ -“ª‚ðŒ…‘µ‚¦‚µ‚½‚¢ê‡‚É‚ÍA + itemize ŠÂ‹«’†‚É‚ ‚é`\item'‚Ì€–Ú(•¶Í)‚ª•¡”s‚É“n‚éꇂÉA€–Ú‚Ì擪 +‚ðŒ…‘µ‚¦‚µ‚½‚¢ê‡‚É‚ÍA `M-q' ... Œ…‘µ‚¦ -‚É‚æ‚Á‚ÄA‚»‚Ì item ‚̃Cƒ“ƒfƒ“ƒg‚Ì[‚³‚ɉž‚¶‚Ä fill ‚³‚ê‚Ü‚·B‚È‚¨AŒÃ -‚¢NTT jTeX ‚ðŽg—p‚µ‚Ä‚¢‚éꇂɂÍALisp •Ï”`NTT-jTeX'‚ð`t'‚ɃZƒbƒg‚µ‚Ä -‰º‚³‚¢B - - ‚±‚Ì‚Æ‚«A•Ï”`YaTeX-item-regexp'‚Ì’l(•W€‚Å‚Í `"\\\\item"')‚ð -€–ÚŽw’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ»‚Æ‚µ‚ÄŒŸõ‚ÉŽg—p‚µ‚Ü‚·Bitemize ŠÂ‹«‚ÅA“ÆŽ©‚̃R -ƒ}ƒ“ƒh‚ð’è‹`‚µ‚Ä€–Ú‚ð—ñ‹“‚µ‚Ä‚¢‚éê‡(—Ⴆ‚Î`\underlineitem')‚ÍA -`~/.emacs' ‚ÅŽŸ‚̂悤‚ÉŽw’肵‚ĉº‚³‚¢B +‚É‚æ‚Á‚ÄA‚»‚Ì item ‚̃Cƒ“ƒfƒ“ƒg‚Ì[‚³‚ɉž‚¶‚Ä fill ‚³‚ê‚Ü‚·B‚È‚¨AŒÃ‚¢ +NTT jTeX ‚ðŽg—p‚µ‚Ä‚¢‚éꇂɂÍALisp •Ï”`NTT-jTeX'‚ð`t'‚ɃZƒbƒg‚µ‚ĉº‚³ +‚¢B + + ‚±‚Ì‚Æ‚«A•Ï”`YaTeX-item-regexp'‚Ì’l(•W€‚Å‚Í `"\\\\item"')‚ð€–ÚŽw’èƒR +ƒ}ƒ“ƒh‚̳‹K•\Œ»‚Æ‚µ‚ÄŒŸõ‚ÉŽg—p‚µ‚Ü‚·Bitemize ŠÂ‹«‚ÅA“ÆŽ©‚̃Rƒ}ƒ“ƒh‚ð’è +‹`‚µ‚Ä€–Ú‚ð—ñ‹“‚µ‚Ä‚¢‚éê‡(—Ⴆ‚Î`\underlineitem')‚ÍA`~/.emacs' ‚ÅŽŸ‚Ì +‚悤‚ÉŽw’肵‚ĉº‚³‚¢B (setq YaTeX-item-regexp "\\(\\\\\\(sub\\)*item\\)\\|\\(\\\\underlineitem\\)") @@ -1286,8 +1267,8 @@ ‚±‚Ì•Ï”‚ÌŽw’è‚ÌŽd•û‚ª‚æ‚­•ª‚©‚ç‚È‚¢ê‡‚ÍA“ÆŽ©‚Ì€–Ú—ñ‹“ƒRƒ}ƒ“ƒh‚Ì–¼‘O‚ð ``"\item"'‚ÅŽn‚Ü‚é‚à‚Ì‚É‚µ‚ĉº‚³‚¢(—Ⴆ‚Î"\itembf"')B -–ì’¹‚Ì `M-q' ‚Å‚Í `\item' ‚ðŠÂ‹«‚ɉž‚¶‚Ĉȉº‚̂悤‚Éuƒnƒ“ƒOƒCƒ“ƒfƒ“ƒgv -‚µ‚Ü‚·B +–ì’¹‚Ì `M-q' ‚Å‚Í `\item' ‚ðŠÂ‹«‚ɉž‚¶‚Ĉȉº‚̂悤‚Éuƒnƒ“ƒOƒCƒ“ƒfƒ“ƒgv‚µ +‚Ü‚·B itemize, enumerateŠÂ‹«: >\item[‚Ù‚°‚Ù‚°] ‰pŒê‚Å‚ÍA“Á‚ɈӖ¡‚Ì‚È‚¢’PŒê‚ð `foo' ‚Å‚ ‚ç‚킵‚Ü @@ -1302,13 +1283,12 @@ ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦ ================== - itemizeŠÂ‹«ˆÈŠO‚ł̃pƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦(fill)‚ÍAŠî–{“I‚É‘¼‚̃‚[ƒh‚Æ“¯ -‚¶‚悤‚É‹@”\‚µ‚Ü‚·‚ªAverbatimŠÂ‹«‚âAtabularŠÂ‹«‚È‚ÇŒ…‘µ‚¦‚ð‚·‚é‚ƔߎS -‚È󋵂ɂȂé‚悤‚Ȋ‹«’†‚Å‚Í‹@”\‚µ‚Ü‚¹‚ñB‚Ü‚½A\verb ‚ÅŠ‡‚Á‚Ä‚ ‚é‚à‚Ì -‚ÍŒˆ‚µ‚Äs•ªŠ„‚³‚ê‚Ü‚¹‚ñ(•Ï” `YaTeX-verb-regexp' ‚ŧŒä) )B‚³‚ç‚ÉAˆê -Žž“I‚ɃCƒ“ƒfƒ“ƒg‚Ì[‚³‚ð•Ï‚¦‚Ä‚ ‚é‰ÓŠ‚Å‚ÍA‚»‚̃Cƒ“ƒfƒ“ƒg‚Ì擪‚Å -`M-q'‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚è fill-prefix ‚ð‚¢‚¿‚¢‚¿•ÏX‚µ‚È‚­‚ÄŒ…‘µ‚¦‚ª‚Å‚«‚Ü -‚·B + itemizeŠÂ‹«ˆÈŠO‚ł̃pƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦(fill)‚ÍAŠî–{“I‚É‘¼‚̃‚[ƒh‚Æ“¯‚¶ +‚悤‚É‹@”\‚µ‚Ü‚·‚ªAverbatimŠÂ‹«‚âAtabularŠÂ‹«‚È‚ÇŒ…‘µ‚¦‚ð‚·‚é‚ƔߎS‚Èó +‹µ‚É‚È‚é‚悤‚Ȋ‹«’†‚Å‚Í‹@”\‚µ‚Ü‚¹‚ñB‚Ü‚½A\verb ‚ÅŠ‡‚Á‚Ä‚ ‚é‚à‚Ì‚ÍŒˆ‚µ‚Ä +s•ªŠ„‚³‚ê‚Ü‚¹‚ñ(•Ï” `YaTeX-verb-regexp' ‚ŧŒä) )B‚³‚ç‚ÉAˆêŽž“I‚ɃCƒ“ +ƒfƒ“ƒg‚Ì[‚³‚ð•Ï‚¦‚Ä‚ ‚é‰ÓŠ‚Å‚ÍA‚»‚̃Cƒ“ƒfƒ“ƒg‚Ì擪‚Å`M-q'‚ð‰Ÿ‚·‚±‚Æ‚É +‚æ‚è fill-prefix ‚ð‚¢‚¿‚¢‚¿•ÏX‚µ‚È‚­‚ÄŒ…‘µ‚¦‚ª‚Å‚«‚Ü‚·B @@ -1322,23 +1302,22 @@ \includeonly{Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹–¼} -‚̂悤‚É‘‚¢‚Ä‚¨‚­‚±‚Æ‚ÅAƒ^ƒCƒvƒZƒbƒg‚ÌŽžŠÔ‚ðß–ñ‚Å‚«‚Ü‚·‚ªA‚¿‚å‚Á‚Æ -‘¼‚̃tƒ@ƒCƒ‹‚ðŽè’¼‚µ‚µ‚½‚¢Žž‚É‚Í +‚̂悤‚É‘‚¢‚Ä‚¨‚­‚±‚Æ‚ÅAƒ^ƒCƒvƒZƒbƒg‚ÌŽžŠÔ‚ðß–ñ‚Å‚«‚Ü‚·‚ªA‚¿‚å‚Á‚Æ‘¼‚Ì +ƒtƒ@ƒCƒ‹‚ðŽè’¼‚µ‚µ‚½‚¢Žž‚É‚Í \includeonly{‚¿‚å‚Á‚ÆŽè’¼‚µ‚µ‚½‚¢ƒtƒ@ƒCƒ‹–¼} -‚Æ‘‚«’¼‚³‚È‚¯‚ê‚΂Ȃ炸ŽèŠÔ‚ª‚©‚©‚è‚Ü‚·B–ì’¹‚Å‚ÍŒ»Ý•ÒW‚µ‚Ä‚¢‚éƒtƒ@ -ƒCƒ‹–¼‚ªƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì`\includeonly'‚É‚È‚¢ê‡‚É‚ÍŽ©“®“I‚É‚±‚ê‚ðŒŸo -‚µAŽŸ‚ÌŽwŽ¦‚ð‹Â‚¬‚Ü‚·B +‚Æ‘‚«’¼‚³‚È‚¯‚ê‚΂Ȃ炸ŽèŠÔ‚ª‚©‚©‚è‚Ü‚·B–ì’¹‚Å‚ÍŒ»Ý•ÒW‚µ‚Ä‚¢‚éƒtƒ@ƒCƒ‹ +–¼‚ªƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì`\includeonly'‚É‚È‚¢ê‡‚É‚ÍŽ©“®“I‚É‚±‚ê‚ðŒŸo‚µAŽŸ‚Ì +ŽwŽ¦‚ð‹Â‚¬‚Ü‚·B A)dd R)eplace %)comment? -Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚ð `\includeonly' ‚̃ŠƒXƒg‚ɉÁ‚¦‚½‚¢Žž‚É‚Í`a'‚ðAŒ» -Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚¾‚¯‚ð `\includeonly' ‚É‚µ‚½‚¢Žž‚Í`r'‚ðA -`\includeonly' ‚Ìs‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚Ä–³Œø‰»‚µ‚½‚¢Žž‚É‚ÍA`%'‚ð‚»‚ê‚¼ -‚ꉟ‚µ‚ĉº‚³‚¢B +Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚ð `\includeonly' ‚̃ŠƒXƒg‚ɉÁ‚¦‚½‚¢Žž‚É‚Í`a' ‚ðAŒ»Ý +•ÒW’†‚̃tƒ@ƒCƒ‹‚¾‚¯‚ð `\includeonly' ‚É‚µ‚½‚¢Žž‚Í`r'‚ðA`\includeonly' ‚Ì +s‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚Ä–³Œø‰»‚µ‚½‚¢Žž‚É‚ÍA`%'‚ð‚»‚ê‚¼‚ꉟ‚µ‚ĉº‚³‚¢B  @@ -1347,9 +1326,9 @@ ‚±‚±‚Í‚Ç‚±? *********** - €–Ú”‚Ì‘½‚¢ tabular ‚È‚Ç‚ð‚½‚­‚³‚ñ‘‚¢‚Ä‚¢‚é‚Ɖº‚Ì•û‚Ìs‚ÅA‚¢‚Ü‘‚¢ -‚Ä‚¢‚錅‚ª‚Ç‚±‚ɑΉž‚·‚é‚Ì‚©‚í‚©‚ç‚È‚­‚È‚Á‚Ä‚µ‚Ü‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·B—Ⴆ -‚ÎAˆÈ‰º‚̂悤‚È tabular ‚É‚¨‚¢‚ÄA + €–Ú”‚Ì‘½‚¢ tabular ‚È‚Ç‚ð‚½‚­‚³‚ñ‘‚¢‚Ä‚¢‚é‚Ɖº‚Ì•û‚Ìs‚ÅA‚¢‚Ü‘‚¢‚Ä +‚¢‚錅‚ª‚Ç‚±‚ɑΉž‚·‚é‚Ì‚©‚í‚©‚ç‚È‚­‚È‚Á‚Ä‚µ‚Ü‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·B—Ⴆ‚ÎAˆÈ +‰º‚̂悤‚È tabular ‚É‚¨‚¢‚ÄA \begin{tabular}{|c|c|c|c|c|c|c|c|}\hline Ž–¼&Š‘®&§&ZŠ&“d˜b&FAX&‹AÈæ&‹AÈæ“d˜b\\ \hline @@ -1366,10 +1345,10 @@ `[prefix] &' ... Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦ -‚ð‰Ÿ‚·‚ƃJ[ƒ\ƒ‹ˆÊ’u‚̃Jƒ‰ƒ€‚ª‚Ç‚Ì€–Ú‚ÉŠY“–‚·‚é‚©‚ðƒ~ƒjƒoƒbƒtƒ@‚É•\Ž¦ -‚µ‚Ü‚·Btabular/arrayŠÂ‹«‚Ì‘æ1s–Ú‚ð€–Ú–¼‚Ì•À‚Ñ‚Æ‚Ý‚È‚µ‚đΉž‚·‚é‚à‚Ì -‚ð’T‚µ‚Ü‚·B‚à‚µ€–Ú–¼‚Æ‚µ‚Ä•Ê‚Ì‚à‚Ì‚ð•\Ž¦‚µ‚Ä—~‚µ‚¢ê‡‚ÍAs“ª‚ð`%'‚É -‚µ‚ă_ƒ~[‚Ì€–Ú•À‚Ñ‚ðì‚Á‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B +‚ð‰Ÿ‚·‚ƃJ[ƒ\ƒ‹ˆÊ’u‚̃Jƒ‰ƒ€‚ª‚Ç‚Ì€–Ú‚ÉŠY“–‚·‚é‚©‚ðƒ~ƒjƒoƒbƒtƒ@‚É•\Ž¦‚µ‚Ü +‚·Btabular/arrayŠÂ‹«‚Ì‘æ1s–Ú‚ð€–Ú–¼‚Ì•À‚Ñ‚Æ‚Ý‚È‚µ‚đΉž‚·‚é‚à‚Ì‚ð’T‚µ‚Ü +‚·B‚à‚µ€–Ú–¼‚Æ‚µ‚Ä•Ê‚Ì‚à‚Ì‚ð•\Ž¦‚µ‚Ä—~‚µ‚¢ê‡‚ÍAs“ª‚ð`%'‚É‚µ‚ă_ƒ~[ +‚Ì€–Ú•À‚Ñ‚ðì‚Á‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B  @@ -1378,18 +1357,18 @@ ‚¨‚Ü‚©‚¹‰üs ************ - tabular[*], array, itemize, enumerate, tabbing ŠÂ‹«‚ðbeginŒ^•âŠ®‚Å“ü -—Í‚µ‚½ŽžA‚Ü‚½‚ÍŠeŠÂ‹«“à‚Å + tabular[*], array, itemize, enumerate, tabbing ŠÂ‹«‚ðbeginŒ^•âŠ®‚Å“ü—Í‚µ +‚½ŽžA‚Ü‚½‚ÍŠeŠÂ‹«“à‚Å `ESC RET' ... ‚¨‚Ü‚©‚¹‰üs -‚ð‰Ÿ‚·‚ÆA‚»‚̊‹«‚ɉž‚¶‚½sƒGƒ“ƒgƒŠ‚ðŽŸ‚Ìs‚É‘}“ü‚µ‚Ü‚·(beginŒ^•âŠ®Žž -‚ÉŽ©“®‘}“ü‚³‚ꂽƒGƒ“ƒgƒŠ‚ª•s—v‚Èê‡‚Í undo ‚É‚æ‚Á‚ÄÁ‹Ž‚Å‚«‚Ü‚·)B—Ⴆ -‚ÎAtabularŠÂ‹«‚Å‚ÍA‚»‚̊‹«‚̃Jƒ‰ƒ€”‚ɑΉž‚µ‚½ŒÂ”‚Ì `&' ‚ɉÁ‚¦As -––‚Ì `\\' ‚ð“ü‚ê‚Ü‚·B‚±‚ÌŽž‚»‚êˆÈ‘O‚É `\hline' ‚ª‚ ‚ê‚΂»‚ê‚à•t‚¯‰Á‚¦ -‚Ü‚·BŠÂ‹«‚Æ‚»‚ê‚ɉž‚¶‚ÄŽ©“®“ü—Í‚·‚é‚à‚̂̑Ήž‚͈ȉº‚̂悤‚É‚È‚è‚Ü‚·B +‚ð‰Ÿ‚·‚ÆA‚»‚̊‹«‚ɉž‚¶‚½sƒGƒ“ƒgƒŠ‚ðŽŸ‚Ìs‚É‘}“ü‚µ‚Ü‚·(beginŒ^•âŠ®Žž‚ÉŽ© +“®‘}“ü‚³‚ꂽƒGƒ“ƒgƒŠ‚ª•s—v‚Èê‡‚Í undo ‚É‚æ‚Á‚ÄÁ‹Ž‚Å‚«‚Ü‚·)B—Ⴆ‚ÎA +tabularŠÂ‹«‚Å‚ÍA‚»‚̊‹«‚̃Jƒ‰ƒ€”‚ɑΉž‚µ‚½ŒÂ”‚Ì `&' ‚ɉÁ‚¦As––‚Ì +`\\' ‚ð“ü‚ê‚Ü‚·B‚±‚ÌŽž‚»‚êˆÈ‘O‚É `\hline' ‚ª‚ ‚ê‚΂»‚ê‚à•t‚¯‰Á‚¦‚Ü‚·BŠÂ +‹«‚Æ‚»‚ê‚ɉž‚¶‚ÄŽ©“®“ü—Í‚·‚é‚à‚̂̑Ήž‚͈ȉº‚̂悤‚É‚È‚è‚Ü‚·B * `tabular', `tabular*', `array' @@ -1403,16 +1382,16 @@ `\item' ‚Ü‚½‚Í `item[]' - tabular ŠÂ‹«‚Ì—á‚̂悤‚ÉA–{‹@”\‚ÍŠeŠÂ‹«‚̈ês–Ú‚Ì“à—e‚ðŽQl‚É‚µ‚Ä“® -ì‚·‚é‚Ì‚ÅA‚È‚é‚ׂ­“ñs–ÚˆÈ~‚ŌĂÑo‚·‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B - - ‚à‚µA‚»‚Ì‘¼‚̊‹«A—Ⴆ‚Î `foo'A‚ɑ΂µ‚Ä`‚¨‚Ü‚©‚¹‰üs'‚ð“®ì -‚³‚¹‚½‚¢Žž‚ÍA`YaTeX-intelligent-newline-foo' ‚Æ‚¢‚¤–¼‘O‚ÌŠÖ”‚ð’è‹` -‚µ‚Ü‚·B’è‹`‚µ‚½ŠÖ”‚ÍAŒ»Ý‚Ìs‚ɉüs‚ð‘}“ü‚µ‚½’¼Œã‚Ìs“ª‚̈ʒu‚ŌĂ΂ê‚Ü -‚·BŠÖ” `YaTeX-indent-line' ‚ðŒÄ‚Ô‚ÆŒ»Ý‚̊‹«‚̃lƒXƒg‚ɉž‚¶‚½[‚³‚É -ƒCƒ“ƒfƒ“ƒg‚³‚ê‚é‚Ì‚ÅA‚±‚ê‚ðŒÄ‚ñ‚Å‚©‚牽‚©‚ð‘}“ü‚·‚é‚悤‚ȃR[ƒh‚ð‘‚­‚Æ‚æ -‚¢‚Å‚µ‚傤B`yatexenv.el'“à‚ÌŠÖ” -`YaTeX-intelligent-newline-itemize' ‚Ì’è‹`‚È‚Ç‚ðŽQl‚É‚µ‚Ä‚­‚¾‚³‚¢B + tabular ŠÂ‹«‚Ì—á‚̂悤‚ÉA–{‹@”\‚ÍŠeŠÂ‹«‚̈ês–Ú‚Ì“à—e‚ðŽQl‚É‚µ‚Ä“®ì‚· +‚é‚Ì‚ÅA‚È‚é‚ׂ­“ñs–ÚˆÈ~‚ŌĂÑo‚·‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B + + ‚à‚µA‚»‚Ì‘¼‚̊‹«A—Ⴆ‚Î `foo'A‚ɑ΂µ‚Ä`‚¨‚Ü‚©‚¹‰üs'‚ð“®ì‚³‚¹‚½‚¢Žž +‚ÍA`YaTeX-intelligent-newline-foo' ‚Æ‚¢‚¤–¼‘O‚ÌŠÖ”‚ð’è‹`‚µ‚Ü‚·B’è‹`‚µ‚½ +ŠÖ”‚ÍAŒ»Ý‚Ìs‚ɉüs‚ð‘}“ü‚µ‚½’¼Œã‚Ìs“ª‚̈ʒu‚ŌĂ΂ê‚Ü‚·BŠÖ” +`YaTeX-indent-line' ‚ðŒÄ‚Ô‚ÆŒ»Ý‚̊‹«‚̃lƒXƒg‚ɉž‚¶‚½[‚³‚ɃCƒ“ƒfƒ“ƒg‚³‚ê +‚é‚Ì‚ÅA‚±‚ê‚ðŒÄ‚ñ‚Å‚©‚牽‚©‚ð‘}“ü‚·‚é‚悤‚ȃR[ƒh‚ð‘‚­‚Æ‚æ‚¢‚Å‚µ‚傤B +`yatexenv.el'“à‚ÌŠÖ” `YaTeX-intelligent-newline-itemize' ‚Ì’è‹`‚È‚Ç‚ðŽQl +‚É‚µ‚Ä‚­‚¾‚³‚¢B @@ -1422,15 +1401,14 @@ æ‰ñ‚èusepackage **************** - beginŒ^AsectionŒ^AmaketitleŒ^A‚¢‚¸‚ê‚©‚ÌLaTeX2eƒ}ƒNƒ‚ð•âŠ®“ü—Í‚· -‚é‚ÆA‚»‚̃}ƒNƒ‚Ì—˜—p‚ÉŠO•”ƒpƒbƒP[ƒW‚ð•K—v‚Æ‚·‚éê‡A‚»‚̃pƒbƒP[ƒW -‚ð–{•¶’†‚Å `\usepackage{}' ‚µ‚Ä‚¢‚é‚©‚Ç‚¤‚©‚𒲸‚µA‚à‚µ‚µ‚Ä‚¢‚È‚¯‚ê‚Î -ƒvƒŠƒAƒ“ƒuƒ‹‚ɑΉž‚·‚éƒpƒbƒP[ƒW‚ðˆø”‚É‚µ‚½ `\usepackage' •¶‚ð(Šm”FŒã -‚É)‘}“ü‚µ‚Ü‚·B - - ‚½‚¾‚µ‚±‚Ì‹@”\‚ª“­‚­‚½‚ß‚É‚ÍAƒpƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚Å’è‹`‚³‚ê‚Ä‚¢‚éƒ} -ƒNƒŒQ‚ðalist‚ÌŒ`Ž®‚Å•Ï” `YaTeX-package-alist-private' ‚Éݒ肵‚Ä‚¨‚­ -•K—v‚ª‚ ‚è‚Ü‚·B + beginŒ^AsectionŒ^AmaketitleŒ^A‚¢‚¸‚ê‚©‚ÌLaTeX2eƒ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚ÆA +‚»‚̃}ƒNƒ‚Ì—˜—p‚ÉŠO•”ƒpƒbƒP[ƒW‚ð•K—v‚Æ‚·‚éê‡A‚»‚̃pƒbƒP[ƒW‚ð–{•¶’†‚Å +`\usepackage{}' ‚µ‚Ä‚¢‚é‚©‚Ç‚¤‚©‚𒲸‚µA‚à‚µ‚µ‚Ä‚¢‚È‚¯‚ê‚΃vƒŠƒAƒ“ƒuƒ‹‚É +‘Ήž‚·‚éƒpƒbƒP[ƒW‚ðˆø”‚É‚µ‚½ `\usepackage' •¶‚ð(Šm”FŒã‚É)‘}“ü‚µ‚Ü‚·B + + ‚½‚¾‚µ‚±‚Ì‹@”\‚ª“­‚­‚½‚ß‚É‚ÍAƒpƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚Å’è‹`‚³‚ê‚Ä‚¢‚éƒ}ƒNƒ +ŒQ‚ðalist‚ÌŒ`Ž®‚Å•Ï” `YaTeX-package-alist-private' ‚Éݒ肵‚Ä‚¨‚­•K—v‚ª‚  +‚è‚Ü‚·B  @@ -1447,15 +1425,15 @@ * C³ƒ‚[ƒh * –ì’¹”Ž®ƒ‚[ƒh -C³ƒ‚[ƒh‚ÍAŠJ‚«Š‡ŒÊ“ü—ÍŽž‚̈—‚ðƒRƒ“ƒgƒ[ƒ‹‚µAC³ƒ‚[ƒhON‚ÌŽž‚Í -ŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚ÍŠJ‚«Š‡ŒÊ‚Ì‚Ý‚Ì“ü—Í‚É‚È‚èAC³ƒ‚[ƒhOFF‚ÌŽž‚ÍŠJ‚«Š‡ŒÊ‚Ì -“ü—Í‚¾‚¯‚ŕ‚¶Š‡ŒÊ‚Ü‚Å“ü—Í‚µ‚Ü‚·BƒfƒtƒHƒ‹ƒg(‹N“®Žž)‚ÌÝ’è‚Í*OFF*‚Å‚·B - - –ì’¹”Ž®ƒ‚[ƒh‚ÍA•Ï” `YaTeX-auto-math-mode' ‚ª `nil' ‚ÌŽž‚Ì -‚Ý—LŒø‚ÅA‚±‚Ì‚Æ‚«`;'‚â`:'‚ð‰Ÿ‚µ‚½Žž(*Note Image completion::ŽQÆ)‚ÉA -‚ǂ̂悤‚ȃCƒ[ƒW•âŠ®‚ð‹@”\‚³‚¹‚é‚©A’Êí‚̃L[‚Æ‚µ‚Ä‹@”\‚³‚¹‚é‚©‚ðŽè“®‚Å -Ø‚è‘Ö‚¦‚Ü‚·BŽ©“®”»’肪’x‚¢ƒ}ƒVƒ“‚Å‚Í`YaTeX-auto-math-mode' -`nil'‚ɃZƒbƒg‚µA–ì’¹”Ž®ƒ‚[ƒh‚ðŽè“®‚ÅØ‚è‘Ö‚¦‚é‚Æ—Ç‚¢‚Å‚µ‚傤B +C³ƒ‚[ƒh‚ÍAŠJ‚«Š‡ŒÊ“ü—ÍŽž‚̈—‚ðƒRƒ“ƒgƒ[ƒ‹‚µAC³ƒ‚[ƒhON‚ÌŽž‚ÍŠJ‚« +Š‡ŒÊ‚Ì“ü—Í‚ÍŠJ‚«Š‡ŒÊ‚Ì‚Ý‚Ì“ü—Í‚É‚È‚èAC³ƒ‚[ƒhOFF‚ÌŽž‚ÍŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚¾ +‚¯‚ŕ‚¶Š‡ŒÊ‚Ü‚Å“ü—Í‚µ‚Ü‚·BƒfƒtƒHƒ‹ƒg(‹N“®Žž)‚ÌÝ’è‚Í*OFF*‚Å‚·B + + –ì’¹”Ž®ƒ‚[ƒh‚ÍA•Ï” `YaTeX-auto-math-mode' ‚ª `nil' ‚ÌŽž‚Ì‚Ý—LŒø‚ÅA +‚±‚Ì‚Æ‚«`;'‚â`:'‚ð‰Ÿ‚µ‚½Žž(*Note Image completion::ŽQÆ)‚ÉA‚ǂ̂悤‚ȃCƒ[ +ƒW•âŠ®‚ð‹@”\‚³‚¹‚é‚©A’Êí‚̃L[‚Æ‚µ‚Ä‹@”\‚³‚¹‚é‚©‚ðŽè“®‚ÅØ‚è‘Ö‚¦‚Ü‚·BŽ© +“®”»’肪’x‚¢ƒ}ƒVƒ“‚Å‚Í`YaTeX-auto-math-mode' `nil'‚ɃZƒbƒg‚µA–ì’¹”Ž®ƒ‚[ +ƒh‚ðŽè“®‚ÅØ‚è‘Ö‚¦‚é‚Æ—Ç‚¢‚Å‚µ‚傤B @@ -1465,8 +1443,8 @@ ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv **************** - Žg‚¨‚¤‚Æ‚·‚é LaTeX ƒRƒ}ƒ“ƒh‚Ì—p–@‚ª‚æ‚­•ª‚©‚ç‚È‚¢Žž‚ÍAƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ -ƒv‚ð‚Ђ«‚Ü‚µ‚傤Bƒwƒ‹ƒv‚ÉŠÖ‚·‚éƒL[‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + Žg‚¨‚¤‚Æ‚·‚é LaTeX ƒRƒ}ƒ“ƒh‚Ì—p–@‚ª‚æ‚­•ª‚©‚ç‚È‚¢Žž‚ÍAƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv +‚ð‚Ђ«‚Ü‚µ‚傤Bƒwƒ‹ƒv‚ÉŠÖ‚·‚éƒL[‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B `[prefix] ?' ... ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv @@ -1477,29 +1455,28 @@ ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv ================ - uƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒvv‚ÍAˆê”Ê“I‚È LaTeX ƒRƒ}ƒ“ƒh(ƒfƒtƒHƒ‹ƒg‚ŃJ[ƒ\ƒ‹ -ˆÊ’u‚̃Rƒ}ƒ“ƒh)‚ɑ΂·‚éà–¾‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B‚±‚ÌŽžŽQÆ‚³‚ê‚é -ƒwƒ‹ƒv—pƒtƒ@ƒCƒ‹‚É‚ÍuƒOƒ[ƒoƒ‹ƒwƒ‹ƒvv‚Æuƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒvv‚Ì“ñŽí -—Þ‚ª‚ ‚èA‘OŽÒ‚Í LaTeX ‚Ì•W€ƒRƒ}ƒ“ƒh‚ÌŽå‚È‚à‚Ì‚Ìà–¾‚ðŠÜ‚Þƒtƒ@ƒCƒ‹‚ÅA -•Ï”`YaTeX-help-file'‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚̃tƒ@ƒCƒ‹‚Í’ÊíŒö‹¤‚ÌêŠ -(ƒfƒtƒHƒ‹ƒg‚Å`$EMACSEXECPATH')‚É’u‚©‚êA’N‚à‚ª‚»‚Ì“à—e‚ðXV‚Å‚«‚é‚悤 -‚É‘Sˆõ‚É‘‚«ž‚ÝŒ ‚ª—^‚¦‚ç‚ê‚é‚ׂ«‚à‚Ì‚Å‚·BŒãŽÒ‚ÍA”ñ•W€‚à‚µ‚­‚ÍŒÂl -“I‚ȃ}ƒNƒ’è‹`‚ÉŠÖ‚·‚éà–¾‚ª‘‚©‚ê‚Ä‚¢‚éƒtƒ@ƒCƒ‹‚ÅA•Ï” -`YaTeX-help-file-private'‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚¿‚ç‚̓†[ƒU‚̃z[ƒ€ƒfƒB -ƒŒƒNƒgƒŠ‚̉º‚È‚Ç‚É’u‚©‚ê‚Ü‚·B + uƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒvv‚ÍAˆê”Ê“I‚È LaTeX ƒRƒ}ƒ“ƒh(ƒfƒtƒHƒ‹ƒg‚ŃJ[ƒ\ƒ‹ˆÊ’u +‚̃Rƒ}ƒ“ƒh)‚ɑ΂·‚éà–¾‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B‚±‚ÌŽžŽQÆ‚³‚ê‚éƒwƒ‹ƒv +—pƒtƒ@ƒCƒ‹‚É‚ÍuƒOƒ[ƒoƒ‹ƒwƒ‹ƒvv‚Æuƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒvv‚Ì“ñŽí—Þ‚ª‚ ‚èA +‘OŽÒ‚Í LaTeX ‚Ì•W€ƒRƒ}ƒ“ƒh‚ÌŽå‚È‚à‚Ì‚Ìà–¾‚ðŠÜ‚Þƒtƒ@ƒCƒ‹‚ÅA•Ï” +`YaTeX-help-file'‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚̃tƒ@ƒCƒ‹‚Í’ÊíŒö‹¤‚ÌêŠ(ƒfƒtƒHƒ‹ +ƒg‚Å`$EMACSEXECPATH')‚É’u‚©‚êA’N‚à‚ª‚»‚Ì“à—e‚ðXV‚Å‚«‚é‚悤‚É‘Sˆõ‚É‘‚« +ž‚ÝŒ ‚ª—^‚¦‚ç‚ê‚é‚ׂ«‚à‚Ì‚Å‚·BŒãŽÒ‚ÍA”ñ•W€‚à‚µ‚­‚ÍŒÂl“I‚ȃ}ƒNƒ’è‹`‚É +ŠÖ‚·‚éà–¾‚ª‘‚©‚ê‚Ä‚¢‚éƒtƒ@ƒCƒ‹‚ÅA•Ï”`YaTeX-help-file-private'‚Ì’l‚ÅŽw +’肳‚ê‚Ü‚·B‚±‚¿‚ç‚̓†[ƒU‚̃z[ƒ€ƒfƒBƒŒƒNƒgƒŠ‚̉º‚È‚Ç‚É’u‚©‚ê‚Ü‚·B ƒIƒ“ƒ‰ƒCƒ“apropos ================= - uƒIƒ“ƒ‰ƒCƒ“aproposv‚Í GNU Emacs ‚Ì apropos ‚Æ“¯—lAƒ†[ƒU‚ªŽw’肵‚½ -ƒL[ƒ[ƒh‚ðà–¾•¶‚ÉŠÜ‚Þ€–Ú‚·‚ׂĂð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B - - ‚à‚µA’²‚ׂ悤‚Æ‚µ‚½LaTeXƒRƒ}ƒ“ƒh‚ɑ΂·‚éà–¾‚ªƒwƒ‹ƒvƒtƒ@ƒCƒ‹’†‚ÉŒ©‚ -‚©‚ç‚È‚©‚Á‚½ê‡‚ÍAà–¾•¶‚Ì“ü—Í‚ð‹‚ß‚Ä‚­‚é‚Ì‚ÅA‰Â”\‚Å‚ ‚ê‚ÎŽQl‘‚È -‚ǂ𒲂ׂĂ»‚̃Rƒ}ƒ“ƒh‚Ìà–¾‚ð“ü—Í‚µ‚Ä‚­‚¾‚³‚¢B‚à‚µA‚È‚É‚©•W€“I‚ȃR -ƒ}ƒ“ƒh‚ɑ΂·‚éà–¾‚ð‘‚¢‚½‚È‚ç‚΂º‚ÐŽ„‚Ü‚Å‚»‚Ìà–¾‚ð‚¨‘—‚艺‚³‚¢BŽŸ‰ñ -‚Ì”z•z‚ÉŠÜ‚ß‚½‚¢‚ÆŽv‚¢‚Ü‚·B + uƒIƒ“ƒ‰ƒCƒ“aproposv‚Í GNU Emacs ‚Ì apropos ‚Æ“¯—lAƒ†[ƒU‚ªŽw’肵‚½ƒL[ +ƒ[ƒh‚ðà–¾•¶‚ÉŠÜ‚Þ€–Ú‚·‚ׂĂð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B + + ‚à‚µA’²‚ׂ悤‚Æ‚µ‚½LaTeXƒRƒ}ƒ“ƒh‚ɑ΂·‚éà–¾‚ªƒwƒ‹ƒvƒtƒ@ƒCƒ‹’†‚ÉŒ©‚‚© +‚ç‚È‚©‚Á‚½ê‡‚ÍAà–¾•¶‚Ì“ü—Í‚ð‹‚ß‚Ä‚­‚é‚Ì‚ÅA‰Â”\‚Å‚ ‚ê‚ÎŽQl‘‚È‚Ç‚ð’² +‚ׂĂ»‚̃Rƒ}ƒ“ƒh‚Ìà–¾‚ð“ü—Í‚µ‚Ä‚­‚¾‚³‚¢B‚à‚µA‚È‚É‚©•W€“I‚ȃRƒ}ƒ“ƒh‚É‘Î +‚·‚éà–¾‚ð‘‚¢‚½‚È‚ç‚΂º‚ÐŽ„‚Ü‚Å‚»‚Ìà–¾‚ð‚¨‘—‚艺‚³‚¢BŽŸ‰ñ‚Ì”z•z‚ÉŠÜ‚ß‚½ +‚¢‚ÆŽv‚¢‚Ü‚·B  @@ -1513,10 +1490,10 @@ `[prefix] d' ... ƒCƒ“ƒNƒ‹[ƒh\‘¢ƒuƒ‰ƒEƒY -‚ð‰Ÿ‚·‚ÆA‚»‚̃hƒLƒ…ƒƒ“ƒg‚Ìeƒtƒ@ƒCƒ‹‚ð•·‚¢‚Ä—ˆ‚Ü‚·B‚±‚±‚Å‘S‚Ẵtƒ@ -ƒCƒ‹‚Ìe‚Æ‚È‚éƒtƒ@ƒCƒ‹(ƒfƒtƒHƒ‹ƒg‚ªŽ¦‚³‚ê‚Ä‚¢‚é‚Ì‚Å‘å’ï‚ÍRET‚Ì‚Ý)‚ð“ü—Í -‚·‚é‚ƃCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‘S‚Ẵtƒ@ƒCƒ‹‚ð‰ðÍ‚µAƒCƒ“ƒNƒ‹[ƒhó‹µ‚ðŽ‹ -Šo“I‚É•\Ž¦‚µ‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ł͈ȉº‚̃L[‘€ì‚ª—LŒø‚Å‚·B +‚ð‰Ÿ‚·‚ÆA‚»‚̃hƒLƒ…ƒƒ“ƒg‚Ìeƒtƒ@ƒCƒ‹‚ð•·‚¢‚Ä—ˆ‚Ü‚·B‚±‚±‚Å‘S‚Ẵtƒ@ƒCƒ‹ +‚Ìe‚Æ‚È‚éƒtƒ@ƒCƒ‹(ƒfƒtƒHƒ‹ƒg‚ªŽ¦‚³‚ê‚Ä‚¢‚é‚Ì‚Å‘å’ï‚ÍRET‚Ì‚Ý)‚ð“ü—Í‚·‚é‚Æ +ƒCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‘S‚Ẵtƒ@ƒCƒ‹‚ð‰ðÍ‚µAƒCƒ“ƒNƒ‹[ƒhó‹µ‚ðŽ‹Šo“I‚É•\Ž¦ +‚µ‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ł͈ȉº‚̃L[‘€ì‚ª—LŒø‚Å‚·B `n' ... ŽŸ‚Ìs‚Ɉړ®‚µ‘Ήž‚·‚éƒtƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ @@ -1561,8 +1538,8 @@ `q' ... •\Ž¦‘O‚Ìó‘Ô‚É–ß‚é - ‚½‚¾‚µA—ׂ̃EƒBƒ“ƒhƒE‚̃tƒ@ƒCƒ‹‚Ì“à—e‚ð•\Ž¦‚·‚é‹@”\‚ÉŠÖ‚µ‚Ä‚ÍA‘Ήž -‚·‚éƒtƒ@ƒCƒ‹‚ðƒNƒ[ƒY‚µ‚Ä‚µ‚Ü‚¤‚Æ‚¤‚Ü‚­“­‚«‚Ü‚¹‚ñ‚Ì‚Å‚²’ˆÓ‚­‚¾‚³‚¢B + ‚½‚¾‚µA—ׂ̃EƒBƒ“ƒhƒE‚̃tƒ@ƒCƒ‹‚Ì“à—e‚ð•\Ž¦‚·‚é‹@”\‚ÉŠÖ‚µ‚Ä‚ÍA‘Ήž‚·‚é +ƒtƒ@ƒCƒ‹‚ðƒNƒ[ƒY‚µ‚Ä‚µ‚Ü‚¤‚Æ‚¤‚Ü‚­“­‚«‚Ü‚¹‚ñ‚Ì‚Å‚²’ˆÓ‚­‚¾‚³‚¢B  @@ -1575,17 +1552,17 @@ gmhist ====== - `gmhist.el'‚Æ`gmhist-mh.el' ‚ðƒ[ƒh‚µ‚Ä‚¢‚éê‡AƒvƒŒƒ”ƒ…[ƒRƒ}ƒ“ƒh -‚Ì“ü—Í(`[prefix] tp]')AˆóüƒRƒ}ƒ“ƒh‚Ì“ü—Í(`[prefix] tl')‚ÌŽž‚É“Æ—§‚µ‚½ -ƒqƒXƒgƒŠ‚ð—˜—p‚Å‚«‚Ü‚·B‚»‚ꂼ‚ê‚̃vƒƒ“ƒvƒg‚ÅA`M-p' ‚ð‰Ÿ‚·‚Æ’¼‘O‚É—˜ -—p‚µ‚½ƒRƒ}ƒ“ƒh•¶Žš—ñ‚ð‚­‚è•Ô‚µŒÄ‚Ño‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B + `gmhist.el'‚Æ`gmhist-mh.el' ‚ðƒ[ƒh‚µ‚Ä‚¢‚éê‡AƒvƒŒƒ”ƒ…[ƒRƒ}ƒ“ƒh‚Ì“ü +—Í(`[prefix] tp]')AˆóüƒRƒ}ƒ“ƒh‚Ì“ü—Í(`[prefix] tl')‚ÌŽž‚É“Æ—§‚µ‚½ƒqƒXƒg +ƒŠ‚ð—˜—p‚Å‚«‚Ü‚·B‚»‚ꂼ‚ê‚̃vƒƒ“ƒvƒg‚ÅA`M-p' ‚ð‰Ÿ‚·‚Æ’¼‘O‚É—˜—p‚µ‚½ƒRƒ} +ƒ“ƒh•¶Žš—ñ‚ð‚­‚è•Ô‚µŒÄ‚Ño‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B min-out ======= - `min-out.el' (`outline-minor-mode') ‚Æ–ì’¹‚ð‘g‚݇‚킹‚ÄŽg‚¤‚±‚Æ‚à‚à -‚¿‚ë‚ñ‰Â”\‚Å‚·BÝ’è‚Ì•û–@‚ÉŠÖ‚µ‚Ä‚Í`yatexm-o.el'‚ð‚²——‚­‚¾‚³‚¢B + `min-out.el' (`outline-minor-mode') ‚Æ–ì’¹‚ð‘g‚݇‚킹‚ÄŽg‚¤‚±‚Æ‚à‚à‚¿‚ë +‚ñ‰Â”\‚Å‚·BÝ’è‚Ì•û–@‚ÉŠÖ‚µ‚Ä‚Í`yatexm-o.el'‚ð‚²——‚­‚¾‚³‚¢B  @@ -1594,9 +1571,9 @@ ƒJƒXƒ^ƒ}ƒCƒY ************ - –ì’¹‚Ì“®ì‚ð§Œä‚·‚éŽíX‚Ì•Ï”‚ð“ÆŽ©‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA•âŠ®“ü—Í‚ð -‹N“®‚·‚éƒL[ƒAƒTƒCƒ“‚ð•Ï‚¦‚½‚èAŠÂ‹«–¼‚̕⊮Œó•â‚ð‚³‚ç‚É[ŽÀ‚³‚¹‚邱‚Æ -‚È‚Ç‚ª‚Å‚«‚Ü‚·B + –ì’¹‚Ì“®ì‚ð§Œä‚·‚éŽíX‚Ì•Ï”‚ð“ÆŽ©‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA•âŠ®“ü—Í‚ð‹N“® +‚·‚éƒL[ƒAƒTƒCƒ“‚ð•Ï‚¦‚½‚èAŠÂ‹«–¼‚̕⊮Œó•â‚ð‚³‚ç‚É[ŽÀ‚³‚¹‚邱‚Æ‚È‚Ç‚ª‚Å +‚«‚Ü‚·B * Menu: @@ -1610,13 +1587,13 @@ lisp •Ï” ========= - —Ⴆ‚Î prefix ƒL[‚ð `C-c' ˆÈŠO‚̃L[‚É‚µ‚½‚¢ê‡‚ÍA`YaTeX-prefix'‚É -prefix ƒL[‚É‚µ‚½‚¢ƒVƒ“ƒ{ƒ‹‚ð’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚³‚ç‚ÉAu`C-c ‰pŽš'v‚Æ -‚¢‚¤ƒL[ƒoƒCƒ“ƒh‚Í“ÆŽ©‚ÌŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚é‚Ì‚ÅŽg‚¢‚½‚­‚È‚¢B‚±‚̂悤 -‚ÈŽž‚ÍA`YaTeX-inhibit-prefix-letter' ‚ð `t' ‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA -`C-c ‰pŽšc'‚̃oƒCƒ“ƒh‚ª‘S‚ÄA‘Ήž‚·‚é`C-c C-‰pŽšc'‚É•Ï‚í‚è‚Ü‚·(‚½‚¾‚µA -beginŒ^ largeŒ^•âŠ®‚̑啶Žš‹N“®‚É‚æ‚郊ƒWƒ‡ƒ“Žw’è‚͉”\‚È‚Ü‚Ü‚Å‚·B‚±‚ê -‚à–³Œø‚É‚µ‚½‚¢ê‡‚Í`t'‚Å‚Í‚È‚­ 1 ‚ɃZƒbƒg‚µ‚ĉº‚³‚¢B)B + —Ⴆ‚Î prefix ƒL[‚ð `C-c' ˆÈŠO‚̃L[‚É‚µ‚½‚¢ê‡‚ÍA`YaTeX-prefix'‚É +prefix ƒL[‚É‚µ‚½‚¢ƒVƒ“ƒ{ƒ‹‚ð’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚³‚ç‚ÉAu`C-c ‰pŽš'v‚Æ‚¢ +‚¤ƒL[ƒoƒCƒ“ƒh‚Í“ÆŽ©‚ÌŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚é‚Ì‚ÅŽg‚¢‚½‚­‚È‚¢B‚±‚̂悤‚ÈŽž‚ÍA +`YaTeX-inhibit-prefix-letter' ‚ð `t' ‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA`C-c ‰pŽšc'‚Ì +ƒoƒCƒ“ƒh‚ª‘S‚ÄA‘Ήž‚·‚é`C-c C-‰pŽšc'‚É•Ï‚í‚è‚Ü‚·(‚½‚¾‚µAbeginŒ^ largeŒ^ +•âŠ®‚̑啶Žš‹N“®‚É‚æ‚郊ƒWƒ‡ƒ“Žw’è‚͉”\‚È‚Ü‚Ü‚Å‚·B‚±‚ê‚à–³Œø‚É‚µ‚½‚¢ê‡ +‚Í`t'‚Å‚Í‚È‚­ 1 ‚ɃZƒbƒg‚µ‚ĉº‚³‚¢B)B * Menu: @@ -1632,32 +1609,31 @@ ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— -------------------- - yatex-mode ‚É‚¨‚¯‚鎟‚Ì•Ï”‚ªƒJƒXƒ^ƒ}ƒCƒY‰Â”\‚Å‚·B`~/.emacs' ‚Å -`setq' ‚µ‚Ä‚¨‚¯‚ÎA‚»‚¿‚ç‚Ì’è‹`‚ª—D悳‚ê‚Ü‚·BŠ‡ŒÊ‚Ì’†‚̓fƒtƒHƒ‹ƒg’l‚Å -‚·BŽÀÛ‚É•Ï”‚Ì’l‚ð•ÏX‚·‚éê‡‚Í `M-x describe-variable' ‚Å•Ï”‚ÌÚ× -‚Èà–¾‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B + yatex-mode ‚É‚¨‚¯‚鎟‚Ì•Ï”‚ªƒJƒXƒ^ƒ}ƒCƒY‰Â”\‚Å‚·B`~/.emacs' ‚Å `setq' +‚µ‚Ä‚¨‚¯‚ÎA‚»‚¿‚ç‚Ì’è‹`‚ª—D悳‚ê‚Ü‚·BŠ‡ŒÊ‚Ì’†‚̓fƒtƒHƒ‹ƒg’l‚Å‚·BŽÀÛ‚É +•Ï”‚Ì’l‚ð•ÏX‚·‚éê‡‚Í `M-x describe-variable' ‚Å•Ï”‚ÌÚׂÈà–¾‚ðŽQÆ +‚µ‚Ä‚­‚¾‚³‚¢B -- Variable: YaTeX-prefix yatex-mode ’†‚̃vƒŠƒtƒBƒNƒXƒL[ (`\C-c') -- Variable: YaTeX-inhibit-prefix-letter - prefix ƒL[‚Ì’¼Œã‚̃L[ƒoƒCƒ“ƒh‚Å `‰pŽš' ‚Ì‚à‚Ì‚ð `C-‰pŽš' ‚É•ÏX + prefix ƒL[‚Ì’¼Œã‚̃L[ƒoƒCƒ“ƒh‚Å `‰pŽš' ‚Ì‚à‚Ì‚ð `C-‰pŽš' ‚É•ÏX (`nil') -- Variable: YaTeX-fill-prefix - –{•¶‚ð‘‚­Žž‚Ìs“ª‚É‘}“ü‚·‚éÚ“ªŽ«‚·‚È‚í‚¿ fill-prefix - (`""(nil)') + –{•¶‚ð‘‚­Žž‚Ìs“ª‚É‘}“ü‚·‚éÚ“ªŽ«‚·‚È‚í‚¿ fill-prefix (`""(nil)') -- Variable: YaTeX-user-completion-table ŠwK‚µ‚½LaTeXƒRƒ}ƒ“ƒh•Û‘¶ƒtƒ@ƒCƒ‹–¼ (`"~/.yatexrc"') -- Variable: YaTeX-kanji-code - •¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒhnil=Šù‘¶‚̃R[ƒh‚Ì‚Ü‚Ü - 0=no-conversion 1=Shift JIS, 2=JIS, 3=EUC, 4=UTF-8 (2 (MS-DOS‚Å‚Í - 1)) + •¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒhnil=Šù‘¶‚̃R[ƒh‚Ì‚Ü‚Ü 0=no-conversion + 1=Shift JIS, 2=JIS, 3=EUC, 4=UTF-8 (2 (MS-DOS‚Å‚Í1)) -- Variable: tex-command - LaTeXƒ^ƒCƒvƒZƒbƒ^ƒRƒ}ƒ“ƒh–¼ (`"platex"') + LaTeXƒ^ƒCƒvƒZƒbƒ^ƒRƒ}ƒ“ƒh–¼ (`"platex"') + -- Variable: dvi2-command ƒvƒŒƒ”ƒ…[ƒAƒRƒ}ƒ“ƒh–¼ (`"xdvi -geo +0+0 -s 4"') @@ -1666,12 +1642,12 @@ dviƒtƒ@ƒCƒ‹‚̈óü‚ÉŽg‚í‚ê‚éƒRƒ}ƒ“ƒhŽ® (`"dvi2ps %f %t %s | lpr"') -- Variable: dviprint-from-format - ã‚Ì`%f'‚É‘Š“–‚·‚éŠJŽnƒy[ƒWŽw’è‘Ž®A`%b' ‚ªŠJŽnƒy[ƒW”Ô†‚É•Ï‚í - ‚é (`"-f %b"') + ã‚Ì`%f'‚É‘Š“–‚·‚éŠJŽnƒy[ƒWŽw’è‘Ž®A`%b' ‚ªŠJŽnƒy[ƒW”Ô†‚É•Ï‚í‚é + (`"-f %b"') -- Variable: dviprint-to-format - `%t' ‚É‘Š“–‚·‚éI—¹ƒy[ƒWŽw’è‘Ž®A`%e'‚ªI—¹ƒy[ƒW”Ô†‚É•Ï‚í‚é - (`"-t %e"') + `%t' ‚É‘Š“–‚·‚éI—¹ƒy[ƒWŽw’è‘Ž®A`%e'‚ªI—¹ƒy[ƒW”Ô†‚É•Ï‚í‚é (`"-t + %e"') -- Variable: makeindex-command makeindexƒRƒ}ƒ“ƒh (`"makeindex"' (MS-DOS‚Å‚Í`"makeind"')) @@ -1683,42 +1659,40 @@ `\nonstopmode{}'‚ðŽ©“®“I‚É•t‰Á‚·‚é‚© (`nil') -- Variable: latex-warning-regexp - latexƒRƒ}ƒ“ƒh‚Ìo—Í‚·‚éƒEƒH[ƒjƒ“ƒOs‚̳‹K•\Œ» (`"line.* - [0-9]*"') + latexƒRƒ}ƒ“ƒh‚Ìo—Í‚·‚éƒEƒH[ƒjƒ“ƒOs‚̳‹K•\Œ» (`"line.* [0-9]*"') -- Variable: latex-error-regexp “¯‚¶‚­ƒGƒ‰[s‚̳‹K•\Œ» (`"l\\.[1-9][0-9]*"') -- Variable: latex-dos-emergency-message - MS-DOSã‚Å“®ì‚·‚é latex ƒRƒ}ƒ“ƒh‚ªAƒGƒ‰[‚É‚æ‚è’âŽ~‚·‚é‚Æ‚«o—Í - ‚·‚郃bƒZ[ƒW (`"Emergency stop"') + MS-DOSã‚Å“®ì‚·‚é latex ƒRƒ}ƒ“ƒh‚ªAƒGƒ‰[‚É‚æ‚è’âŽ~‚·‚é‚Æ‚«o—Í‚·‚é + ƒƒbƒZ[ƒW (`"Emergency stop"') -- Variable: latex-message-kanji-code - ƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚郃bƒZ[ƒW‚ÌŠ¿ŽšƒR[ƒh.ƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@ - ‚Ìo—Í‚ª‰»‚¯‚鎞‚ÍA‚±‚ê‚ðÝ’è‚·‚é (2, Nemacs‚Å‚Ì‚Ý—LŒø) + ƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚郃bƒZ[ƒW‚ÌŠ¿ŽšƒR[ƒh.ƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚Ìo + —Í‚ª‰»‚¯‚鎞‚ÍA‚±‚ê‚ðÝ’è‚·‚é (2, Nemacs‚Å‚Ì‚Ý—LŒø) -- Variable: NTT-jTeX - ŒÃ‚¢NTT-jTeXŽg—pŽž‚̂悤‚ɃCƒ“ƒfƒ“ƒg‚µ‚½s‚Ì擪‚Æ‘O‚Ìs‚Ì(ƒ^ƒCƒv - ƒZƒbƒgŒã‚Ì)ŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ðŒ™‚¤ê‡‚Í`t'‚É‚·‚é(`nil') + ŒÃ‚¢NTT-jTeXŽg—pŽž‚̂悤‚ɃCƒ“ƒfƒ“ƒg‚µ‚½s‚Ì擪‚Æ‘O‚Ìs‚Ì(ƒ^ƒCƒvƒZƒb + ƒgŒã‚Ì)ŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ðŒ™‚¤ê‡‚Í`t'‚É‚·‚é(`nil') -- Variable: YaTeX-item-regexp item‚ÌŒ…‘µ‚¦‚ÌŽž‚É—p‚¢‚éAitem‚̳‹K•\Œ» (`"\\\\(sub\\)*item"') -- Variable: YaTeX-verb-regexp - verbƒRƒ}ƒ“ƒh‚̳‹K•\Œ»B擪‚Ì\\\\‚͂‚¯‚È‚¢ - (`"verb\\*?\\|path"') + verbƒRƒ}ƒ“ƒh‚̳‹K•\Œ»B擪‚Ì\\\\‚͂‚¯‚È‚¢ (`"verb\\*?\\|path"') -- Variable: YaTeX-nervous ƒ[ƒJƒ‹Ž«‘‚ð—p‚¢‚鎞 `t' (`t') -- Variable: YaTeX-sectioning-regexp - ƒZƒNƒVƒ‡ƒ“‹æØ‚èÝ’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ» + ƒZƒNƒVƒ‡ƒ“‹æØ‚èÝ’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ» (`"\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"') -- Variable: YaTeX-fill-inhibit-environments fill ‚ð—}Ž~‚·‚éŠÂ‹«–¼‚̃ŠƒXƒg (`'("tabular" "tabular*" "array" - picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" - verbatim" "verbatim*")') + "picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" + "verbatim" "verbatim*")') -- Variable: YaTeX-uncomment-once —̈æuncomment‚Ås“ª‚Ì•¡”‚Ì`%'‚ð‘S‚Ä휂·‚é‚© (`nil') @@ -1734,8 +1708,8 @@ alist (`nil')B•âŠ®ƒe[ƒuƒ‹‚Ì‘‚«•û‚ɂ‚¢‚Ä‚Í`yatexmth.el'‚ðŽQÆB -- Variable: YaTeX-default-pop-window-height - 1‰æ–Ê‚ÌŽž‚Ƀ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ð‰‚ß‚Ä쬂·‚鎞‚Ì‚‚³B”’l‚Ås - ”A”Žš•¶Žš—ñ‚ÅEmacsƒEƒBƒ“ƒhƒE‚ɑ΂·‚é•S•ª—¦ (10) + 1‰æ–Ê‚ÌŽž‚Ƀ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ð‰‚ß‚Ä쬂·‚鎞‚Ì‚‚³B”’l‚Ås”A + ”Žš•¶Žš—ñ‚ÅEmacsƒEƒBƒ“ƒhƒE‚ɑ΂·‚é•S•ª—¦ (10) -- Variable: YaTeX-help-file ‹¤—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (`$doc-directory/../../site-lisp/YATEXHLP.jp') @@ -1744,46 +1718,45 @@ ŒÂl—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (`"~/YATEXHLP.jp"') -- Variable: YaTeX-no-begend-shortcut - `[prefix] b ??' ‚̃Vƒ‡[ƒgƒJƒbƒg‚ðŽg‚킸A`[prefix] b' ‚¾‚¯‚ŕ⊮ - “ü—Í‚É“ü‚é (`nil') + `[prefix] b ??' ‚̃Vƒ‡[ƒgƒJƒbƒg‚ðŽg‚킸A`[prefix] b' ‚¾‚¯‚ŕ⊮“ü—Í + ‚É“ü‚é (`nil') -- Variable: YaTeX-hilit-pattern-adjustment-private - ³‹K•\Œ»‚Æ‚»‚ê‚Ƀ}ƒbƒ`‚·‚é‚à‚̘̂_—“IˆÓ–¡‚ðƒVƒ“ƒ{ƒ‹‚Å‚ ‚ç‚킵‚½‚à - ‚̂̃ŠƒXƒgc‚̃ŠƒXƒgBhilit19 ‚ð‘g‚Ýž‚ñ‚Å‚¢‚鎞‚Ì‚Ý—LŒøBÚ‚µ‚­‚Í - `(assq 'yatex-mode hilit-patterns-alist)' ‚µ‚½Œ‹‰Ê‚ÆA•Ï” - `YaTeX-hilit-pattern-adjustment-default' ‚Ì’l(‚Æꇂɂæ‚Á‚Ä‚Í + ³‹K•\Œ»‚Æ‚»‚ê‚Ƀ}ƒbƒ`‚·‚é‚à‚̘̂_—“IˆÓ–¡‚ðƒVƒ“ƒ{ƒ‹‚Å‚ ‚ç‚킵‚½‚à‚Ì + ‚̃ŠƒXƒgc‚̃ŠƒXƒgBhilit19 ‚ð‘g‚Ýž‚ñ‚Å‚¢‚鎞‚Ì‚Ý—LŒøBÚ‚µ‚­‚Í + `(assq 'yatex-mode hilit-patterns-alist)' ‚µ‚½Œ‹‰Ê‚ÆA•Ï” + `YaTeX-hilit-pattern-adjustment-default' ‚Ì’l(‚Æꇂɂæ‚Á‚Ä‚Í hilit19 ‚̃hƒLƒ…ƒƒ“ƒg)‚ðŽQÆ‚¹‚æB -- Variable: YaTeX-sectioning-level LaTeX‚̃ZƒNƒVƒ‡ƒ“’PˆÊ錾ƒRƒ}ƒ“ƒh‚Æ‚»‚̘_—“I‚‚³‚ÌalistB -- Variable: YaTeX-hierarchy-ignore-heading-regexp - Hierarchy ƒoƒbƒtƒ@‚Í’Êíƒtƒ@ƒCƒ‹ƒwƒbƒ_‚Æ‚µ‚ÄALaTeX‚̃ZƒNƒVƒ‡ƒ“é - Œ¾ƒRƒ}ƒ“ƒh‚̈ø”‚ðŒŸõ‚µA‚»‚ꂪ‚È‚¯‚ê‚΃Rƒƒ“ƒgs‚ð’T‚·‚ªA‚»‚ÌÛ - ‚Ƀwƒbƒ_‚Æ‚µ‚Ă͈Ӗ¡‚ðŽ‚½‚È‚¢ƒpƒ^[ƒ“‚ð‚±‚Ì•Ï”‚ÉÝ’è‚·‚éBƒfƒtƒH - ƒ‹ƒg‚Å‚Í RCS ƒwƒbƒ_‚ƃ‚[ƒhŽw’ès(-*- xxx -*-)‚ªÝ’肳‚ê‚Ä‚¢‚éB + Hierarchy ƒoƒbƒtƒ@‚Í’Êíƒtƒ@ƒCƒ‹ƒwƒbƒ_‚Æ‚µ‚ÄALaTeX‚̃ZƒNƒVƒ‡ƒ“錾ƒR + ƒ}ƒ“ƒh‚̈ø”‚ðŒŸõ‚µA‚»‚ꂪ‚È‚¯‚ê‚΃Rƒƒ“ƒgs‚ð’T‚·‚ªA‚»‚ÌۂɃwƒb + ƒ_‚Æ‚µ‚Ă͈Ӗ¡‚ðŽ‚½‚È‚¢ƒpƒ^[ƒ“‚ð‚±‚Ì•Ï”‚ÉÝ’è‚·‚éBƒfƒtƒHƒ‹ƒg‚Å‚Í + RCS ƒwƒbƒ_‚ƃ‚[ƒhŽw’ès(-*- xxx -*-)‚ªÝ’肳‚ê‚Ä‚¢‚éB -- Variable: YaTeX-skip-default-reader - Non-nil ‚ÉÝ’è‚·‚é‚ÆsectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”“ü—ÍŽžAƒAƒhƒCƒ“ŠÖ”‚ª - ‚È‚¯‚ê‚΃~ƒjƒoƒbƒtƒ@‚Å‚Ì“Ç‚Ýž‚Ý‚ð‚¹‚¸‚É“ü—Í‚ðŠ®—¹‚³‚¹‚é (`nil') + Non-nil ‚ÉÝ’è‚·‚é‚ÆsectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”“ü—ÍŽžAƒAƒhƒCƒ“ŠÖ”‚ª‚È‚¯ + ‚ê‚΃~ƒjƒoƒbƒtƒ@‚Å‚Ì“Ç‚Ýž‚Ý‚ð‚¹‚¸‚É“ü—Í‚ðŠ®—¹‚³‚¹‚é (`nil') -- Variable: YaTeX-create-file-prefix-g - `\include'‚È‚Ç‚Å `prefix g'‚µ‚½Žž‚ÉAƒWƒƒƒ“ƒv悪‘¶Ý‚µ‚È‚¢ƒtƒ@ƒC - ƒ‹‚Å‚ ‚Á‚Ä‚àƒI[ƒvƒ“‚·‚é (`nil') + `\include'‚È‚Ç‚Å `prefix g'‚µ‚½Žž‚ÉAƒWƒƒƒ“ƒv悪‘¶Ý‚µ‚È‚¢ƒtƒ@ƒCƒ‹‚Å + ‚ ‚Á‚Ä‚àƒI[ƒvƒ“‚·‚é (`nil') -- Variable: YaTeX-simple-messages ŠeŽí•âŠ®Žž‚̃ƒbƒZ[ƒWo—Í‚ðŠÈ‘f‰»‚·‚é (`nil') -- Variable: YaTeX-hilit-sectioning-face F•t‚¯‚ª—LŒø‚ÈŽž‚Ì `\part' ‚ÌF (`'(yellow/dodgerblue - yellow/slateblue)')BƒŠƒXƒg‚Ì‘æˆê—v‘f‚Í `hilit-background-mode' ‚ª - `'light' ‚ÌŽž‚ÌA‘æ“ñ—v‘f‚Í `'dark' ‚ÌŽž‚Ì `\chapter' ‚ÌF‚ÅA•¶Žš - F/”wŒiF ‚̂悤‚ÉŽw’è‚·‚éB + yellow/slateblue)')BƒŠƒXƒg‚Ì‘æˆê—v‘f‚Í `hilit-background-mode' ‚ª + `'light' ‚ÌŽž‚ÌA‘æ“ñ—v‘f‚Í `'dark' ‚ÌŽž‚Ì `\chapter' ‚ÌF‚ÅA•¶ŽšF/ + ”wŒiF ‚̂悤‚ÉŽw’è‚·‚éB -- Variable: YaTeX-hilit-sectioning-attenuation-rate - F•t‚¯‚ª—LŒø‚ÈŽž‚ÌA`\subparagraph' ‚ÌF‚ð `\chapter' ‚Ì”Z“x‚̉½% - ”–‚­‚µ‚½‚à‚Ì‚É‚·‚é‚© (`'(15 40)') `YaTeX-hilit-sectioning-face'‚Ì - €ŽQÆB + F•t‚¯‚ª—LŒø‚ÈŽž‚ÌA`\subparagraph' ‚ÌF‚ð `\chapter' ‚Ì”Z“x‚̉½%”–‚­ + ‚µ‚½‚à‚Ì‚É‚·‚é‚© (`'(15 40)') `YaTeX-hilit-sectioning-face' ‚Ì€ŽQÆB -- Variable: YaTeX-use-AMS-LaTeX AMS-LaTeX ‚ðŽg—p‚·‚éê‡‚Í `t' ‚ÉÝ’è‚·‚é (`nil') @@ -1792,61 +1765,59 @@ LaTeX2e ‚ðŽg—p‚·‚éê‡‚Í `t' ‚ÉÝ’è‚·‚é (`t') -- Variable: YaTeX-template-file - V‹Kƒtƒ@ƒCƒ‹ì¬Žž‚ÉŽ©“®‘}“ü‚·‚éƒtƒ@ƒCƒ‹–¼ - (`~/work/template.tex') + V‹Kƒtƒ@ƒCƒ‹ì¬Žž‚ÉŽ©“®‘}“ü‚·‚éƒtƒ@ƒCƒ‹–¼ (`~/work/template.tex') -- Variable: YaTeX-search-file-from-top-directory - input‚·‚éƒtƒ@ƒCƒ‹‚ð’T‚·‚Æ‚«‚̊fƒBƒŒƒNƒgƒŠ‚ðmainƒtƒ@ƒCƒ‹‚Ì‚ ‚é - ƒfƒBƒŒƒNƒgƒŠ‚É‚·‚é‚© (`t') + input‚·‚éƒtƒ@ƒCƒ‹‚ð’T‚·‚Æ‚«‚̊fƒBƒŒƒNƒgƒŠ‚ðmainƒtƒ@ƒCƒ‹‚Ì‚ ‚éƒfƒB + ƒŒƒNƒgƒŠ‚É‚·‚é‚© (`t') -- Variable: YaTeX-use-font-lock ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä font-lock ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© (`(featurep 'font-lock)') -- Variable: YaTeX-use-hilit19 - ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä hilit19 ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© - (`(featurep 'hilit19)') + ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä hilit19 ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚©(`(featurep + 'hilit19)') -- Variable: YaTeX-use-italic-bold italic, boldƒtƒHƒ“ƒg‚ð–ì’¹‚ª’T‚·‚©‚Ç‚¤‚© (Emacs20ˆÈ~‚È‚ç`t') font-lock—˜—pŽž‚Ì‚Ý—LŒøB(`(featurep 'hilit19)' -- Variable: YaTeX-singlecmd-suffix - ‘S‚Ä‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í’¼Œã‚É‘}“ü‚·‚镶Žš—ñB - `"{}"' ‚È‚Ç‚ª‚¨Š©‚ßB + ‘S‚Ä‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í’¼Œã‚É‘}“ü‚·‚镶Žš—ñB`"{}"' ‚È‚Ç + ‚ª‚¨Š©‚ßB -- Variable: YaTeX-package-alist-private - LaTeX2e‚̃pƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚ÉŠÜ‚Ü‚ê‚éƒ}ƒNƒ‚̃ŠƒXƒgB“KØ‚ÉÝ’è - ‚µ‚Ä‚¨‚­‚Æ–{•¶“ü—ÍŽž‚Ƀ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚Æ‚»‚̃}ƒNƒ‚É•K—v‚ȃpƒb - ƒP[ƒW‚ð usepackage ‚·‚é‚©Ž©“®“I‚ÉŒŸ¸‚µ‚Ä‚­‚ê‚éB‚µ‚Ä‚¢‚È‚¯‚ê‚Î - usepackage ‚ðŽ©“®’ljÁ‚·‚邱‚Æ‚à‚Å‚«‚éBƒŠƒXƒg‚Í'((ƒpƒbƒP[ƒW–¼1 - (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc)) - (ƒpƒbƒP[ƒW–¼2 (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ - ‚̃ŠƒXƒgcc))ccc)‚Æ‚¢‚¤Œ`Ž®‚É‚·‚éB•âŠ®ƒ^ƒCƒv‚Í `env, - section, maketitle' ‚Ì‚Ç‚ê‚©B‹ï‘Ì—á‚Í•Ï” - `YaTeX-package-alist-default'‚Ì’lŽQÆB + LaTeX2e‚̃pƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚ÉŠÜ‚Ü‚ê‚éƒ}ƒNƒ‚̃ŠƒXƒgB“KØ‚Éݒ肵‚Ä + ‚¨‚­‚Æ–{•¶“ü—ÍŽž‚Ƀ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚Æ‚»‚̃}ƒNƒ‚É•K—v‚ȃpƒbƒP[ƒW + ‚ð usepackage ‚·‚é‚©Ž©“®“I‚ÉŒŸ¸‚µ‚Ä‚­‚ê‚éB‚µ‚Ä‚¢‚È‚¯‚ê‚Î + \usepackage ‚ðŽ©“®’ljÁ‚·‚邱‚Æ‚à‚Å‚«‚éBƒŠƒXƒg‚Í'((ƒpƒbƒP[ƒW–¼1 (•â + Š®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc)) (ƒpƒbƒP[ + ƒW–¼2 (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒX + ƒgcc))ccc) ‚Æ‚¢‚¤Œ`Ž®‚É‚·‚éB•âŠ®ƒ^ƒCƒv‚Í `env, section, + maketitle' ‚Ì‚Ç‚ê‚©B‹ï‘Ì—á‚Í•Ï” `YaTeX-package-alist-default' ‚Ì’l + ŽQÆB -- Variable: YaTeX-tabular-indentation - tabular/array ŠÂ‹«‚ÅŒ»Ýs‚Ì擪ˆÊ’u‚ª•\‚Ì‘æNƒJƒ‰ƒ€‚Ì‚Æ‚«‚Í•W€ƒC - ƒ“ƒfƒ“ƒgˆÊ’u‚©‚ç N*YaTeX-tabular-indentation Œ…‰º‚°‚½ƒCƒ“ƒfƒ“ƒg‚É - ‚·‚éB + tabular/array ŠÂ‹«‚ÅŒ»Ýs‚Ì擪ˆÊ’u‚ª•\‚Ì‘æNƒJƒ‰ƒ€‚Ì‚Æ‚«‚Í•W€ƒCƒ“ƒf + ƒ“ƒgˆÊ’u‚©‚ç N*YaTeX-tabular-indentation Œ…‰º‚°‚½ƒCƒ“ƒfƒ“ƒg‚É‚·‚éB -- Variable: YaTeX-noindent-env-regexp •Ê‚̊‹«“à‚É‚ ‚Á‚Ä‚à \begin{} ‚ªs“ª‚©‚çŽn‚Ü‚é‚ׂ«ŠÂ‹«–¼‚̳‹K•\Œ»B verbatimŠÂ‹«‚È‚Ç‚ðŽw’è‚·‚éB -- Variable: YaTeX-ref-default-label-string - \ref{} ‚̃‰ƒxƒ‹•âŠ®‚щƒxƒ‹–¢Ý’è‚Ì‚à‚Ì‚ÉŽ©“®“I‚ɶ¬‚·‚郉ƒxƒ‹–¼ - ‚Ì‘Ž®Bstrftime(3)ŠÖ”‚ÉŽ—‚½“ú•tƒx[ƒX‚ÅŽw’è‚·‚éB—˜—p‚Å‚«‚é‘Ž® - ‚͈ȉº‚Ì‚Æ‚¨‚èB%y -> ¼—“ñŒ…, %b -> ŒŽ‚̉p–¼, %m -> ŒŽ(1`12) - %d -> “ú, %H -> Žž, %M -> •ª, %S -> •b, %qx -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26 - i”‰»‚µ‚½ yymmdd. %qX -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ HHMMSS. ƒf - ƒtƒHƒ‹ƒg‚Í "%H%M%S_%d%b%y" + \ref{} ‚̃‰ƒxƒ‹•âŠ®‚щƒxƒ‹–¢Ý’è‚Ì‚à‚Ì‚ÉŽ©“®“I‚ɶ¬‚·‚郉ƒxƒ‹–¼‚Ì‘ + Ž®Bstrftime(3)ŠÖ”‚ÉŽ—‚½“ú•tƒx[ƒX‚ÅŽw’è‚·‚éB—˜—p‚Å‚«‚é‘Ž®‚͈ȉº‚Ì + ‚Æ‚¨‚èB%y -> ¼—“ñŒ…, %b -> ŒŽ‚̉p–¼, %m -> ŒŽ(1`12) %d -> “ú, + %H -> Žž, %M -> •ª, %S -> •b, %qx -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ + yymmdd. %qX -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ HHMMSS. ƒfƒtƒHƒ‹ƒg‚Í + "%H%M%S_%d%b%y" -- Variable: YaTeX-ref-generate-label-function - \ref{}‚̃‰ƒxƒ‹–¼Ž©“®¶¬‚Ì‚Æ‚«‚ÉŽg‚¤ŠÖ”‚̃Vƒ“ƒ{ƒ‹BƒfƒtƒHƒ‹ƒg‚Í•W - €‚Ì YaTeX::ref-generate-label ŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚éBˆø”‚ð2‚ÂŽæ‚é - ŠÖ”‚ð’è‹`‚µ‚ÄA‚±‚Ì•Ï”‚ɃZƒbƒg‚·‚é‚Æ‚»‚ÌŠÖ”‚ðŒÄ‚ñ‚¾Œ‹‰Ê‚ðƒfƒtƒH - ƒ‹ƒg‚̃‰ƒxƒ‹–¼Œó•â‚Æ‚·‚éBÝ’è—á: + \ref{}‚̃‰ƒxƒ‹–¼Ž©“®¶¬‚Ì‚Æ‚«‚ÉŽg‚¤ŠÖ”‚̃Vƒ“ƒ{ƒ‹BƒfƒtƒHƒ‹ƒg‚Í•W€ + ‚Ì YaTeX::ref-generate-label ŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚éBˆø”‚ð2‚ÂŽæ‚éŠÖ” + ‚ð’è‹`‚µ‚ÄA‚±‚Ì•Ï”‚ɃZƒbƒg‚·‚é‚Æ‚»‚ÌŠÖ”‚ðŒÄ‚ñ‚¾Œ‹‰Ê‚ðƒfƒtƒHƒ‹ƒg‚Ì + ƒ‰ƒxƒ‹–¼Œó•â‚Æ‚·‚éBÝ’è—á: (setq YaTeX-ref-generate-label-function 'my-yatex-generate-label) (defun my-yatex-generate-label (command value) (and (string= command "caption") @@ -1868,9 +1839,9 @@ ƒJƒXƒ^ƒ}ƒCƒY•Ï”Ý’è—á ---------------------- - ‚½‚Æ‚¦‚ÎAprefix ƒL[‚Æ‚µ‚Ä`ESC'‚ðŽg—p‚µAV‚½‚ȕ⊮Œó•â‚ðŠi”[‚·‚éƒtƒ@ -ƒCƒ‹‚ðA`~/src/emacs/yatexrc' ‚É‚µAs“ª‚Ì prefix ‚ðƒ^ƒu•¶Žšˆê‚‚ɕς¦ -‚½‚¢‚Æ‚«‚ÍA + ‚½‚Æ‚¦‚ÎAprefix ƒL[‚Æ‚µ‚Ä`ESC'‚ðŽg—p‚µAV‚½‚ȕ⊮Œó•â‚ðŠi”[‚·‚éƒtƒ@ƒC +ƒ‹‚ðA`~/src/emacs/yatexrc' ‚É‚µAs“ª‚Ì prefix ‚ðƒ^ƒu•¶Žšˆê‚‚ɕς¦‚½‚¢‚Æ +‚«‚ÍA (setq YaTeX-prefix "\e" YaTeX-user-completion-table "~/src/emacs/yatexrc" @@ -1885,22 +1856,21 @@ hook•Ï” -------- - ‚Ü‚½Ahook •Ï” `yatex-mode-hook', `yatex-mode-load-hook' ‚ð—pˆÓ‚µ‚Ä -‚¢‚Ü‚·B‚·‚×‚Ä‚Ì yatex-mode ‚̃oƒbƒtƒ@‚Åì—p‚³‚¹‚½‚¢‚à‚Ì‚ÍA -`yatex-mode-hook' ‚É‹Lq‚µA`yatex.el' ‚ðƒ[ƒh‚·‚鎞‚¾‚¯ì—p‚³‚¹‚½‚¢‚à -‚Ì‚Í`yatex-mode-load-hook' ‚É‹Lq‚µ‚Ü‚·B—Ⴆ‚ÎA`outline-minor-mode' -‚ð—˜—p‚·‚éê‡A‚»‚ꂼ‚ê‚̃oƒbƒtƒ@‚Å `outline-minor-mode' ‚ð—LŒø‚É‚µ‚½ -‚¢‚Ì‚ÅA`yatex-mode-hook' ‚ðŽŸ‚Ì‚æ‚¤‚Éݒ肵‚Ü‚·B + ‚Ü‚½Ahook •Ï” `yatex-mode-hook', `yatex-mode-load-hook' ‚ð—pˆÓ‚µ‚Ä‚¢‚Ü +‚·B‚·‚×‚Ä‚Ì yatex-mode ‚̃oƒbƒtƒ@‚Åì—p‚³‚¹‚½‚¢‚à‚Ì‚ÍA`yatex-mode-hook' +‚É‹Lq‚µA`yatex.el' ‚ðƒ[ƒh‚·‚鎞‚¾‚¯ì—p‚³‚¹‚½‚¢‚à‚Ì‚Í +`yatex-mode-load-hook' ‚É‹Lq‚µ‚Ü‚·B—Ⴆ‚ÎA`outline-minor-mode' ‚ð—˜—p‚· +‚éê‡A‚»‚ꂼ‚ê‚̃oƒbƒtƒ@‚Å `outline-minor-mode' ‚ð—LŒø‚É‚µ‚½‚¢‚Ì‚ÅA +`yatex-mode-hook' ‚ðŽŸ‚Ì‚æ‚¤‚Éݒ肵‚Ü‚·B (setq yatex-mode-hook '(lambda () (outline-minor-mode t))) -‹t‚ÉA“ÆŽ©‚̃L[’è‹`‚ðs‚¢‚½‚¢Žž‚È‚Ç‚ÍA`yatex-mode-load-hook' ‚ð—˜—p‚µ -‚Ü‚·B—Ⴆ‚ÎAbegin Œ^•âŠ®‚É‚¨‚¢‚ÄA document ‚âAenumerate ˆÈŠO‚̊‹« -–¼‚àƒVƒ‡[ƒgƒJƒbƒgƒL[‚Å“ü‚ꂽ‚¢‚È‚Ç‚Æ‚¢‚¤Žž‚ÍAŽŸ‚̂悤‚É‚µ‚Ü‚·BˆÈ‰º -‚Ì—á‚ÍA`[prefix] ba' ‚Å `\begin{abstract}', `\end{abstract}' ‚ð‘}“ü‚µ -‚Ü‚·B +‹t‚ÉA“ÆŽ©‚̃L[’è‹`‚ðs‚¢‚½‚¢Žž‚È‚Ç‚ÍA`yatex-mode-load-hook' ‚ð—˜—p‚µ‚Ü +‚·B—Ⴆ‚ÎAbegin Œ^•âŠ®‚É‚¨‚¢‚ÄA document ‚âAenumerate ˆÈŠO‚̊‹«–¼‚à +ƒVƒ‡[ƒgƒJƒbƒgƒL[‚Å“ü‚ꂽ‚¢‚È‚Ç‚Æ‚¢‚¤Žž‚ÍAŽŸ‚̂悤‚É‚µ‚Ü‚·BˆÈ‰º‚Ì—á‚ÍA +`[prefix] ba' ‚Å `\begin{abstract}', `\end{abstract}' ‚ð‘}“ü‚µ‚Ü‚·B (setq yatex-mode-load-hook '(lambda() (YaTeX-define-begend-key "ba" "abstract"))) @@ -1915,9 +1885,9 @@ hook—pƒtƒ@ƒCƒ‹ -------------- - •Ï” `yatex-mode-load-hook' ‚Å’è‹`‚·‚é“à—e‚ª‘½‚¢Žž‚ÍA`yatexhks.el'‚Æ -‚¢‚¤ƒtƒ@ƒCƒ‹‚ðì‚èA‚»‚Ì’†‚É–ì’¹ŠÖ˜A‚ÌÝ’è‚ð‘‚­Ž–‚ÅA‰Šú‰»‚ÌŽž‚ÉŽ©“® -“I‚Ƀ[ƒh‚µ‚Ü‚·B + •Ï” `yatex-mode-load-hook' ‚Å’è‹`‚·‚é“à—e‚ª‘½‚¢Žž‚ÍA`yatexhks.el'‚Æ‚¢ +‚¤ƒtƒ@ƒCƒ‹‚ðì‚èA‚»‚Ì’†‚É–ì’¹ŠÖ˜A‚ÌÝ’è‚ð‘‚­Ž–‚ÅA‰Šú‰»‚ÌŽž‚ÉŽ©“®“I‚Ƀ[ +ƒh‚µ‚Ü‚·B @@ -1927,9 +1897,9 @@ •t‰ÁŠÖ”(ƒAƒhƒCƒ“ŠÖ”) ====================== - ŠeŽí•âŠ®Žž‚ÉAŠÂ‹«–¼‚âƒRƒ}ƒ“ƒh–¼‚ɉž‚¶‚½‚«‚ßׂ₩‚ȕ⊮“ü—Í‹@”\‚ðŽÀ -Œ»‚·‚邽‚ß‚ÌŠÖ”‚ð쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚ÌŠÖ”‚Ì쬕û–@‚âA‘g‚Ýž -‚Ý•û–@‚ÉŠÖ‚µ‚Ä‚ÍA`yatexadd.doc' ‚ð‚²——‚­‚¾‚³‚¢B + ŠeŽí•âŠ®Žž‚ÉAŠÂ‹«–¼‚âƒRƒ}ƒ“ƒh–¼‚ɉž‚¶‚½‚«‚ßׂ₩‚ȕ⊮“ü—Í‹@”\‚ðŽÀŒ»‚· +‚邽‚ß‚ÌŠÖ”‚ð쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚ÌŠÖ”‚Ì쬕û–@‚âA‘g‚Ýž‚Ý•û–@‚É +ŠÖ‚µ‚Ä‚ÍA`yatexadd.doc' ‚ð‚²——‚­‚¾‚³‚¢B  @@ -1938,12 +1908,11 @@ ‚»‚Ì‘¼ ****** - –ì’¹‚Ì•W€‚Ì LaTeX ƒRƒ}ƒ“ƒh‚ÌŽ«‘‚É‚ÍAìŽÒ‚ª•p”É‚ÉŽg‚¤‚à‚Ì‚µ‚©“o˜^‚³ -‚ê‚Ä‚¢‚Ü‚¹‚ñB‚±‚ê‚ÍA•âŠ®Œó•â‚ÉŽg‚¢‚»‚¤‚à‚È‚¢ƒRƒ}ƒ“ƒh‚ª‘¶Ý‚µ‚ÄA•âŠ® -‚µ‚½‚¢ƒRƒ}ƒ“ƒh‚ðo‚·‚܂ł̃Xƒgƒ[ƒN”‚ð‘‚₵‚Ä‚µ‚Ü‚¤Ž–‚ð–hŽ~‚·‚邽‚ß -‚Å‚·B•W€Ž«‘‚É‚È‚¢ƒRƒ}ƒ“ƒh‚àA‚Å‚«‚邾‚¯•âŠ®“ü—Í•ûŽ®‚ð—˜—p‚µAƒ†[ƒU -Ž«‘‚ð[ŽÀ‚³‚¹‚邱‚Æ‚ÅA‚ ‚È‚½‚Ì LaTeX ƒXƒ^ƒCƒ‹‚É‚ ‚Á‚½–ì’¹‚ւƈç‚Á‚Ä‚¢ -‚­‚±‚Æ‚Å‚µ‚傤B + –ì’¹‚Ì•W€‚Ì LaTeX ƒRƒ}ƒ“ƒh‚ÌŽ«‘‚É‚ÍAìŽÒ‚ª•p”É‚ÉŽg‚¤‚à‚Ì‚µ‚©“o˜^‚³‚ê +‚Ä‚¢‚Ü‚¹‚ñB‚±‚ê‚ÍA•âŠ®Œó•â‚ÉŽg‚¢‚»‚¤‚à‚È‚¢ƒRƒ}ƒ“ƒh‚ª‘¶Ý‚µ‚ÄA•âŠ®‚µ‚½‚¢ +ƒRƒ}ƒ“ƒh‚ðo‚·‚܂ł̃Xƒgƒ[ƒN”‚ð‘‚₵‚Ä‚µ‚Ü‚¤Ž–‚ð–hŽ~‚·‚邽‚ß‚Å‚·B•W€ +Ž«‘‚É‚È‚¢ƒRƒ}ƒ“ƒh‚àA‚Å‚«‚邾‚¯•âŠ®“ü—Í•ûŽ®‚ð—˜—p‚µAƒ†[ƒUŽ«‘‚ð[ŽÀ‚³‚¹ +‚邱‚Æ‚ÅA‚ ‚È‚½‚Ì LaTeX ƒXƒ^ƒCƒ‹‚É‚ ‚Á‚½–ì’¹‚ւƈç‚Á‚Ä‚¢‚­‚±‚Æ‚Å‚µ‚傤B  @@ -1952,23 +1921,23 @@ Žæ‚舵‚¢ ******** - –{ƒvƒƒOƒ‰ƒ€‚̓tƒŠ[ƒ\ƒtƒgƒEƒFƒA‚Å‚·B–{ƒvƒƒOƒ‰ƒ€‚ðŽg—p‚µ‚Ķ‚¶‚½‚¢ -‚©‚Ȃ錋‰Ê‚ɑ΂µ‚Ä‚àìŽÒ‚ÍÓ”C‚𕉂í‚È‚¢‚±‚Æ‚Æ‚µ‚Ü‚·B“]Ú“™‚ÉŠÖ‚µ‚Ä‚Í -§ŒÀ‚¢‚½‚µ‚Ü‚¹‚ñB펯“I‚Ɉµ‚Á‚Ä‚­‚¾‚³‚¢B‚Ü‚½A–{ƒvƒƒOƒ‰ƒ€‚ÉŠÜ‚Ü‚ê‚é -ƒR[ƒh‚ð—˜—p‚·‚邱‚ÆA‰ü‘¢‚·‚邱‚Æ‚àŽ©—R‚És‚È‚Á‚Ä\‚¢‚Ü‚¹‚ñ‚ªA—¬—p‚· -‚邱‚Æ‚É‚æ‚èŒ_–ñ’÷Œ‹‚Ì•K—v‚ª¶‚¶‚éê‡AŽ„‚Í‚¢‚©‚È‚éŒ_–ñ‚à’÷Œ‹‚µ‚Ü‚¹‚ñB -‹ï‘Ì“I‚É‚ÍGPL‚ւ̃TƒCƒ“‚Í‚µ‚Ü‚¹‚ñ‚Ì‚ÅAGNU‚ÉŠñ‘¡‚·‚é‚à‚Ì‚ðì‚Á‚Ä‚¢‚éê -‡Ž„‚Ìì•i‚©‚çŽæ‚èž‚ñ‚¾ƒR[ƒh‚ð—¬—p‚·‚é‚Æ‹ê˜J‚·‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñB‚¢‚© -‚È‚éƒR[ƒh—¬—p‚à‹‘”Û‚µ‚Ü‚¹‚ñ‚ªŒ_–ñ’÷Œ‹‚ÍŽ«‘Þ‚µ‚Ü‚·B - - ‹êîAŠó–]AƒoƒO•ñAŠ´‘z“™‚ÍŠ½Œ}‚¢‚½‚µ‚Ü‚·B˜A—‚Í yuuji@yatex.org -‚Ü‚Å(2004”N1ŒŽŒ»Ý)BŒp‘±“I‚ÉŽg—p‚µ‚Ä‚­‚¾‚³‚é•û‚̓ƒCƒŠƒ“ƒOƒŠƒXƒgufj–ì -’¹‚̉ïv‚É¥”ñ‰Á“ü‚µ‚Ä‚­‚¾‚³‚¢B‰Á“ü•û–@‚ɂ‚¢‚Ä‚Í–{ƒpƒbƒP[ƒW‚Ì -`docs/qanda'ƒtƒ@ƒCƒ‹‚Ìu‚»‚Ì‘¼v‚ÌÍ‚ðŒä——‚­‚¾‚³‚¢B + –{ƒvƒƒOƒ‰ƒ€‚̓tƒŠ[ƒ\ƒtƒgƒEƒFƒA‚Å‚·B–{ƒvƒƒOƒ‰ƒ€‚ðŽg—p‚µ‚Ķ‚¶‚½‚¢‚©‚È +‚錋‰Ê‚ɑ΂µ‚Ä‚àìŽÒ‚ÍÓ”C‚𕉂í‚È‚¢‚±‚Æ‚Æ‚µ‚Ü‚·B“]Ú“™‚ÉŠÖ‚µ‚ĂͧŒÀ‚¢‚½ +‚µ‚Ü‚¹‚ñB펯“I‚Ɉµ‚Á‚Ä‚­‚¾‚³‚¢B‚Ü‚½A–{ƒvƒƒOƒ‰ƒ€‚ÉŠÜ‚Ü‚ê‚éƒR[ƒh‚ð—˜—p +‚·‚邱‚ÆA‰ü‘¢‚·‚邱‚Æ‚àŽ©—R‚És‚È‚Á‚Ä\‚¢‚Ü‚¹‚ñ‚ªA—¬—p‚·‚邱‚Æ‚É‚æ‚èŒ_–ñ +’÷Œ‹‚Ì•K—v‚ª¶‚¶‚éê‡AŽ„‚Í‚¢‚©‚È‚éŒ_–ñ‚à’÷Œ‹‚µ‚Ü‚¹‚ñB‹ï‘Ì“I‚É‚ÍGPL‚Ö‚Ì +ƒTƒCƒ“‚Í‚µ‚Ü‚¹‚ñ‚Ì‚ÅAGNU‚ÉŠñ‘¡‚·‚é‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇎ„‚Ìì•i‚©‚çŽæ‚èž +‚ñ‚¾ƒR[ƒh‚ð—¬—p‚·‚é‚Æ‹ê˜J‚·‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñB‚¢‚©‚È‚éƒR[ƒh—¬—p‚à‹‘”Û‚µ‚Ü +‚¹‚ñ‚ªŒ_–ñ’÷Œ‹‚ÍŽ«‘Þ‚µ‚Ü‚·B + + ‹êîAŠó–]AƒoƒO•ñAŠ´‘z“™‚ÍŠ½Œ}‚¢‚½‚µ‚Ü‚·B˜A—‚Í yuuji@yatex.org ‚Ü +‚Å(2004”N1ŒŽŒ»Ý)BŒp‘±“I‚ÉŽg—p‚µ‚Ä‚­‚¾‚³‚é•û‚̓ƒCƒŠƒ“ƒOƒŠƒXƒgufj–ì’¹‚Ì +‰ïv‚É¥”ñ‰Á“ü‚µ‚Ä‚­‚¾‚³‚¢B‰Á“ü•û–@‚ɂ‚¢‚Ä‚Í–{ƒpƒbƒP[ƒW‚Ì `docs/qanda' +ƒtƒ@ƒCƒ‹‚Ìu‚»‚Ì‘¼v‚ÌÍ‚ðŒä——‚­‚¾‚³‚¢B Žd—l‚ÍA—\‚È‚­ŠmŽÀ‚É(‹C•ªŽŸ‘æ‚Å)•ÏX‚³‚ê‚Ü‚·:-pB - L£—Y“ñ + L£—Y“ñ  @@ -1979,214 +1948,217 @@ * Menu: -* :: Greek letter completion. (line 5) -* ;: Image completion. (line 5) -* ƒ°[‚µ‚­‚Ü]: Image completion. (line 5) -* Š‡‚é[‚­‚­‚é]: Enclose section-type command. (line 5) -* Š‡‚é[‚­‚­‚é]: largeŒ^•âŠ®. (line 23) -* ˆø”[‚Ђ«‚·‚¤]: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh. (line 5) -* ‰¢•¶[‚¨‚¤‚Ó‚ñ]: Accent mark completion. (line 5) -* ‡[‚Þ‚¯‚ñ‚½‚¢]: Image completion. (line 5) -* –îˆó[‚₵‚邵]: Image completion. (line 5) -* ;©g[;‚µ‚µ‚ñ]: Image completion. (line 34) -* ƒuƒƒbƒN[‚Ó‚ë‚‚­]: beginŒ^•âŠ®. (line 82) -* ƒqƒXƒgƒŠ[‚Ђ·‚Æ‚è]: Cooperation with other packages. (line 9) -* Œ…‘µ‚¦[‚¯‚½‚»‚낦]: Filling. (line 5) -* ‚â‚¿‚傤[‚â‚¿‚悤]: Intro. (line 5) -* ƒWƒƒƒ“ƒv[‚µ‚â‚ñ‚Ó]: view-sectioning. (line 44) -* &“ü—Í[&‚ɂ䂤‚è‚æ‚­]: Intelligent newline. (line 5) -* Ý’è—á[‚¹‚‚Ă¢‚ê‚¢]: Sample definitions. (line 5) -* Žž•âŠ®[‚·‚¢‚µ‚Ù‚©‚ñ]: Arbitrary completion. (line 5) -* •Â‚¶ž‚ß‚é[‚Æ‚µ‚±‚ß‚é]: beginŒ^•âŠ®. (line 82) -* Ä‹A•âŠ®[‚³‚¢‚«‚Ù‚©‚ñ]: Recursive completion. (line 5) -* ƒ†[ƒU«‘[‚䂤‚³‚µ‚µ‚æ]: beginŒ^•âŠ®. (line 72) -* ˜_—ŠK‘w[‚ë‚ñ‚è‚©‚¢‚»‚¤]: view-sectioning. (line 44) -* ‚±‚±‚Í‚Ç‚±?[‚±‚±‚Í‚Æ‚±?]: What column. (line 5) -* ƒJƒXƒ^ƒ}ƒCƒY[‚©‚·‚½‚Ü‚¢‚·]: Customizations. (line 5) -* ƒL[ƒAƒTƒCƒ“[‚«‚¢‚ ‚³‚¢‚ñ]: Customizations. (line 5) -* ”®ƒ‚[ƒh[‚·‚¤‚µ‚«‚à‚¨‚Æ]: Image completion. (line 5) -* ƒCƒ“ƒXƒg[ƒ‹[‚¢‚ñ‚·‚Æ‚¨‚é]: Installation. (line 5) -* ƒ^ƒCƒvƒZƒbƒ^[‚½‚¢‚Ó‚¹‚‚½]: Invocation. (line 5) -* ƒvƒŒƒ”ƒ…[ƒA[‚Ó‚ê‚Ђ䂤‚ ]: Invocation. (line 5) -* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®[‚¨‚¦‚©‚«‚‚¤‚é‚«‚Æ‚¤]: ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®. (line 5) -* ŠÂ‹«‚Ì擪‚Ö[‚©‚ñ‚«‚悤‚Ì‚¹‚ñ‚Æ‚¤‚Ö]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* ŠÂ‹«‚Ì––”ö‚Ö[‚©‚ñ‚«‚悤‚̂܂‚ЂÖ]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* ŠÂ‹«‚ðƒ}[ƒN[‚©‚ñ‚«‚悤‚ð‚Ü‚ ‚­]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* ƒAƒEƒgƒ‰ƒCƒ“[‚ ‚¤‚Æ‚ç‚¢‚ñ]: view-sectioning. (line 5) -* ˆø”‚̌”‚ð•Ï‚¦‚é[‚Ђ«‚·‚¤‚Ì‚±‚·‚¤‚ð‚©‚¦‚é]: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh. (line 26) -* ƒAƒNƒZƒ“ƒg‹L†•âŠ®[‚ ‚­‚¹‚ñ‚Æ‚«‚±‚¤‚Ù‚©‚ñ]: Accent mark completion. (line 5) -* ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê——[‚©‚·‚½‚Ü‚¢‚·‚Ö‚ñ‚·‚¤‚¢‚¿‚ç‚ñ]: All customizable variables. (line 5) -* ŠÂ‹«–¼‚̕⊮[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ù‚©‚ñ]: beginŒ^•âŠ®. (line 5) -* ƒGƒ‰[C³[‚¦‚ç‚ ‚µ‚䂤‚¹‚¢]: Calling typesetter. (line 5) -* ƒ^ƒCƒvƒZƒbƒ^‹N“®[‚½‚¢‚Ó‚¹‚‚½‚«‚Æ‚¤]: Calling typesetter. (line 5) -* ƒ^ƒCƒvƒZƒbƒgƒGƒ‰[[‚½‚¢‚Ó‚¹‚‚Ƃ¦‚ç‚ ]: Calling typesetter. (line 5) -* ŠÂ‹«–¼‚Ì•ÏX[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ö‚ñ‚±‚¤]: Changing LaTeX command. (line 21) -* ƒ‚[ƒhØ‚è‘Ö‚¦[‚à‚¤‚Æ‚«‚è‚©‚¦]: Changing mode of YaTeX. (line 5) -* ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚é[‚«‚Æ‚¤‚·‚邱‚Ü‚ñ‚Æ‚ð‚©‚¦‚é]: Changing typesetter. (line 8) -* ƒ^ƒCƒvƒZƒbƒ^‚ÌŽg‚¢•ª‚¯[‚½‚¢‚Ó‚¹‚‚½‚̂‚©‚¢‚킯]: Changing typesetter. (line 13) -* ƒRƒƒ“ƒgƒAƒEƒg[‚±‚ß‚ñ‚Æ‚ ‚¤‚Æ]: Commenting out. (line 5) -* ‚»‚Ì‘¼‚̃Rƒ}ƒ“ƒh§Œä[‚»‚Ì‚½‚Ì‚±‚Ü‚ñ‚Æ‚¹‚¢‚«‚æ]: Controlling which command to invoke. (line 5) -* ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg[‚½‚͂‚¯‚¦‚µ‚Æ‚Ì‚ê‚ñ‚¯‚¢]: Cooperation with other packages. (line 5) -* ƒRƒ}ƒ“ƒhƒqƒXƒgƒŠ[‚±‚Ü‚ñ‚ƂЂ·‚Æ‚è]: Cooperation with other packages. (line 9) -* ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv[‚©‚ ‚»‚邵‚â‚ñ‚Ó]: Cursor jump. (line 5) -* %#‹L–@©‘Ì‚Ì•ÒW[%#‚«‚Ù‚¤‚µ‚½‚¢‚Ì‚Ö‚ñ‚µ‚䂤]: Editing %# notation. (line 5) -* ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦[‚Í‚ç‚­‚ç‚Ó‚Ì‚¯‚½‚»‚낦]: Filling. (line 48) -* ŒÅ’è—̈æ‚̃^ƒCƒvƒZƒbƒg[‚±‚Ä‚¢‚è‚悤‚¢‚«‚Ì‚½‚¢‚Ó‚¹‚‚Æ]: Fix region for typesetting. (line 5) -* —̈挈’è‹K‘¥[‚è‚悤‚¢‚«‚¯‚‚Ă¢‚«‚»‚­]: Fix region for typesetting. (line 27) -* ’·‚¢ƒtƒ@ƒCƒ‹‚Ì•ÒW[‚È‚©‚¢‚Ó‚ ‚¢‚é‚Ì‚Ö‚ñ‚µ‚䂤]: Fix region for typesetting. (line 36) -* ƒMƒŠƒVƒƒ•¶Žš•âŠ®[‚«‚肵‚â‚à‚µ‚Ù‚©‚ñ]: Greek letter completion. (line 5) -* ƒCƒ[ƒW•âŠ®[‚¢‚ß‚¦‚µ‚Ù‚©‚ñ]: Image completion. (line 5) -* ”®‹L†ƒCƒ[ƒW•âŠ®[‚·‚¤‚µ‚«‚«‚±‚¤‚¢‚ß‚¦‚µ‚Ù‚©‚ñ]: Image completion. (line 5) -* ‘¼‚̃tƒ@ƒCƒ‹‚ÌŽè’¼‚µ[‚Ù‚©‚Ì‚Ó‚ ‚¢‚é‚Ì‚Ä‚È‚¨‚µ]: Includeonly. (line 12) -* ƒCƒ“ƒNƒ‹[ƒh\‘¢[‚¢‚ñ‚­‚邤‚Æ‚±‚¤‚»‚¤]: Inclusion hierarchy browser. (line 5) -* ‚¨‚Ü‚©‚¹‰üs[‚¨‚Ü‚©‚¹‚©‚¢‚«‚悤]: Intelligent newline. (line 5) -* ƒvƒŠƒ“ƒgƒAƒEƒg[‚Ó‚è‚ñ‚Æ‚ ‚¤‚Æ]: Invocation. (line 5) -* ŠÂ‹«‚Ìíœ[‚©‚ñ‚«‚悤‚Ì‚³‚­‚µ‚æ]: Killing LaTeX command. (line 7) -* ƒ‰ƒxƒ‹©“®¶¬[‚ç‚ւ邵‚Æ‚¤‚¹‚¢‚¹‚¢]: label-generation. (line 5) -* ƒtƒHƒ“ƒgŽw’èŽq[‚Ó‚¨‚ñ‚Æ‚µ‚Ä‚¢‚µ]: largeŒ^•âŠ®. (line 19) -* •¶ŽšƒTƒCƒYŽw’èŽq[‚à‚µ‚³‚¢‚·‚µ‚Ä‚¢‚µ]: largeŒ^•âŠ®. (line 19) -* ƒ[ƒJƒ‹«‘[‚남‚©‚邵‚µ‚æ]: Local dictionary. (line 5) -* •ÏX/íœ[‚Ö‚ñ‚±‚¤/‚³‚­‚µ‚æ]: Modifying/Deleting. (line 5) -* ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv[‚¨‚ñ‚ç‚¢‚ñ‚Ö‚é‚Ó]: Online help. (line 5) -* ƒL[ƒ[ƒhŒŸõ[‚«‚¢‚í‚ ‚Æ‚¯‚ñ‚³‚­]: Online help. (line 5) -* ƒOƒ[ƒoƒ‹ƒwƒ‹ƒv[‚­‚남‚Í‚é‚Ö‚é‚Ó]: Online help. (line 17) -* ƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒv[‚Ó‚ç‚¢‚Ö‚¦‚Æ‚Ö‚é‚Ó]: Online help. (line 17) -* “ü—̓tƒ@ƒCƒ‹•ªŠ„[‚ɂ䂤‚è‚æ‚­‚Ó‚ ‚¢‚é‚Ó‚ñ‚©‚Â]: Splitting input files. (line 12) -* ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è‚¢‚¿‚ç‚ñ‚͂‚ӂ ]: view-sectioning. (line 20) -* ƒZƒNƒVƒ‡ƒ“‹æØ‚è[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è]: view-sectioning. (line 44) -* Œ»Ý‚̃Jƒ‰ƒ€•\¦[‚¯‚ñ‚³‚¢‚Ì‚©‚ç‚ނЂ悤‚µ]: What column. (line 24) -* apropos: Online help. (line 5) -* autoload: Installation. (line 5) -* auto-mode-alist: Installation. (line 5) -* %#BEGIN: Fix region for typesetting. (line 5) -* beginŒ^•âŠ®[begin‚©‚½‚Ù‚©‚ñ]: beginŒ^•âŠ®. (line 5) -* C-c: Invocation. (line 5) -* Demacs: Intro. (line 5) -* .emacs: Installation. (line 5) -* %#END: Fix region for typesetting. (line 5) -* end•âŠ®[end‚Ù‚©‚ñ]: end•âŠ®. (line 5) -* ghostview: Splitting input files. (line 17) -* gmhist: Cooperation with other packages. (line 9) -* hook•Ï”[hook‚Ö‚ñ‚·‚¤]: Hook variables. (line 5) -* o—ÍI—¹ƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚µ‚䂤‚è‚悤‚Ö‚¦‚µ]: Print out. (line 10) -* includeonly: Includeonly. (line 5) -* Install: Installation. (line 5) -* item‚È‚Ç‚ÌŒ…‘µ‚¦[item‚È‚Æ‚Ì‚¯‚½‚»‚낦]: Filling. (line 9) -* o—ÍŠJŽnƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚©‚¢‚µ‚Ö‚¦‚µ]: Print out. (line 10) -* jlatex: Invocation. (line 5) -* largeŒ^•âŠ®[large‚©‚½‚Ù‚©‚ñ]: largeŒ^•âŠ®. (line 5) -* LaTeX: Intro. (line 5) -* leftarrow: Image completion. (line 5) -* lpr format: lpr format. (line 5) -* lprƒtƒH[ƒ}ƒbƒg‚Ì•ÏX[lpr‚Ó‚¨‚¨‚܂‚Ƃ̂ւñ‚±‚¤]: Editing %# notation. (line 20) -* lpr‚Ó‚§[‚Ü‚Á‚Æ[lpr‚Ó‚¨‚¨‚܂‚Æ]: lpr format. (line 5) -* lprƒtƒH[ƒ}ƒbƒg[lpr‚Ó‚¨‚¨‚܂‚Æ]: lpr format. (line 5) -* maketitleŒ^•âŠ®[maketitle‚©‚½‚Ù‚©‚ñ]: maketitleŒ^•âŠ®. (line 5) -* M-C-@: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* M-C-a: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* M-C-e: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. (line 8) -* min-out: Cooperation with other packages. (line 18) -* M-q: Filling. (line 48) -* Mule: Intro. (line 5) -* ŸŽè‚Éincludeonly[‚©‚‚ĂÉincludeonly]: Includeonly. (line 5) -* NTT-jTeX[‚¦‚Ê‚Ä‚¢‚¢‚Ä‚¢‚¢‚µ‚¦‚¢‚­]: Filling. (line 16) -* platex: Invocation. (line 5) -* prefix ,: Commenting out. (line 5) -* prefix .: Commenting out. (line 5) -* prefix <: Commenting out. (line 5) -* prefix >: Commenting out. (line 5) -* prefix /: Online help. (line 5) -* prefix ?: Online help. (line 5) -* prefix &: What column. (line 5) -* prefix a: Accent mark completion. (line 5) -* prefix b: beginŒ^•âŠ®. (line 5) -* prefix c: Modifying/Deleting. (line 5) -* prefix d: Inclusion hierarchy browser. (line 5) -* prefix e: end•âŠ®. (line 5) -* prefix g: Cursor jump. (line 5) -* prefix i: Filling. (line 9) -* prefix k: Modifying/Deleting. (line 5) -* prefix key: Invocation. (line 5) -* prefix l: largeŒ^•âŠ®. (line 5) -* prefix m: maketitleŒ^•âŠ®. (line 5) -* prefix s: sectionŒ^•âŠ®. (line 5) -* prefix SPC: Arbitrary completion. (line 5) -* prefix w: Changing mode of YaTeX. (line 5) -* prefixƒL[•ÏX[prefix‚«‚¢‚Ö‚ñ‚±‚¤]: Lisp variables. (line 5) -* ƒy[ƒWŠm”FÈ—ªlpr‹N“®[‚Ö‚¦‚µ‚©‚­‚É‚ñ‚µ‚悤‚è‚â‚­lpr‚«‚Æ‚¤]: Print out. (line 13) -* sectionŒ^•âŠ®[section‚©‚½‚Ù‚©‚ñ]: sectionŒ^•âŠ®. (line 5) -* •¡ŽG‚Ètabular[‚Ó‚­‚³‚‚Ètabular]: What column. (line 5) -* æ‰ñ‚èusepackage[‚³‚«‚Ü‚í‚è]: Usepackage cheker. (line 5) -* YaTeX-help-file: Online help. (line 17) -* YaTeX-help-file-private: Online help. (line 17) -* YaTeX-item-regexp: Filling. (line 21) -* YaTeX-math-sign-alist-private: Image completion. (line 61) -* yatex-mode-hook: Hook variables. (line 5) -* yatex-mode-load-hook: Hook variables. (line 5) -* YaTeX-nervous: Local dictionary. (line 23) -* .yatexrc: Local dictionary. (line 5) +* :: Greek letter completion. 4. +* ;: Image completion. 4. +* ƒ°[‚µ‚­‚Ü]: Image completion. 4. +* Š‡‚é[‚­‚­‚é]: Enclose section-type command. 4. +* Š‡‚é[‚­‚­‚é]: largeŒ^•âŠ®. 22. +* ˆø”[‚Ђ«‚·‚¤]: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh. 4. +* ‰¢•¶[‚¨‚¤‚Ó‚ñ]: Accent mark completion. 4. +* ;Ž©g[;‚µ‚µ‚ñ]: Image completion. 32. +* ‡[‚Þ‚¯‚ñ‚½‚¢]: Image completion. 4. +* –îˆó[‚₵‚邵]: Image completion. 4. +* ƒuƒƒbƒN[‚Ó‚ë‚‚­]: beginŒ^•âŠ®. 81. +* ƒqƒXƒgƒŠ[‚Ђ·‚Æ‚è]: Cooperation with other packages. 8. +* Œ…‘µ‚¦[‚¯‚½‚»‚낦]: Filling. 4. +* ‚â‚¿‚傤[‚â‚¿‚悤]: Intro. 4. +* ƒWƒƒƒ“ƒv[‚µ‚â‚ñ‚Ó]: view-sectioning. 42. +* &“ü—Í[&‚ɂ䂤‚è‚æ‚­]: Intelligent newline. 4. +* Ý’è—á[‚¹‚‚Ă¢‚ê‚¢]: Sample definitions. 4. +* Žž•âŠ®[‚·‚¢‚µ‚Ù‚©‚ñ]: Arbitrary completion. 4. +* •Â‚¶ž‚ß‚é[‚Æ‚µ‚±‚ß‚é]: beginŒ^•âŠ®. 81. +* Ä‹A•âŠ®[‚³‚¢‚«‚Ù‚©‚ñ]: Recursive completion. 4. +* ƒ†[ƒUŽ«‘[‚䂤‚³‚µ‚µ‚æ]: beginŒ^•âŠ®. 71. +* ˜_—ŠK‘w[‚ë‚ñ‚è‚©‚¢‚»‚¤]: view-sectioning. 42. +* ‚±‚±‚Í‚Ç‚±?[‚±‚±‚Í‚Æ‚±?]: What column. 4. +* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®[‚¨‚¦‚©‚«‚‚¤‚é‚«‚Æ‚¤]: ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®. 4. +* ŠÂ‹«‚Ì擪‚Ö[‚©‚ñ‚«‚悤‚Ì‚¹‚ñ‚Æ‚¤‚Ö]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* ŠÂ‹«‚Ì––”ö‚Ö[‚©‚ñ‚«‚悤‚̂܂‚ЂÖ]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* ŠÂ‹«‚ðƒ}[ƒN[‚©‚ñ‚«‚悤‚ð‚Ü‚ ‚­]: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* ƒJƒXƒ^ƒ}ƒCƒY[‚©‚·‚½‚Ü‚¢‚·]: Customizations. 4. +* ƒL[ƒAƒTƒCƒ“[‚«‚¢‚ ‚³‚¢‚ñ]: Customizations. 4. +* ”Ž®ƒ‚[ƒh[‚·‚¤‚µ‚«‚à‚¨‚Æ]: Image completion. 4. +* ƒCƒ“ƒXƒg[ƒ‹[‚¢‚ñ‚·‚Æ‚¨‚é]: Installation. 4. +* ƒ^ƒCƒvƒZƒbƒ^[‚½‚¢‚Ó‚¹‚‚½]: Invocation. 4. +* ƒvƒŒƒ”ƒ…[ƒA[‚Ó‚ê‚Ђ䂤‚ ]: Invocation. 4. +* ƒAƒEƒgƒ‰ƒCƒ“[‚ ‚¤‚Æ‚ç‚¢‚ñ]: view-sectioning. 4. +* ˆø”‚̌”‚ð•Ï‚¦‚é[‚Ђ«‚·‚¤‚Ì‚±‚·‚¤‚ð‚©‚¦‚é]: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh. 24. +* ƒAƒNƒZƒ“ƒg‹L†•âŠ®[‚ ‚­‚¹‚ñ‚Æ‚«‚±‚¤‚Ù‚©‚ñ]: Accent mark completion. 4. +* ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê——[‚©‚·‚½‚Ü‚¢‚·‚Ö‚ñ‚·‚¤‚¢‚¿‚ç‚ñ]: All customizable variables. 4. +* ŠÂ‹«–¼‚̕⊮[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ù‚©‚ñ]: beginŒ^•âŠ®. 4. +* ƒGƒ‰[C³[‚¦‚ç‚ ‚µ‚䂤‚¹‚¢]: Calling typesetter. 4. +* ƒ^ƒCƒvƒZƒbƒ^‹N“®[‚½‚¢‚Ó‚¹‚‚½‚«‚Æ‚¤]: Calling typesetter. 4. +* ƒ^ƒCƒvƒZƒbƒgƒGƒ‰[[‚½‚¢‚Ó‚¹‚‚Ƃ¦‚ç‚ ]: Calling typesetter. 4. +* ŠÂ‹«–¼‚Ì•ÏX[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ö‚ñ‚±‚¤]: Changing LaTeX command. 20. +* ƒ‚[ƒhØ‚è‘Ö‚¦[‚à‚¤‚Æ‚«‚è‚©‚¦]: Changing mode of YaTeX. 4. +* ƒ^ƒCƒvƒZƒbƒ^‚ÌŽg‚¢•ª‚¯[‚½‚¢‚Ó‚¹‚‚½‚̂‚©‚¢‚킯]: Changing typesetter. 12. +* ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚é[‚«‚Æ‚¤‚·‚邱‚Ü‚ñ‚Æ‚ð‚©‚¦‚é]: Changing typesetter. 7. +* ƒRƒƒ“ƒgƒAƒEƒg[‚±‚ß‚ñ‚Æ‚ ‚¤‚Æ]: Commenting out. 4. +* ‚»‚Ì‘¼‚̃Rƒ}ƒ“ƒh§Œä[‚»‚Ì‚½‚Ì‚±‚Ü‚ñ‚Æ‚¹‚¢‚«‚æ]: Controlling which command to invoke. 4. +* ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg[‚½‚͂‚¯‚¦‚µ‚Æ‚Ì‚ê‚ñ‚¯‚¢]: Cooperation with other packages. 4. +* ƒRƒ}ƒ“ƒhƒqƒXƒgƒŠ[‚±‚Ü‚ñ‚ƂЂ·‚Æ‚è]: Cooperation with other packages. 8. +* ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv[‚©‚ ‚»‚邵‚â‚ñ‚Ó]: Cursor jump. 4. +* %#‹L–@Ž©‘Ì‚Ì•ÒW[%#‚«‚Ù‚¤‚µ‚½‚¢‚Ì‚Ö‚ñ‚µ‚䂤]: Editing %# notation. 4. +* ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦[‚Í‚ç‚­‚ç‚Ó‚Ì‚¯‚½‚»‚낦]: Filling. 47. +* —̈挈’è‹K‘¥[‚è‚悤‚¢‚«‚¯‚‚Ă¢‚«‚»‚­]: Fix region for typesetting. 25. +* ’·‚¢ƒtƒ@ƒCƒ‹‚Ì•ÒW[‚È‚©‚¢‚Ó‚ ‚¢‚é‚Ì‚Ö‚ñ‚µ‚䂤]: Fix region for typesetting. 34. +* ŒÅ’è—̈æ‚̃^ƒCƒvƒZƒbƒg[‚±‚Ä‚¢‚è‚悤‚¢‚«‚Ì‚½‚¢‚Ó‚¹‚‚Æ]: Fix region for typesetting. 4. +* ƒMƒŠƒVƒƒ•¶Žš•âŠ®[‚«‚肵‚â‚à‚µ‚Ù‚©‚ñ]: Greek letter completion. 4. +* ƒCƒ[ƒW•âŠ®[‚¢‚ß‚¦‚µ‚Ù‚©‚ñ]: Image completion. 4. +* ”Ž®‹L†ƒCƒ[ƒW•âŠ®[‚·‚¤‚µ‚«‚«‚±‚¤‚¢‚ß‚¦‚µ‚Ù‚©‚ñ]: Image completion. 4. +* ‘¼‚̃tƒ@ƒCƒ‹‚ÌŽè’¼‚µ[‚Ù‚©‚Ì‚Ó‚ ‚¢‚é‚Ì‚Ä‚È‚¨‚µ]: Includeonly. 11. +* ƒCƒ“ƒNƒ‹[ƒh\‘¢[‚¢‚ñ‚­‚邤‚Æ‚±‚¤‚»‚¤]: Inclusion hierarchy browser. 4. +* ‚¨‚Ü‚©‚¹‰üs[‚¨‚Ü‚©‚¹‚©‚¢‚«‚悤]: Intelligent newline. 4. +* ƒvƒŠƒ“ƒgƒAƒEƒg[‚Ó‚è‚ñ‚Æ‚ ‚¤‚Æ]: Invocation. 4. +* ŠÂ‹«‚Ìíœ[‚©‚ñ‚«‚悤‚Ì‚³‚­‚µ‚æ]: Killing LaTeX command. 6. +* ƒ‰ƒxƒ‹Ž©“®¶¬[‚ç‚ւ邵‚Æ‚¤‚¹‚¢‚¹‚¢]: label-generation. 4. +* ƒtƒHƒ“ƒgŽw’èŽq[‚Ó‚¨‚ñ‚Æ‚µ‚Ä‚¢‚µ]: largeŒ^•âŠ®. 18. +* •¶ŽšƒTƒCƒYŽw’èŽq[‚à‚µ‚³‚¢‚·‚µ‚Ä‚¢‚µ]: largeŒ^•âŠ®. 18. +* ƒ[ƒJƒ‹Ž«‘[‚남‚©‚邵‚µ‚æ]: Local dictionary. 4. +* •ÏX/íœ[‚Ö‚ñ‚±‚¤/‚³‚­‚µ‚æ]: Modifying/Deleting. 4. +* ƒOƒ[ƒoƒ‹ƒwƒ‹ƒv[‚­‚남‚Í‚é‚Ö‚é‚Ó]: Online help. 16. +* ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv[‚¨‚ñ‚ç‚¢‚ñ‚Ö‚é‚Ó]: Online help. 4. +* ƒL[ƒ[ƒhŒŸõ[‚«‚¢‚í‚ ‚Æ‚¯‚ñ‚³‚­]: Online help. 4. +* ƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒv[‚Ó‚ç‚¢‚Ö‚¦‚Æ‚Ö‚é‚Ó]: Online help. 16. +* “ü—̓tƒ@ƒCƒ‹•ªŠ„[‚ɂ䂤‚è‚æ‚­‚Ó‚ ‚¢‚é‚Ó‚ñ‚©‚Â]: Splitting input files. 11. +* ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è‚¢‚¿‚ç‚ñ‚͂‚ӂ ]: view-sectioning. 18. +* ƒZƒNƒVƒ‡ƒ“‹æØ‚è[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è]: view-sectioning. 42. +* Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦[‚¯‚ñ‚³‚¢‚Ì‚©‚ç‚ނЂ悤‚µ]: What column. 23. +* apropos: Online help. 4. +* autoload: Installation. 4. +* auto-mode-alist: Installation. 4. +* %#BEGIN: Fix region for typesetting. 4. +* beginŒ^•âŠ®[begin‚©‚½‚Ù‚©‚ñ]: beginŒ^•âŠ®. 4. +* C-c: Invocation. 4. +* Demacs: Intro. 4. +* .emacs: Installation. 4. +* %#END: Fix region for typesetting. 4. +* end•âŠ®[end‚Ù‚©‚ñ]: end•âŠ®. 4. +* ghostview: Splitting input files. 16. +* gmhist: Cooperation with other packages. 8. +* hook•Ï”[hook‚Ö‚ñ‚·‚¤]: Hook variables. 4. +* o—ÍI—¹ƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚µ‚䂤‚è‚悤‚Ö‚¦‚µ]: Print out. 9. +* includeonly: Includeonly. 4. +* Install: Installation. 4. +* item‚È‚Ç‚ÌŒ…‘µ‚¦[item‚È‚Æ‚Ì‚¯‚½‚»‚낦]: Filling. 8. +* o—ÍŠJŽnƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚©‚¢‚µ‚Ö‚¦‚µ]: Print out. 9. +* jlatex: Invocation. 4. +* largeŒ^•âŠ®[large‚©‚½‚Ù‚©‚ñ]: largeŒ^•âŠ®. 4. +* LaTeX: Intro. 4. +* leftarrow: Image completion. 4. +* lpr format: lpr format. 4. +* lprƒtƒH[ƒ}ƒbƒg‚Ì•ÏX[lpr‚Ó‚¨‚¨‚܂‚Ƃ̂ւñ‚±‚¤]: Editing %# notation. 18. +* lpr‚Ó‚§[‚Ü‚Á‚Æ[lpr‚Ó‚¨‚¨‚܂‚Æ]: lpr format. 4. +* lprƒtƒH[ƒ}ƒbƒg[lpr‚Ó‚¨‚¨‚܂‚Æ]: lpr format. 4. +* maketitleŒ^•âŠ®[maketitle‚©‚½‚Ù‚©‚ñ]: maketitleŒ^•âŠ®. 4. +* M-C-@: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* M-C-a: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* M-C-e: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv. 7. +* min-out: Cooperation with other packages. 17. +* M-q: Filling. 47. +* Mule: Intro. 4. +* ŸŽè‚Éincludeonly[‚©‚‚ĂÉincludeonly]: Includeonly. 4. +* NTT-jTeX[‚¦‚Ê‚Ä‚¢‚¢‚Ä‚¢‚¢‚µ‚¦‚¢‚­]: Filling. 15. +* platex: Invocation. 4. +* prefix ,: Commenting out. 4. +* prefix .: Commenting out. 4. +* prefix <: Commenting out. 4. +* prefix >: Commenting out. 4. +* prefix /: Online help. 4. +* prefix ?: Online help. 4. +* prefix &: What column. 4. +* prefix a: Accent mark completion. 4. +* prefix b: beginŒ^•âŠ®. 4. +* prefix c: Modifying/Deleting. 4. +* prefix d: Inclusion hierarchy browser. 4. +* prefix e: end•âŠ®. 4. +* prefix g: Cursor jump. 4. +* prefix i: Filling. 8. +* prefix k: Modifying/Deleting. 4. +* prefix key: Invocation. 4. +* prefix l: largeŒ^•âŠ®. 4. +* prefix m: maketitleŒ^•âŠ®. 4. +* prefix s: sectionŒ^•âŠ®. 4. +* prefix SPC: Arbitrary completion. 4. +* prefix w: Changing mode of YaTeX. 4. +* prefixƒL[•ÏX[prefix‚«‚¢‚Ö‚ñ‚±‚¤]: Lisp variables. 4. +* ƒy[ƒWŠm”FÈ—ªlpr‹N“®[‚Ö‚¦‚µ‚©‚­‚É‚ñ‚µ‚悤‚è‚â‚­lpr‚«‚Æ‚¤]: Print out. 12. +* sectionŒ^•âŠ®[section‚©‚½‚Ù‚©‚ñ]: sectionŒ^•âŠ®. 4. +* •¡ŽG‚Ètabular[‚Ó‚­‚³‚‚Ètabular]: What column. 4. +* æ‰ñ‚èusepackage[‚³‚«‚Ü‚í‚è]: Usepackage cheker. 4. +* YaTeX-help-file: Online help. 16. +* YaTeX-help-file-private: Online help. 16. +* YaTeX-item-regexp: Filling. 20. +* YaTeX-math-sign-alist-private: Image completion. 57. +* yatex-mode-hook: Hook variables. 4. +* yatex-mode-load-hook: Hook variables. 4. +* YaTeX-nervous: Local dictionary. 22. +* .yatexrc: Local dictionary. 4. + + +  Tag table: Node: Top149 Node: Intro1203 Node: Terminology1506 -Node: Main features2146 -Node: Installation3207 -Node: Invocation4431 -Node: Calling typesetter5252 -Node: Calling previewer6489 -Node: Print out6805 -Node: %#notation7071 -Node: Changing typesetter7445 -Node: Splitting input files7703 -Node: Fix region for typesetting8664 -Node: lpr format9572 -Node: Controlling which command to invoke10382 -Node: Editing %# notation10777 -Node: Completion11235 -Node: beginŒ^•âŠ®11625 -Node: sectionŒ^•âŠ®14208 -Node: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh15301 -Node: Enclose section-type command16114 -Node: Recursive completion16351 -Node: view-sectioning16656 -Node: label-generation17852 -Node: largeŒ^•âŠ®18202 -Node: maketitleŒ^•âŠ®18781 -Node: Arbitrary completion19080 -Node: end•âŠ®19393 -Node: Accent mark completion19734 -Node: Image completion20159 -Node: Greek letter completion21973 -Node: Local dictionary22433 -Node: Commenting out23037 -Node: Cursor jump24197 -Node: ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv24414 -Node: ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®25400 -Node: ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv26315 -Node: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv26651 -Node: ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv27008 -Node: Modifying/Deleting27245 -Node: Changing LaTeX command27651 -Node: Killing LaTeX command28201 -Node: Filling29073 -Node: Includeonly30403 -Node: What column30964 -Node: Intelligent newline31743 -Node: Usepackage cheker32775 -Node: Changing mode of YaTeX33202 -Node: Online help33777 -Node: Inclusion hierarchy browser34754 -Node: Cooperation with other packages36032 -Node: Customizations36487 -Node: Lisp variables36784 -Node: All customizable variables37390 -Node: Sample definitions44712 -Node: Hook variables45146 -Node: Hook file46040 -Node: Add-in functions46246 -Node: Etc46473 -Node: Copying46758 -Node: Concept Index47382 +Node: Main features2141 +Node: Installation3174 +Node: Invocation4392 +Node: Calling typesetter5211 +Node: Calling previewer6448 +Node: Print out6764 +Node: %#notation7030 +Node: Changing typesetter7458 +Node: Splitting input files7716 +Node: Fix region for typesetting8668 +Node: lpr format9569 +Node: Controlling which command to invoke10378 +Node: Editing %# notation10779 +Node: Completion11236 +Node: beginŒ^•âŠ®11709 +Node: sectionŒ^•âŠ®14293 +Node: 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh15388 +Node: Enclose section-type command16206 +Node: Recursive completion16443 +Node: view-sectioning16749 +Node: label-generation17945 +Node: largeŒ^•âŠ®18294 +Node: maketitleŒ^•âŠ®18874 +Node: Arbitrary completion19173 +Node: end•âŠ®19486 +Node: Accent mark completion19828 +Node: Image completion20253 +Node: Greek letter completion22070 +Node: Local dictionary22530 +Node: Commenting out23135 +Node: Cursor jump24294 +Node: ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv24531 +Node: ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®25519 +Node: ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv26439 +Node: ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv26775 +Node: ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv27132 +Node: Modifying/Deleting27369 +Node: Changing LaTeX command27775 +Node: Killing LaTeX command28326 +Node: Filling29197 +Node: Includeonly30526 +Node: What column31087 +Node: Intelligent newline31866 +Node: Usepackage cheker32899 +Node: Changing mode of YaTeX33325 +Node: Online help33901 +Node: Inclusion hierarchy browser34877 +Node: Cooperation with other packages36155 +Node: Customizations36610 +Node: Lisp variables36907 +Node: All customizable variables37514 +Node: Sample definitions44815 +Node: Hook variables45249 +Node: Hook file46143 +Node: Add-in functions46349 +Node: Etc46576 +Node: Copying46860 +Node: Concept Index47491  End tag table diff -r 1b4e0acd0106 -r d467c0fb6083 docs/yatexj.tex --- a/docs/yatexj.tex Thu May 10 11:10:13 2012 +0900 +++ b/docs/yatexj.tex Thu May 10 11:40:02 2012 +0900 @@ -1,2256 +1,2256 @@ -\def\lang{jp} % -*- texinfo -*- for Texinfo V.3.1 -\input texinfo -@setfilename yatexj -@settitle Yet Another tex-mode for Emacs - -@iftex -@c @syncodeindex fn cp -@c ‚¢‚‚à–Y‚ê‚é‚Ì‚Å‚±‚±‚É‘‚¢‚Æ‚­‚©B -@c C-l C-c n ‚Ńm[ƒh“ü‚ê -@c ƒm[ƒh‚¢‚¶‚Á‚½‚ç C-l C-u C-n ‘S•”‚̃m[ƒhXV C-l C-u C-e -@c ƒƒjƒ…[‘‚₵‚½‚ç C-l C-u C-m ‘S•”‚̃ƒjƒ…[XV C-l C-u C-a -@c ƒtƒH[ƒ}ƒbƒg‚·‚é‚Æ‚«‚Í C-l C-e C-b -@c Last modified Sun Apr 15 22:53:14 2012 on firestorm -@syncodeindex vr cp -@end iftex - -@titlepage -@sp 10 -@center -@subtitle Yet Another tex-mode for emacs -@title w–ì’¹x -@subtitle // YaTeX // -@author @copyright{} 1991-2004 by HIROSE, Yuuji [yuuji@@yatex.org] -@end titlepage - -@node Top, Intro, (dir), (dir) -@comment node-name, next, previous, up - -@menu -* Intro:: ‚Í‚¶‚ß‚É -* Terminology:: ƒ}ƒjƒ…ƒAƒ‹ŽQÆã‚Ì’ˆÓ -* Main features:: Žå‚È‹@”\ -* Installation:: ƒCƒ“ƒXƒg[ƒ‹ -* Invocation:: ƒvƒƒZƒX‹N“® -* %#notation :: %#‹L–@ -* Completion:: •âŠ®“ü—Í -* Local dictionary:: ƒ[ƒJƒ‹Ž«‘ -* Commenting out:: ƒRƒƒ“ƒgƒAƒEƒg -* Cursor jump:: ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv -* Modifying/Deleting:: LaTeXƒRƒ}ƒ“ƒh‚Ì•ÏX/íœ -* Filling:: Œ…‘µ‚¦ -* Includeonly:: ŸŽè‚É includeonly -* What column:: ƒJƒ‰ƒ€ˆÊ’uƒKƒCƒh -* Intelligent newline:: ‚¨‚Ü‚©‚¹‰üs -* Usepackage cheker:: æ‰ñ‚èusepackage -* Changing mode of YaTeX:: –ì’¹“®ìƒ‚[ƒh•ÏX -* Online help:: LaTeXƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv -* Inclusion hierarchy browser:: ƒtƒ@ƒCƒ‹•ªŠ„ŠK‘w\‘¢‚Ì•\Ž¦ -* Cooperation with other packages:: ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg -* Customizations:: ƒJƒXƒ^ƒ}ƒCƒY -* Etc:: ‚»‚Ì‘¼ -* Copying:: Žæ‚舵‚¢ -* Concept Index:: õˆø - -@end menu - -@node Intro, Terminology, Top, Top -@comment node-name, next, previous, up -@chapter ‚Í‚¶‚ß‚É -@cindex Demacs -@cindex Mule -@cindex LaTeX -@cindex ‚â‚¿‚傤[‚â‚¿‚悤] - - –ì’¹‚ÍAGNU Emacs ‚Å La@TeX{} —p‚Ì•¶‘‚ð쬂·‚鎞‚É pLa@TeX{} ‚È‚Ç‚Ì -ƒ^ƒCƒvƒZƒbƒgƒRƒ}ƒ“ƒh‚âAƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ð Emacs •ÒW‰æ–Ê’†‚©‚ç -s‚¦‚é‚悤‚É‚·‚é‚Æ‹¤‚ÉAŠg’£«‚Ì‚‚¢ŽíX‚̕⊮‹@”\‚É‚æ‚èƒ\[ƒXƒeƒL -ƒXƒg‚Ì•ÒW‚ðŽx‰‡‚µ‚Ü‚·B‚³‚ç‚É La@TeX{} ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv‚É -‚æ‚èƒ}ƒjƒ…ƒAƒ‹‚𒲂ׂéŽèŠÔ‚ðŒyŒ¸‚µ‚Ü‚·B - - English manual @xref{Top, , , yatexe,YaTeX English info}. - -@node Terminology, Main features, Intro, Top -@comment node-name, next, previous, up -@chapter –{ƒ}ƒjƒ…ƒAƒ‹ŽQÆã‚Ì’ˆÓ - - –{ƒ}ƒjƒ…ƒAƒ‹‚ł͈ȉº‚Ì•\‹L‚ð—p‚¢‚Ü‚·B - -@itemize @bullet -@item -beginŒ^ƒRƒ}ƒ“ƒh - -@code{\begin@{ŠÂ‹«@} ` \end@{ŠÂ‹«@}}‚Æ‚¢‚¤Œ`Ž®‚ÌLaTeXƒRƒ}ƒ“ƒh‚ðŽw‚µ‚Ü‚·B -beginŒ^ƒRƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚·‚邱‚Æ‚ðbeginŒ^•âŠ®‚ƌĂт܂·B - -@item -sectionŒ^ƒRƒ}ƒ“ƒh - -@code{\section@{ƒ^ƒCƒgƒ‹@}}‚â@code{\mbox@{“à—e@}}‚̂悤‚É -ˆø”‚ðŽæ‚éLaTeXƒRƒ}ƒ“ƒh‚ðŽw‚µ‚Ü‚·B - -@item -maketitleŒ^ƒRƒ}ƒ“ƒh - -@code{\maketitle}‚â@code{\tableofcontents}‚̂悤‚Ɉø”‚ðŽæ‚ç‚È‚¢LaTeXƒRƒ} -ƒ“ƒh‚ðŽw‚µ‚Ü‚·B - -@item -largeŒ^ƒRƒ}ƒ“ƒh - -@code{@{\large ...@}} ‚â @code{@{\tt ...@}} ‚̂悤‚ȃtƒHƒ“ƒg/ƒTƒCƒYŽw’èŽq -‚ðŽw‚µ‚Ü‚·B - -@item @kbd{[prefix]} - -–ì’¹‚Ì‹@”\‚ðŒÄ‚Ño‚·‚½‚߂̃vƒŠƒtƒBƒNƒXƒL[BƒfƒtƒHƒ‹ƒg‚Å‚Í@kbd{C-c}‚ÉŠ„‚è -“–‚Ä‚ç‚ê‚Ä‚¢‚é‚Ì‚ÅA“Á‚É•ÏX‚µ‚Ä‚¢‚È‚¢ê‡–{ƒ}ƒjƒ…ƒAƒ‹‚Ì @kbd{[prefix]} ‚Æ -‚¢‚¤•\‹L‚ÍA@kbd{C-c} ‚Æ“Ç‚ÝŠ·‚¦‚Ä‚­‚¾‚³‚¢B -@end itemize - -@node Main features, Installation, Terminology, Top -@comment node-name, next, previous, up -@chapter Žå‚È‹@”\ - -@itemize @bullet -@item ƒ^ƒCƒvƒZƒbƒ^‚âƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì•ÒW‰æ–Ê‚©‚ç‚Ì‹N“®(@kbd{C-c t}) -@item ƒJ[ƒ\ƒ‹ˆÊ’u‚É‚æ‚ç‚È‚¢ŒÅ’胊ƒWƒ‡ƒ“‚Ì•”•ªƒ^ƒCƒvƒZƒbƒg -@item \includeonly‚̃ƒ“ƒ^ƒbƒ`XV -@item ƒGƒ‰[‰ÓŠ‚Ö‚ÌŽ©“®ƒWƒƒƒ“ƒv(@kbd{C-c '}) -@item @code{\begin@{@}, \end@{@}, \section...} ‚È‚Ç‚Ì La@TeX{} -ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í -(@kbd{C-c b}, @kbd{C-c s}, @kbd{C-c l}, @kbd{C-c m}) -@item Šù‚É“ü—Í‚µ‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚âƒRƒ}ƒ“ƒhˆø”‚Ì’†‚ÉŽæ‚èž‚ÞŠ‡‚è•âŠ® -(@kbd{C-u} +’Êí•âŠ®ƒL[) -@item ƒZƒNƒVƒ‡ƒ“‹æØ‚è“ü—ÍŽž‚Ì•¶‘\‘¢ƒAƒEƒgƒ‰ƒCƒ“•\Ž¦ -@item ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚̈ꊇƒVƒtƒg (@ref{view-sectioning}) -@item •âŠ®Ž«‘‚ÌŠwK -@item La@TeX{} ‚̊‹«‚âƒRƒ}ƒ“ƒh‚ɉž‚¶‚½ƒKƒCƒh•t‚«ˆø”“ü—Í -@item –ì’¹‚É‚È‚¢ƒKƒCƒh•t‚«ˆø”“ü—ÍŠÖ”‚ÌŽ©“®¶¬(@file{yatexgen.el}) -@item La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ/•ÏX(@kbd{C-c k}, @kbd{C-c c}) -@item ƒtƒ@ƒCƒ‹ŠÔA@code{\begin}<->@code{\end}ŠÔA - @code{\ref}<->@code{\label}ŠÔA - @code{\cite}<->@code{\bibitem}ƒWƒƒƒ“ƒv(@kbd{C-c g}) -@item ˆêŠ‡ƒRƒƒ“ƒgƒAƒEƒg/ƒAƒ“ƒRƒƒ“ƒgƒAƒEƒg - (@kbd{C-c >}, @kbd{C-c <}, @kbd{C-c ,}, @kbd{C-c .}) -@item ƒAƒNƒZƒ“ƒg‹L†/”Ž®ŠÂ‹«—pƒRƒ}ƒ“ƒh/ƒMƒŠƒVƒƒ•¶Žš‚Ì“ü—ÍŽx‰‡ - (@kbd{C-c a}, @kbd{;}, @kbd{/}) -@item tabular/arrayŠÂ‹«‚̃Jƒ‰ƒ€ˆÊ’uƒKƒCƒh -@item •W€“I La@TeX{} ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv(@kbd{C-c ?}, @kbd{C-c /}) -@item ƒhƒLƒ…ƒƒ“ƒg‚̃Cƒ“ƒNƒ‹[ƒh\‘¢‚ÌŽ‹Šo“I•\Ž¦‚ƃoƒbƒtƒ@Ø‚è‘Ö‚¦ -(@kbd{C-c d}) -@item •âŠ®“ü—Í‚µ‚½ƒ}ƒNƒ‚ɉž‚¶‚Ä•K—v‚È \userpackage ‚ð“ü‚ê‚Ä‚­‚ê‚éæ‰ñ‚è -userpackage -@item \label‚ð‘ł‚±‚Æ‚Í‚à‚¤–Y‚ê‚悤! ref‚âcite•âŠ®“ü—Í‚ÅŽ©“®¶¬‚µ‚Ü‚· -@end itemize - -@node Installation, Invocation, Main features, Top -@comment node-name, next, previous, up -@chapter ‹N“®–@ -@cindex Install -@cindex ƒCƒ“ƒXƒg[ƒ‹[‚¢‚ñ‚·‚Æ‚¨‚é] -@cindex .emacs -@cindex auto-mode-alist -@cindex autoload -@section –ì’¹‹N“®‚Ì‚½‚ß‚ÌÝ’è - - ~/.emacs‚ɉº‚Ì2€–Ú‚ð‰Á‚¦‚Ü‚·B - -@lisp -(setq auto-mode-alist - (cons (cons "\\.tex$" 'yatex-mode) auto-mode-alist)) -(autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) -@end lisp - -ŽŸ‚É–ì’¹‚Ì emacs-lisp ƒtƒ@ƒCƒ‹ŒQ‚ð’u‚­ƒfƒBƒŒƒNƒgƒŠ‚ð load-path ‚ɉÁ‚¦‚Ü‚·B -‚½‚Æ‚¦‚ÎA @file{~/src/emacs/yatex}‚É’u‚­‚Ì‚Å‚ ‚ê‚ÎA - -@lisp -(setq load-path (cons (expand-file-name "~/src/emacs/yatex") load-path)) -@end lisp - -@noindent -‚È‚Ç‚Æ‚µ‚Ü‚·B - - ˆÈã‚ÌÝ’è‚É‚æ‚èAŠg’£Žq‚ª .tex ‚Å‚ ‚éƒtƒ@ƒCƒ‹‚ð•ÒW‚·‚é‚ÆŽ©“®“I‚É–ì’¹‚ª -ƒ[ƒh‚³‚ê‚Ü‚·B–ì’¹‚ª³í‚É‹N“®‚Å‚«‚½‚Æ‚«‚̓‚[ƒhƒ‰ƒCƒ“‚Ì•\Ž¦‚ªu‚â‚Ä‚Óv -‚É•Ï‚í‚è‚Ü‚·B - -@section ƒ^ƒCƒvƒZƒbƒ^/ƒvƒŒƒ”ƒ…[ƒAŠÂ‹«‚ÌÝ’è - - —˜—p‚·‚éŠO•”ƒvƒƒOƒ‰ƒ€‚ÉŠÖ‚·‚éˆÈ‰º‚Ì•Ï”‚ðŠm”F‚µA•K—v‚Ȃ糂µ‚¢’l‚É•ÏX -‚µ‚Ü‚·B -@table @code -@item tex-command - @dots{} ‹N“®‚·‚éƒ^ƒCƒvƒZƒbƒ^‚̃Rƒ}ƒ“ƒh–¼ -@item dvi2-command - @dots{} ‹N“®‚·‚éƒvƒŒƒ”ƒ…[ƒA‚̃Rƒ}ƒ“ƒh–¼ -@item NTT-jTeX - @dots{} ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü - ‚¤‚Ì‚ð—}§‚·‚éꇂÉt‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì“I‚É‚ÍA - fill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É%‚ð•t‰Á‚·‚é‚悤‚É‚È‚éB -@item YaTeX-kanji-code - @dots{} •¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒh -@item dviprint-command-format - @dots{} ƒtƒ@ƒCƒ‹‚̈óü‚ÉŽg‚í‚ê‚éƒRƒ}ƒ“ƒh—ñ‚Ì‘Ž® -@item makeindex-command - @dots{} makeindexƒRƒ}ƒ“ƒh -@end table - -‚±‚ê‚ç‚ð•ÏX‚·‚éꇂÍA‚â‚Í‚è@file{~/.emacs}‚É‚ÄA‚½‚Æ‚¦‚Î -@lisp -(setq tex-command "pdflatex") -@end lisp -‚̂悤‚É‚µ‚Ä‚­‚¾‚³‚¢B‚ǂ̂悤‚È’l‚ðƒZƒbƒg‚·‚ê‚Ηǂ¢‚©‚ɂ‚¢‚Ä‚ÍA -@ref{All customizable variables}‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B - - -@node Invocation, %#notation , Installation, Top -@comment node-name, next, previous, up -@chapter latexƒRƒ}ƒ“ƒh‹N“® -@cindex prefix key -@cindex C-c -@cindex ƒ^ƒCƒvƒZƒbƒ^[‚½‚¢‚Ó‚¹‚‚½] -@cindex ƒvƒŒƒ”ƒ…[ƒA[‚Ó‚ê‚Ђ䂤‚ ] -@cindex jlatex -@cindex platex -@cindex ƒvƒŠƒ“ƒgƒAƒEƒg[‚Ó‚è‚ñ‚Æ‚ ‚¤‚Æ] - -LaTeXƒ\[ƒX‚Ì•ÒW’†AŽŸ‚̃L[“ü—Í‚É‚æ‚èAplatex ‚Ȃǂ̃^ƒCƒvƒZƒbƒgƒvƒƒOƒ‰ -ƒ€(ˆÈŒãƒ^ƒCƒvƒZƒbƒ^‚ƌĂÔ)AƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B - -@table @kbd -@item [prefix] t j - @dots{} ƒ^ƒCƒvƒZƒbƒ^(platex)‹N“® -@item [prefix] t r - @dots{} ƒ^ƒCƒvƒZƒbƒ^‹N“®(—̈æŽw’è) -@item [prefix] t e - @dots{} ƒ^ƒCƒvƒZƒbƒ^‹N“® - (ƒ|ƒCƒ“ƒgˆÊ’u‚̊‹«‚Ü‚½‚Í”Ž®ƒ‚[ƒh‚Ì‚Ý‘ÎÛ) -@item [prefix] t k - @dots{} “®ì’†‚̃^ƒCƒvƒZƒbƒ^‚Ì’âŽ~ -@item [prefix] t b - @dots{} jbibtex‹N“® -@item [prefix] t i - @dots{} makeindex‹N“® -@item [prefix] t d - @dots{} ƒ^ƒCƒvƒZƒbƒgŠ®—¹Œãdvipdfmx‹N“® -@item [prefix] t p - @dots{} ƒvƒŒƒ”ƒ…[ƒA‹N“® -@item [prefix] t l - @dots{} lpr(ƒvƒŠƒ“ƒgƒAƒEƒg—p)ƒRƒ}ƒ“ƒh‹N“® -@item [prefix] t s - @dots{} xdvi -remote ‚ł̃T[ƒ` -@end table - -@menu -* Calling typesetter:: ƒ^ƒCƒvƒZƒbƒ^‹N“® -* Calling previewer:: ƒvƒŒƒ”ƒ…[ƒA‹N“® -* Print out:: ƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh‚Ì‹N“® -@end menu - -@node Calling typesetter, Calling previewer, Invocation, Invocation -@comment node-name, next, previous, up -@section ƒ^ƒCƒvƒZƒbƒ^‹N“® -@cindex ƒ^ƒCƒvƒZƒbƒ^‹N“®[‚½‚¢‚Ó‚¹‚‚½‚«‚Æ‚¤] -@cindex ƒ^ƒCƒvƒZƒbƒgƒGƒ‰[[‚½‚¢‚Ó‚¹‚‚Ƃ¦‚ç‚ ] -@cindex ƒGƒ‰[C³[‚¦‚ç‚ ‚µ‚䂤‚¹‚¢] - - ƒ^ƒCƒvƒZƒbƒ^‚ð‹N“®‚·‚é‚ÆA•ÒWƒEƒBƒ“ƒhƒE‚ª2‚‚ɕªŠ„‚³‚êA•Ð•û‚̃EƒBƒ“ƒh -ƒE‚Ƀ^ƒCƒvƒZƒbƒg‰æ–Ê‚ª•\Ž¦‚³‚ê‚Ü‚·Bo—Í‚³‚ê‚郃bƒZ[ƒW‚ƘA“®‚µƒ^ƒCƒvƒZƒb -ƒgƒoƒbƒtƒ@‚ÍŽ©“®“I‚ɃXƒNƒ[ƒ‹‚µ‚Ü‚·B‚à‚µA“r’†‚ŃGƒ‰[‚ª‹N‚±‚Á‚ÄŽ~‚Ü‚Á‚Ä -‚µ‚Ü‚Á‚½ê‡‚ɂ̓^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ɈڂèA(@kbd{C-x o}) ƒ^ƒCƒvƒZƒbƒ^‚Ìo -‚µ‚Ä‚¢‚é ? ƒvƒƒ“ƒvƒg‚ɑ΂µ‚ÄA@kbd{x} (ˆ—‚Ì’†’f)‚È‚Ç‚ÌŽwŽ¦‚𑗂邱‚Æ‚ª -‚Å‚«‚Ü‚·BƒGƒ‰[‚ðC³‚·‚éꇂÍA - -@table @kbd -@item [prefix] ' -@itemx (prefix+ƒAƒ|ƒXƒgƒƒtƒB) - @dots{} ’¼‘O‚̃Gƒ‰[”­¶s‚ÖƒWƒƒƒ“ƒv -@end table - -‚ð“ü—Í‚·‚邱‚Æ‚É‚æ‚èAƒ^ƒCƒvƒZƒbƒ^‚ªƒGƒ‰[‚ð”­¶‚µ‚½s‚Ɉڂ邱‚Æ‚ª‚Å‚«‚Ü‚·B -‚Ü‚½Aƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚é overfull hbox ‚Ȃǂ̃EƒH[ƒjƒ“ƒOs‚É‚à‘Ήž‚µ -‚Ä‚¢‚Ü‚·‚Ì‚ÅA‡ŽŸ @kbd{[prefix] '} ‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAˆê‚‘O‚̃EƒH[ƒjƒ“ƒO -”­¶s‚ɃWƒƒƒ“ƒv‚µ‚Ä‚¢‚«‚Ü‚·B - - ‚à‚µA‹C‚É‚È‚éƒGƒ‰[s‚ª‚ ‚Á‚½ê‡‚ÍAƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ÅAƒG -ƒ‰[‚Ì•\Ž¦‚³‚ê‚Ä‚¢‚és‚ɃJ[ƒ\ƒ‹‚ð‡‚킹ƒXƒy[ƒXƒL[‚ð‰Ÿ‚·‚Æ La@TeX{} -ƒ\[ƒX‚̑Ήž‚·‚és‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B - -@subsection —̈æƒ^ƒCƒvƒZƒbƒg - - ƒ|ƒCƒ“ƒg‚ƃ}[ƒN‚ÌŠÔA‚ ‚é‚¢‚̓eƒLƒXƒg’†‚É–„‚ßž‚ñ‚¾ @code{%#BEGIN} ‚Æ -@code{%#END}‚̊Ԃ̗̈æ(@ref{%#notation})‚¾‚¯‚ðØ‚èŽæ‚Á‚ă^ƒCƒvƒZƒbƒg‚·‚邱‚Æ‚ª -‚Å‚«‚Ü‚·B‚±‚ÌꇃƒCƒ“ƒtƒ@ƒCƒ‹‚̃vƒŠƒAƒ“ƒuƒ‹‚ªˆêŽžƒtƒ@ƒCƒ‹‚Ì -ƒvƒŠƒAƒ“ƒuƒ‹‚Æ‚µ‚ÄŽg‚í‚ê‚Ü‚·B‚µ‚½‚ª‚Á‚ăvƒŠƒAƒ“ƒuƒ‹‚É‚È‚¢ƒ}ƒNƒ’è‹`‚ª -—̈æ“à‚É‚ ‚é‚ƃGƒ‰[‚É‚È‚è‚Ü‚·B—̈æƒ^ƒCƒvƒZƒbƒg‚ðŽg‚¤ê‡A -•K‚¸ƒ}ƒNƒ’è‹`‚̓vƒŠƒAƒ“ƒuƒ‹(@code{\begin@{document@}}‚æ‚è‘O)‚É’u‚­‚悤 -‚É‚µ‚ĉº‚³‚¢BˆêŽžƒtƒ@ƒCƒ‹‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚Ì‚ ‚é -ƒfƒBƒŒƒNƒgƒŠ‚Ì@file{texput.tex}‚Æ‚¢‚¤–¼‘O‚Åo—Í‚³‚ê‚é‚Ì‚ÅA -ã‘‚«‚É‚Í’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B - -@subsection ŠÂ‹«ƒ^ƒCƒvƒZƒbƒg - - @kbd{[prefix] te} ‚ð‰Ÿ‚·‚ÆAƒ|ƒCƒ“ƒgˆÊ’u‚ÌÅ‚à“à‘¤‚̊‹«A‚Ü‚½‚Í”Ž®ƒ‚[ -ƒh“à‚Ìꇂ͂»‚Ì”Ž®ƒ‚[ƒh‘S‘Ì‚ªŽ©“®“I‚ɗ̈æ‘I‘ð‚³‚ê‚ÄA—̈æƒ^ƒCƒvƒZƒbƒg‚ð -ŒÄ‚Ño‚µ‚Ü‚·BtabularŠÂ‹«‚┎®ƒ‚[ƒh‚Å•¡ŽG‚È‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇂ͊m‚©‚ß‚½ -‚¢•”•ª‚¾‚¯‚ðŠm”F‚Å‚«‚é‚Ì‚Å•Ö—˜‚Å‚·B‚±‚ê‚à @file{texput.tex} ‚ÉŠY“–•”•ª‚ð -‘‚«o‚µ‚Ü‚·BƒvƒŒƒ”ƒ…[ƒA‚Å @file{texput.dvi} ‚ðŠJ‚¢‚½‚Ü‚Ü‚É‚µ‚Ä‚¨‚¯‚Î -C³‚ÆŠm”F‚ª‘f‘‚­‚Å‚«‚é‚Å‚µ‚傤B - -@node Calling previewer, Print out, Calling typesetter, Invocation -@comment node-name, next, previous, up -@section ƒvƒŒƒ”ƒ…[ƒA‹N“® - @kbd{[prefix] t p} ‚É‚æ‚èƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B‚³‚ç‚ÉA‚à‚µ‚ ‚È -‚½‚ªA-remote ‹@”\‚‚«‚Ìxdvi‚ð—˜—p‚µ‚Ä‚¢‚éê‡‚Í @kbd{[prefix] t s} ‚ð‰Ÿ‚· -‚±‚Æ‚É‚æ‚èƒJ[ƒ\ƒ‹ˆÊ’u‚Ì•¶Žš—ñ‚ðŒŸõ‚µ‚Ä‚»‚̃y[ƒW‚ð•\Ž¦‚·‚é‚悤‚É‚·‚Å‚É‹N -“®’†‚Ìxdvi‚É–½—ß‚ð‘—‚è‚Ü‚·B‚±‚ê‚É‚æ‚èAŒ»Ý•ÒW’†‚̉ӊ‚̃^ƒCƒvƒZƒbƒgŒ‹‰Ê -‚ð‘¦À‚ÉŒ©‚邱‚Æ‚ª‚Å‚«‚Ü‚·B - -@c ‚È‚¨A-remote ‹@”\•t‚«‚Ì xdvi ‚Í -@c @code{ftp://ftp.ae.keio.ac.jp/pub/text/xdvi/xdvi-remote} -@c ‚È‚Ç‚©‚ç“üŽè‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B - -@node Print out, , Calling previewer, Invocation -@comment node-name, next, previous, up -@section ƒvƒŠƒ“ƒgƒAƒEƒg - - @kbd{[prefix] t l}‚ð‰Ÿ‚µ‚ăvƒŠƒ“ƒgƒAƒEƒg‚ðŽwŽ¦‚·‚é‚ÆAo—ÍŠJŽn/I—¹ƒy[ -ƒW‚ð•·‚¢‚Ä‚­‚é‚Ì‚ÅA‚»‚ꂼ‚ê‚É“š‚¦‚Ü‚·B‚±‚ê‚ðÈ—ª‚µ‚½‚¢Žž‚ÍA -universal-argument ‚ð‚‚¯A - -@cindex o—ÍŠJŽnƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚©‚¢‚µ‚Ö‚¦‚µ] -@cindex o—ÍI—¹ƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚µ‚䂤‚è‚悤‚Ö‚¦‚µ] - -@table @kbd -@item C-u [prefix] t l - @dots{} ƒy[ƒWŠm”FÈ—ªlpr‹N“® -@end table -@cindex ƒy[ƒWŠm”FÈ—ªlpr‹N“®[‚Ö‚¦‚µ‚©‚­‚É‚ñ‚µ‚悤‚è‚â‚­lpr‚«‚Æ‚¤] - -@noindent -‚̂悤‚É‹N“®‚µ‚Ä‚­‚¾‚³‚¢B - -@node %#notation , Completion, Invocation, Top -@comment node-name, next, previous, up -@chapter %#‹L–@ - - –{•¶’†‚É@code{%#}‚Å‚Í‚¶‚Ü‚éƒL[ƒ[ƒh‚ð–„‚ßž‚Þ‚±‚ƂŃ^ƒCƒvƒZƒbƒ^‹N“®“™ -‚̧Œä‚ð‚·‚é‚±‚Æ‚ª‚Å‚«‚Ü‚·B - -@menu -* Changing typesetter:: ƒ^ƒCƒvƒZƒbƒg—pƒRƒ}ƒ“ƒh‚Ì•ÏX -* Splitting input files:: “ü—̓tƒ@ƒCƒ‹•ªŠ„ -* Fix region for typesetting:: —̈æ‚̌Œè -* lpr format:: ƒvƒŠƒ“ƒgƒAƒEƒgƒRƒ}ƒ“ƒh—pƒtƒH[ƒ}ƒbƒg -* Controlling which command to invoke:: ‚»‚Ì‘¼‚Ì‹N“®ƒRƒ}ƒ“ƒh§Œä -* Editing %# notation:: %#‹L–@‚Ì•ÒW -@end menu - -@node Changing typesetter, Splitting input files, %#notation , %#notation -@comment node-name, next, previous, up -@section ƒ^ƒCƒvƒZƒbƒg—pƒRƒ}ƒ“ƒh•ÏX - - ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚½‚¢Žž‚Í–{•¶’†‚ÉŽŸ‚̂悤‚Ès‚ð‘‚«‚Ü‚·B - -@cindex ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚é[‚«‚Æ‚¤‚·‚邱‚Ü‚ñ‚Æ‚ð‚©‚¦‚é] - -@example - %#!jlatex-ntt -@end example - -NTT jTeX ‚ÆAASCII jTeX ‚ðŽg‚¢•ª‚¯‚½‚¢‚悤‚Èꇂɕ֗˜‚Å‚µ‚傤B - -@cindex ƒ^ƒCƒvƒZƒbƒ^‚ÌŽg‚¢•ª‚¯[‚½‚¢‚Ó‚¹‚‚½‚̂‚©‚¢‚킯] - -@node Splitting input files, Fix region for typesetting, Changing typesetter, %#notation -@comment node-name, next, previous, up -@section “ü—̓tƒ@ƒCƒ‹•ªŠ„ - -‚Ü‚½AÍ–ˆ‚ɕʃtƒ@ƒCƒ‹‚Ì .tex ‚ð쬂µ‚Ä‚¢‚éꇂÅA@file{main.tex}‚©‚ç -@file{sub.tex} ‚ð @code{\include}‚µ‚Ä‚¢‚é‚悤‚ÈŽž‚ÍA@file{sub.tex}‚Ì”CˆÓ‚Ì -ˆÊ’u‚ÉŽŸ‚̂悤‚Ès‚ð–„‚ßž‚Ý‚Ü‚·B - -@example - %#!platex main.tex -@end example - -@cindex “ü—̓tƒ@ƒCƒ‹•ªŠ„[‚ɂ䂤‚è‚æ‚­‚Ó‚ ‚¢‚é‚Ó‚ñ‚©‚Â] - -ã‚Ì—á‚̂悤‚ɃRƒ}ƒ“ƒh–¼‚¾‚¯‚Å‚È‚­ˆø”‚à‘‚¢‚½ê‡‚É‚ÍA‘S‚Ä‚ð‚»‚Ì‚Ü‚Ü -shell ‚É“n‚·‚Ì‚ÅŽŸ‚̂悤‚É‘‚¯‚ÎAghostview ‚È‚Ç‚ðƒvƒŒƒ”ƒ…[ƒA‚ÉŽg‚¤Žž‚É•Ö -—˜‚Å‚·B - -@cindex ghostview - -@example - %#!platex main && dvi2ps main.dvi > main -@end example - -‚È‚¨A‚±‚Ìs‚ÌÅŒã‚Ì’PŒê‚̃sƒŠƒIƒhˆÈ‘O‚ðuƒƒCƒ“ƒtƒ@ƒCƒ‹v‚̃x[ƒX -ƒl[ƒ€‚Å‚ ‚é‚Ɖ¼’肵‚Ü‚·(ã‚Ì2‚‚Ìꇂǂ¿‚ç‚à@file{main})B -‚±‚Ìs‚É‹Lq‚µ‚½A@code{%f}‚̓ƒCƒ“ƒtƒ@ƒCƒ‹–¼‚ÉA -@code{%r} ‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚ÌŠg’£Žq‚ðŽæ‚蜂¢‚½•”•ª‚É’uŠ·‚³‚ê‚Ü‚·B -‚½‚¾‚µA@code{%f,%r}‚ð—˜—p‚µ‚½ê‡A‰‰ñƒ^ƒCƒvƒZƒbƒgŽž‚É•K‚¸ƒƒCƒ“ƒtƒ@ƒCƒ‹ -–¼‚Ì“ü—͂𑣂³‚ê‚Ü‚·B - - @kbd{[prefix] g} (@ref{Cursor jump}ŽQÆ) ‚Å‚Ì -ƒtƒ@ƒCƒ‹ŠÔƒWƒƒƒ“ƒv‚ð—LŒø‚É‹@”\‚³‚¹‚邽‚ßA“ü—̓tƒ@ƒCƒ‹•ªŠ„Žž‚É‚ÍŽŸ‚Ì‚±‚Æ‚É -’ˆÓ‚µ‚ĉº‚³‚¢B - -@enumerate -@item -ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚ðì‚Á‚ÄA‚»‚Ì’†‚ɃTƒuƒtƒ@ƒCƒ‹‚ð’u‚­‚±‚Æ‚Í‚Å‚«‚邪 -ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚̃TƒuƒfƒBƒŒƒNƒgƒŠ‚É‚Í’u‚¯‚È‚¢B -@item -ƒƒCƒ“ƒtƒ@ƒCƒ‹‚©‚çƒTƒuƒfƒBƒŒƒNƒgƒŠ“à‚̃tƒ@ƒCƒ‹‚ð include ‚·‚鎞‚É‚ÍA -‘Š‘΃pƒXŽw’è‚ð—p‚¢‚ÄA -@code{\include@{chap1/sub@}}‚̂悤‚É‹LqB -@item -ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ªˆê‚Âã‚̃fƒBƒŒƒNƒgƒŠ‚É‚ ‚éꇂàAƒTƒuƒtƒ@ƒCƒ‹‚É‚Í -%#!platex main.tex ‚̂悤‚É‹Lq‚·‚é(../main‚Å‚Í‚È‚¢)B -@end enumerate - - - -@node Fix region for typesetting, lpr format, Splitting input files, %#notation -@comment node-name, next, previous, up -@section —̈æ‚̌Œè -@cindex ŒÅ’è—̈æ‚̃^ƒCƒvƒZƒbƒg[‚±‚Ä‚¢‚è‚悤‚¢‚«‚Ì‚½‚¢‚Ó‚¹‚‚Æ] -@cindex %#BEGIN -@cindex %#END - - @kbd{[prefix] tr} ‚̗̈æŽw’è‚̃^ƒCƒvƒZƒbƒg‚Å‚ÍA‚Æ‚­‚ÉŽw’è‚Ì‚È‚¢‚©‚¬‚èA -@kbd{C-SPC}‚Ń}[ƒN‚µ‚½ˆÊ’u‚ÆAƒ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚ÌŠÔ‚ð—̈æ‚Æ‚Ý‚È‚µ‚Ü -‚·‚ªA•K‚¸Œˆ‚Ü‚Á‚½—̈æ‚ðƒ^ƒCƒvƒZƒbƒg‚µ‚½‚¢ê‡‚ÍA‚»‚̗̈æ‚ð - -@example - %#BEGIN - <“n‚µ‚½‚¢—̈æ> - %#END -@end example - -@noindent -‚̂悤‚É@code{%#BEGIN}‚Æ@code{%#END}‚ň͂ÝAƒJ[ƒ\ƒ‹‚ðu@code{%#BEGIN}ˆÈ~v -‚É’u‚¢‚Ä‚­‚¾‚³‚¢B‚±‚ÌŽž‚̗̈挈’è‹K‘¥‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B - - -@enumerate -@item -ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É@code{%#BEGIN}‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª -‚ ‚éê‡ - -@enumerate -@item -@code{%#BEGIN}‚æ‚èƒoƒbƒtƒ@‚Ì––”ö•ûŒü‚É@code{%#END}‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ªŒ©‚‚©‚Á -‚½ê‡B -@result{}@code{%#BEGIN} ‚©‚çA‚»‚Ì @code{%#END} ‚Ì‚ ‚éˆÊ’u‚Ü‚ÅB -@item -@code{%#END} ‚ªŒ©‚‚©‚ç‚È‚©‚Á‚½ê‡B -@result{}ƒoƒbƒtƒ@‚ÌÅŒã”ö‚Ü‚ÅB -@end enumerate -@cindex —̈挈’è‹K‘¥[‚è‚悤‚¢‚«‚¯‚‚Ă¢‚«‚»‚­] - -@item -ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É @code{%#BEGIN} ‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª -Œ©‚‚©‚ç‚È‚©‚Á‚½ê‡B -@result{}ƒ}[ƒN(@kbd{C-SPC}ˆÊ’u)‚ƃ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚̊Ԃ̗̈æB -@end enumerate - - tabular ŠÂ‹«‚ð‰½“x‚àŽŽsöŒë‚µ‚Ä‚¢‚é‚悤‚ÈꇂÍA@code{\begin}‚Ì‘O‚Ìs -‚É @code{%#BEGIN} ‚Æ‘‚«A@code{\end} ‚ÌŽŸ‚Ìs‚É @code{%#END} ‚Æ‘‚¢‚Ä‚¨‚­ -‚ÆŠÈ’P‚Éì•\Œ‹‰Ê‚ðƒeƒXƒg‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A’·‚¢ .tex ƒtƒ@ƒCƒ‹‚̌㔼 -‚É @code{%#BEGIN} ‚ð‘‚¢‚Ä‚¨‚¯‚ÎA‘O”¼‚Ì•”•ª‚Í–³Ž‹‚Å‚«‚Ü‚·B‚±‚ÌBEGIN‚ÆEND -‚ÌÁ‚µ–Y‚ê‚É‚Í\•ª‚²’ˆÓ‰º‚³‚¢B -@cindex ’·‚¢ƒtƒ@ƒCƒ‹‚Ì•ÒW[‚È‚©‚¢‚Ó‚ ‚¢‚é‚Ì‚Ö‚ñ‚µ‚䂤] - -@c @node Require, lpr format, Fix region for typesetting, %#notation -@comment node-name, next, previous, up - -@node lpr format, Controlling which command to invoke, Fix region for typesetting, %#notation -@comment node-name, next, previous, up -@section lprƒtƒH[ƒ}ƒbƒg -@cindex lpr‚Ó‚§[‚Ü‚Á‚Æ[lpr‚Ó‚¨‚¨‚܂‚Æ] -@cindex lprƒtƒH[ƒ}ƒbƒg[lpr‚Ó‚¨‚¨‚܂‚Æ] -@cindex lpr format - - ‚Ü‚¸AƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh—ñ‚̃tƒH[ƒ}ƒbƒg‚ɂ‚¢‚Äà–¾‚µ‚Ü‚·B -ƒRƒ}ƒ“ƒh—ñƒtƒH[ƒ}ƒbƒg‚ÍA3‚Â‚Ì Lisp •Ï”‚É‚æ‚Á‚Ä•\Œ»‚³‚ê‚Ü‚·Bƒf -ƒtƒHƒ‹ƒg‚Ì dvi2ps —p‚̃tƒH[ƒ}ƒbƒg‚ð—á‚Éà–¾‚µ‚Ü‚·B - -@table @code -@item (1)dviprint-command-format -@code{"dvi2ps %f %t %s | lpr"} - -@item (2)dviprint-from-format -@code{"-f %b"} - -@item (3)dviprint-to-format -@code{"-t %e"} -@end table - -ŽÀۂɃvƒŠƒ“ƒgƒAƒEƒg‚·‚鎞‚ÍA(1)’†‚Ì %s ‚ªƒtƒ@ƒCƒ‹–¼‚É’u‚«Š·‚¦‚ç‚êA%f ‚ª -(2)‚Ì“à—eA%t ‚ª(3)‚Ì“à—e‚É’u‚«Š·‚¦‚ç‚ê‚Ü‚·B‚»‚ÌÛ‚É(2)‚Ì•¶Žš—ñ’†‚Ì %b ‚Í -uo—ÍŠJŽnƒy[ƒWvA(3)‚Ì•¶Žš—ñ’†‚Ì %e ‚Íuo—ÍI—¹ƒy[ƒWv‚É’u‚«Š·‚¦‚ç‚ê -‚Ü‚·B‚à‚µAƒy[ƒW‚ðŽw’肵‚È‚¢Žž‚É‚ÍA%f, %t —¼•û‚Æ‚à–³Ž‹‚³‚ê‚Ü‚·B - - ‚±‚ÌAdviprint-command-format ‚ð—ÕŽž‚É•Ï‚¦‚½‚¢Žž‚ÍALa@TeX{} ‚Ì -ƒ\[ƒXƒeƒLƒXƒg’†‚Ì”CˆÓ‚ÌꊂÉA - -@example - %#LPR dvi2ps %f %t %s | 4up -page 4 | texfix | lpr -Plp2 -@end example - -@noindent -‚̂悤‚É‘‚¢‚ĉº‚³‚¢BƒvƒŠƒ“ƒgƒAƒEƒg‚·‚éƒy[ƒW”ÍˆÍ‚ð‚¢‚¿‚¢‚¿•·‚©‚¹‚È‚¢‚悤 -‚É‚·‚鎞‚É - -@example - %#LPR dvi2ps %s | lpr -@end example - -@noindent -‚È‚Ç‚Æ‚·‚é‚Ì‚à•Ö—˜‚©‚à‚µ‚ê‚Ü‚¹‚ñB - -@node Controlling which command to invoke, Editing %# notation, lpr format, %#notation -@comment node-name, next, previous, up -@section ‚»‚Ì‘¼‚Ì‹N“®ƒRƒ}ƒ“ƒh§Œä -@cindex ‚»‚Ì‘¼‚̃Rƒ}ƒ“ƒh§Œä[‚»‚Ì‚½‚Ì‚±‚Ü‚ñ‚Æ‚¹‚¢‚«‚æ] - -La@TeX{} •¶‘‚ÉŠÖ˜A‚·‚éƒRƒ}ƒ“ƒh‚͈ȉº‚Ì %# ‹L–@‚ÅŽw’è‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B - -@table @code - @item %#BIBTEX - @dots{} makeindex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t b) - @item %#MAKEINDEX - @dots{} bibtex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t i) -@end table - -s“ª‚ª‚±‚ê‚ç‚̃L[ƒ[ƒh‚ÅŽn‚Ü‚és‚ðLa@TeX{}•¶‘‚Ì擪•t‹ß‚É‘‚¢‚Ä‚¨‚¯‚ÎA -‚»‚ê‚ÅŽw’肵‚½ƒRƒ}ƒ“ƒh‚ð‹N“®‚Å‚«‚Ü‚·B - -@node Editing %# notation, , Controlling which command to invoke, %#notation -@comment node-name, next, previous, up -@section %#‹L–@Ž©‘Ì‚Ì•ÒW -@cindex %#‹L–@Ž©‘Ì‚Ì•ÒW[%#‚«‚Ù‚¤‚µ‚½‚¢‚Ì‚Ö‚ñ‚µ‚䂤] - -ˆÈã‚̂悤‚È@code{%#}‚ÅŽn‚Ü‚éŠeŽí§Œä‹L–@‚ð•ÒW‚·‚邽‚ß‚É‚Í - -@table @kbd -@item [prefix] % - @dots{} @code{%#}@var{‹L–@•ÒWƒƒjƒ…[} -@end table - -@noindent -‚ð‰Ÿ‚µ‚Ü‚·B - -@example - !)Edit-%#! B)EGIN-END-region L)Edit-%#LPR -@end example - -@noindent -‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA@code{%#!}‚É‘±‚­ƒRƒ}ƒ“ƒh‚ð•ÏX‚µ‚½‚¢Žž‚É‚Í -@kbd{!}‚ðA@code{%#LPR}‚Å lpr ƒtƒH[ƒ}ƒbƒg‚ð•Ï‚¦‚½‚¢Žž‚Í@kbd{l}‚ðA‚ ‚ç‚© -‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“‚ð @code{%#BEGIN} ` @code{%#END} ‚ÅŠ‡‚肽‚¢Žž‚ÍA -@kbd{b}‚ð‰Ÿ‚µ‚Ü‚·B@kbd{b}‚ð‘I‚ñ‚¾Žž‚É‚ÍA‚»‚ê‚܂Ńoƒbƒtƒ@’†‚É’u‚©‚ê‚Ä‚¢‚½ -@code{%#BEGIN}, @code{%#END} ‚ªŽ©“®“I‚ÉÁ‹Ž‚³‚ê‚Ü‚·B -@cindex lprƒtƒH[ƒ}ƒbƒg‚Ì•ÏX[lpr‚Ó‚¨‚¨‚܂‚Ƃ̂ւñ‚±‚¤] - -@node Completion, Local dictionary, %#notation , Top -@comment node-name, next, previous, up -@chapter •âŠ®“ü—Í - - La@TeX{} ‚ł̊‹«–¼‚È‚Ç‚ÍA–ì’¹‚̕⊮‹@”\‚ð—˜—p‚µ‚Ä”\—¦“I‚É“ü—Í‚·‚邱‚Æ -‚ª‚Å‚«‚Ü‚·B - -@menu -* beginŒ^•âŠ®:: -* sectionŒ^•âŠ®:: -* largeŒ^•âŠ®:: -* maketitleŒ^•âŠ®:: -* Arbitrary completion:: Žž•âŠ® -* end•âŠ®:: -* Accent mark completion:: ƒAƒNƒZƒ“ƒg‹L†•âŠ® -* Image completion:: ”Ž®‹L†ƒCƒ[ƒW•âŠ® -* Greek letter completion:: ƒMƒŠƒVƒƒ•¶Žš•âŠ® -@end menu - -@node beginŒ^•âŠ®, sectionŒ^•âŠ®, Completion, Completion -@comment node-name, next, previous, up -@section beginŒ^•âŠ® -@cindex beginŒ^•âŠ®[begin‚©‚½‚Ù‚©‚ñ] -@cindex ŠÂ‹«–¼‚̕⊮[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ù‚©‚ñ] -@cindex prefix b - - @code{\begin@{env@}...\end@{env@}}‚Ì—l‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ðbeginŒ^•âŠ®‚Æ -ŒÄ‚Ô‚±‚Æ‚É‚µ‚Ü‚·Bbegin Œ^•âŠ®‚ÍA - -@table @kbd -@item [prefix] b - @dots{} begin Œ^•âŠ®ŠJŽn(•W€‚Å‚Í @kbd{C-c b}) -@end table - -@noindent -‚ÅŽn‚Ü‚è‚Ü‚·B•p”É‚É—p‚¢‚ç‚ê‚鎟‚Ì La@TeX{} ŠÂ‹«‚̕⊮‚ÍA[prefix] @kbd{b} -‚É‘±‚­ŽŸ‚Ì1•¶Žš‚ð“ü—Í‚·‚邾‚¯‚ÅA@code{\begin@{xxx@}...\end@{xxx@}}‚ðŠ®¬ -‚³‚¹‚Ü‚·B - -@table @kbd -@item [prefix] b c - @dots{} @code{\begin@{center@}...\end@{center@}} -@item [prefix] b d - @dots{} @code{\begin@{document@}...\end@{document@}} -@item [prefix] b D - @dots{} @code{\begin@{description@}...\end@{description@}} -@item [prefix] b e - @dots{} @code{\begin@{enumerate@}...\end@{enumerate@}} -@item [prefix] b E - @dots{} @code{\begin@{equation@}...\end@{equation@}} -@item [prefix] b i - @dots{} @code{\begin@{itemize@}...\end@{itemize@}} -@item [prefix] b l - @dots{} @code{\begin@{flushleft@}...\end@{flushleft@}} -@item [prefix] b m - @dots{} @code{\begin@{minipage@}...\end@{minipage@}} -@item [prefix] b t - @dots{} @code{\begin@{tabbing@}...\end@{tabbing@}} -@item [prefix] b T - @dots{} @code{\begin@{tabular@}...\end@{tabular@}} -@item [prefix] b ^T - @dots{} @code{\begin@{table@}...\end@{table@}} -@item [prefix] b p - @dots{} @code{\begin@{picture@}...\end@{picture@}} -@item [prefix] b q - @dots{} @code{\begin@{quote@}...\end@{quote@}} -@item [prefix] b Q - @dots{} @code{\begin@{quotation@}...\end@{quotation@}} -@item [prefix] b r - @dots{} @code{\begin@{flushright@}...\end@{flushright@}} -@item [prefix] b v - @dots{} @code{\begin@{verbatim@}...\end@{verbatim@}} -@item [prefix] b V - @dots{} @code{\begin@{verse@}...\end@{verse@}} -@end table - - ã‹L‚Ì‚à‚̈ȊO‚̊‹«–¼‚Í Emacs ‚ÌŽ‚ƒCƒ“ƒNƒŠƒƒ“ƒ^ƒ‹‚ȕ⊮‹@”\‚ð—p‚¢‚Ä -“ü—Í‚µ‚Ü‚·(ã‹L‚̊‹«–¼‚àˆÈ‰º‚̕⊮“ü—͉”\)B - -@table @kbd -@item [prefix] b @key{SPC} - @dots{} begin Œ^•âŠ®“ü—Í -@end table - -@kbd{[prefix] b @key{SPC}} ‚Æ“ü—Í‚·‚é‚ÆAʼnºs‚̃~ƒjƒoƒbƒtƒ@‚É - -@example - Begin environment(default document): -@end example - -@noindent -‚Æ•\Ž¦‚³‚ê‚Ü‚·B‚±‚±‚ÅA‰½‚à“ü‚ꂸ‚ɃŠƒ^[ƒ“ƒL[‚̂݉Ÿ‚·‚ÆAŠ‡ŒÊ“à‚Éo‚Ä‚¢ -‚éƒfƒtƒHƒ‹ƒg‚̊‹«–¼‚ª“ü—Í‚³‚ê‚Ü‚·‚ªA“K“–‚Ȋ‹«–¼‚ð“ü—Í‚·‚é‚ÆA -@code{\begin@{ŠÂ‹«–¼@} c \end@{ŠÂ‹«–¼@}}‚ª•¶‘’†‚É‘}“ü‚³‚ê‚Ü‚·Bƒ~ƒjƒoƒb -ƒtƒ@‚Ŋ‹«–¼‚ð“ü—Í‚·‚é‚Æ‚«‚ÉAŠÂ‹«–¼‚Ì“ª•¶Žš‚ð“ü—Í‚µuƒXƒy[ƒXv‚ð‚½‚½‚­‚ÆA -ˆê’v‚·‚éŠÂ‹«–¼‚ª“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚½ê‡A³‚µ‚¢ŠÂ‹«–¼‚ɕ⊮‚³‚ê‚é‚Ì‚ÅA -“ü—Í‚ÌŽèŠÔ‚ªÈ‚¯‚Ü‚·B“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚È‚¢ŠÂ‹«–¼‚ð“ü—Í‚µ‚½Žž‚̓†[ƒUê -—p‚̃e[ƒuƒ‹‚É“o˜^‚³‚êA‚³‚ç‚É‚»‚̃e[ƒuƒ‹‚ðŽ©“®“I‚ÉAƒ†[ƒUŽ«‘(ƒfƒtƒHƒ‹ -ƒg‚Å‚Í @file{~/.yatexrc})‚É•Û‘¶‚µ‚Ü‚·B - -‚³‚ç‚ÉA“Á’è‚̊‹«‚ð•âŠ®“ü—Í‚µ‚½Žž‚É‚Í‚»‚̊‹«‚Å•K‚¸—p‚¢‚ç‚ê‚éƒGƒ“ƒgƒŠ‚ðŽ© -“®‘}“ü‚µ‚Ü‚·(—á: @code{itemize}ŠÂ‹«‚É‚¨‚¯‚é@code{\item}‚È‚Ç)B‘}“ü‚³‚ꂽƒG -ƒ“ƒgƒŠ‚ª•s—v‚ÈꇂɂÍundo‚É‚æ‚Á‚ÄÁ‹Ž‚µ‚ĉº‚³‚¢B -@cindex ƒ†[ƒUŽ«‘[‚䂤‚³‚µ‚µ‚æ] - -@subsection Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚ÅŠ‡‚é - - ‚Æ‚±‚ë‚ÅAʼn‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ƒuƒƒbƒN‚ðŒã‚©‚çAitemize ŠÂ‹«‚Ì’† -‚ɕ‚¶‚±‚ß‚½‚¢‚ÆŽv‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚È‚Æ‚«‚ÍA‚ ‚ç‚©‚¶‚ß -•Â‚¶‚±‚ß‚½‚¢’i—Ž‚ðƒ}[ƒN‚µ‚ÄAbegin Œ^•âŠ®‚ÌŠeƒRƒ}ƒ“ƒh‚Ì @kbd{[prefix]} -‚ÌŽŸ‚Ìw¬•¶Žš‚Ì 'b'x ‚ðw‘啶Žšx‚É•Ï‚¦‚Ä‹N“®‚µ‚ĉº‚³‚¢B(‚Ü‚½‚ÍA -@kbd{C-u} ‚ðæ‚É‘Å‚¿Auniversal argument ‚ð‚‚¯‚Ä‚à‰Â”\‚Å‚·) -@cindex ƒuƒƒbƒN[‚Ó‚ë‚‚­] -@cindex •Â‚¶ž‚ß‚é[‚Æ‚µ‚±‚ß‚é] - - —Ⴆ‚΂ ‚éƒpƒ‰ƒOƒ‰ƒt‚ð description ŠÂ‹«‚Ì’†‚É“ü‚ꂽ‚¢‚Æ‚«‚ÍA -‚»‚̃pƒ‰ƒOƒ‰ƒt‚ðƒ}[ƒN‚µ‚Ä‚©‚çA - -@table @kbd -@item [prefix] B D -@itemx (‚Ü‚½‚Í ESC 1 [prefix] b D) -@itemx (‚Ü‚½‚Í C-u [prefix] b D ‚È‚Ç) -@end table - -‚ƃ^ƒCƒv‚µ‚Ä‚­‚¾‚³‚¢B‚±‚ê‚ÍA@kbd{[prefix] b SPC}‚̕⊮“ü—Í‚É‚à‚ ‚Ä‚Í‚Ü‚èA -@kbd{b} ‚ð‘啶Žš‚É•Ï‚¦‚ÄA@kbd{[prefix] B SPC} ‚ƃ^ƒCƒv‚·‚ê‚ÎA‚ ‚ç‚©‚¶‚ß -ƒ}[ƒN‚µ‚Ä‚¨‚¢‚½ƒŠƒWƒ‡ƒ“‚ðAbegin ‚Æ end ‚̊‹«‚ÅŠ‡‚è‚Ü‚·B - -@node sectionŒ^•âŠ®, largeŒ^•âŠ®, beginŒ^•âŠ®, Completion -@comment node-name, next, previous, up -@section sectionŒ^•âŠ® -@cindex sectionŒ^•âŠ®[section‚©‚½‚Ù‚©‚ñ] -@cindex prefix s - - @code{\section@{–Ú“I@}} ‚̂悤‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ð section Œ^•âŠ®‚ƌĂԂ± -‚Æ‚É‚µ‚Ü‚·Bsection Œ^•âŠ®‚ÍA - -@table @kbd -@item [prefix] s - @dots{} section Œ^•âŠ® -@end table - - -‚ÅŽÀs‚µ‚Ü‚·B@kbd{[prefix] s} ‚ð“ü—Í‚·‚é‚ƃ~ƒjƒoƒbƒtƒ@‚ÉA - -@example - (C-v for view-section) \???@{@} (default documentclass): -@end example - -@noindent -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅA‚»‚±‚Å @samp{section} ‚̂悤‚È La@TeX{} ƒRƒ} -ƒ“ƒh–¼‚ð“ü—Í‚µ‚Ü‚·B‚±‚±‚Å‚àƒŠƒ^[ƒ“ƒL[‚Ì‚Ý‚ÅŠ‡ŒÊ“à‚̃fƒtƒHƒ‹ƒg’l‚ª‘I‘ð‚³ -‚ê‚é‚Ù‚©A@samp{chapter}‚Ȃǂ̂悤‚È•p“x‚Ì‚‚¢–¼Ì“ü—͂ɂ̓Xƒy[ƒXƒL[‚É‚æ -‚é•âŠ®‹@”\‚ª—LŒø‚Å‚·B ŽŸ‚ÉA@{@}‚Ì’†g‚Ì“ü—͂𑣂·A - -@example - \section@{???@}: -@end example - -@noindent -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅAƒZƒNƒVƒ‡ƒ“‚̃^ƒCƒgƒ‹‚È‚Ç‚ð“ü—Í‚µ‚Ü‚·B -‚½‚Æ‚¦‚ÎA - -@example - (C-v for view-section) \???@{@} (default documentclass): section - \section@{???@}: –Ú“I -@end example - -@noindent -‚̂悤‚É“ü—Í‚µ‚½ê‡‚ÍA•¶Í’†‚É - -@example - \section@{–Ú“I@} -@end example - -@noindent -‚ª‘}“ü‚³‚êA - -@example - (C-v for view-section) \???@{@} (default section): vspace* - \vspace*@{???@}: -@end example - -@noindent -‚̂悤‚É@{@}‚Ì’†g‚ðÈ—ª‚µ‚½‚Æ‚«‚ÍA - -@example - \vspace*@{@} -@end example - -@noindent -‚¾‚¯‚ª‘}“ü‚³‚êA‰üs‚Í‚¹‚¸ƒJ[ƒ\ƒ‹‚ÍŽ©“®“I‚É’†Š‡ŒÊ‚Ì“à‘¤‚Ɉړ®‚µ‚Ü‚·B - -@menu -* 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh:: -* Enclose section-type command:: Š‡‚è•âŠ® -* Recursive completion:: Ä‹A•âŠ® -* view-sectioning:: ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ -* label-generation:: ƒ‰ƒxƒ‹Ž©“®¶¬ -@end menu - -@node 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh, Enclose section-type command, sectionŒ^•âŠ®, sectionŒ^•âŠ® -@comment node-name, next, previous, up -@subsection 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh -@cindex ˆø”[‚Ђ«‚·‚¤] - - ‚Æ‚±‚ë‚ÅA@samp{\addtolength@{\topmargin@}@{8mm@}} ‚Ȃǂ̂悤‚ÉAˆø”‚ð“ñ‚ -ˆÈãŽæ‚é La@TeX{} ƒRƒ}ƒ“ƒh‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚ȃRƒ}ƒ“ƒh‚̕⊮“ü—Í‚É‚ÍA -section Œ^•âŠ®ŒÄ‚Ño‚µ‚Ɉø”‚ð•t‚¯‚Ä‚­‚¾‚³‚¢B—Ⴆ‚Îã‚Ì@samp{addtolength} -‚Ì—á‚Å‚ ‚ê‚ÎAˆø”2‚ðŽw’肵‚Ü‚·B‚‚܂èA - -@example - C-u 2 [prefix] s (‚Ü‚½‚ÍAESC 2 [prefix] s) -@end example - -@noindent -‚Æ section Œ^•âŠ®‚ðŒÄ‚Ño‚µ‚½ŒãA - -@example - (Ctrl-v for view-section) \???@{@} (default vspace*): addtolength - \addtolength@{???@}: \topmargin - Argument 2: 8mm -@end example - -@noindent -‚̂悤‚É“ü—Í‚µ‚Ä‚­‚¾‚³‚¢Bʼn‚Ì addtolength ‚Ì•”•ª‚ÆA‘æˆêˆø”‚Å‚ ‚é -\topmargin ‚Ì“ü—Í‚Í“–‘RƒXƒy[ƒX‚É‚æ‚é•âŠ®“ü—Í‚ª‰Â”\‚Å‚·Bƒ†[ƒUŽ«‘‚É“o˜^ -‚³‚ê‚é La@TeX{} ƒRƒ}ƒ“ƒh‚É‚ÍA‚±‚̈ø”‚Ì”‚àŠwK‚³‚ê‚é‚Ì‚ÅAʼn‚̕⊮‚ÌŽž -ˆø”‚Ì”‚ðŽw’肵‚Ä‹N“®‚µ‚Ä‚¨‚¯‚ÎAˆÈŒã‚̕⊮Žž‚É‚ÍA‹L‰¯‚³‚ꂽŒÂ”‚¾‚¯ˆø” -‚ð•·‚¢‚Ä—ˆ‚é‚悤‚É‚È‚è‚Ü‚·B‚ ‚Ƃňø”‚̌”‚ð•Ï‚¦‚½‚¢Žž‚ÍAÄ‚Ñ @kbd{C-u} -‚ð—p‚¢‚Ȕ‚ðŽw’肵’¼‚·‚±‚Æ‚ÅAŽ©“®“I‚ÉŽ«‘’†‚̈ø”‚̌”‚Ì•”•ª‚ðXV‚µ‚Ü -‚·B -@cindex ˆø”‚̌”‚ð•Ï‚¦‚é[‚Ђ«‚·‚¤‚Ì‚±‚·‚¤‚ð‚©‚¦‚é] - - -@node Enclose section-type command, Recursive completion, 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh, sectionŒ^•âŠ® -@subsection Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠ‡‚é -@cindex Š‡‚é[‚­‚­‚é] - - ‚Ü‚½A‹N“®ƒRƒ}ƒ“ƒh‚Ì@kbd{s}‚ð‘啶Žš‚É•Ï‚¦‚Ä‹N“®‚·‚é‚ÆA‚ ‚ç‚©‚¶‚ß‘ -‚¢‚½•¶Í‚ð section Œ^ƒRƒ}ƒ“ƒh‚Ì‘æˆêˆø”‚Æ‚µ‚ÄŠ‡‚è‚Ü‚·B - -@node Recursive completion, view-sectioning, Enclose section-type command, sectionŒ^•âŠ® -@comment node-name, next, previous, up -@subsection Ä‹A•âŠ® -@cindex Ä‹A•âŠ®[‚³‚¢‚«‚Ù‚©‚ñ] - - ‚“x‚ÈŽg‚¢•û‚É‚È‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñ‚ªAsectionŒ^•âŠ®‚̈ø”‚Ì“ü—ÍŽž‚É‚³‚ç‚É -•âŠ®“ü—Í‚ð—˜—p‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·(section/large/maketitleŒ^‚ÉŒÀ‚é)Bsection -Œ^ƒRƒ}ƒ“ƒh‚̈ø”‚ÉX‚É La@TeX{} ƒRƒ}ƒ“ƒh‚ª—ˆ‚éꇂɂ̓~ƒjƒoƒbƒtƒ@‚Å–ì’¹‚Ì -•âŠ®ƒL[‚ðÄ‹A“I‚É“ü—Í‚·‚邱‚Ƃňø”‚Ì“ü—Í‚àŒø—¦“I‚És‚È‚¦‚Ü‚·B - -@node view-sectioning, label-generation, Recursive completion, sectionŒ^•âŠ® -@comment node-name, next, previous, up -@subsection ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ -@cindex ƒAƒEƒgƒ‰ƒCƒ“[‚ ‚¤‚Æ‚ç‚¢‚ñ] - - ’Êí‚ÌsectionŒ^•âŠ®‚ÌŽž‚Ƀ~ƒjƒoƒbƒtƒ@‚Å@kbd{C-v}‚ð‰Ÿ‚·‚ÆŒ»Ý‘¶Ý‚·‚éƒZƒN -ƒVƒ‡ƒ“‹æØ‚èƒRƒ}ƒ“ƒh‘S‚Ä‚ð @code{*Sectioning Lines*}‚Æ‚¢‚¤ƒoƒbƒtƒ@‚Ɉꗗ•\ -Ž¦‚µ‚Ü‚·(u<<--v‚̂‚¢‚Ä‚¢‚és‚ª‚à‚Á‚Æ‚à‹ß‚¢ƒZƒNƒVƒ‡ƒ“‹æØ‚è)B‚±‚ÌŽžƒ~ƒj -ƒoƒbƒtƒ@‚Å@kbd{C-p}, @kbd{C-n} ‚ð‰Ÿ‚·‚Æ@samp{part}, @samp{chapter}, ..., -@samp{subparagraph} ‚̃Rƒ}ƒ“ƒh‚ª˜_—ŠK‘w‚Ì‚‚³‚É‚µ‚½‚ª‚Á‚Ä㉺‚µ‚Ü‚·B‚Ü‚½A -@kbd{C-v}, @kbd{M-v} ‚ð‰Ÿ‚·‚ƃZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚ªƒXƒNƒ[ƒ‹‚µA -”Žš‚Ì@kbd{0}`@kbd{7}‚ð‰Ÿ‚·‚Æ‚ ‚é‚‚³ˆÈã‚̃ZƒNƒVƒ‡ƒ“‹æ؂肾‚¯‚ð‘I‚ñ‚Å•\ -Ž¦‚µ‚Ü‚·(ŽÀÛ‚É‚â‚Á‚ÄŒ©‚ê‚Εª‚©‚è‚Ü‚·)B - -@code{*Sectioning Lines*}ƒoƒbƒtƒ@‚ÍA - -@table @kbd -@item M-x YaTeX-section-overview - @dots{} ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚𶬠-@end table - -@cindex ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è‚¢‚¿‚ç‚ñ‚͂‚ӂ ] -‚Å쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ð‘I‘ð‚µ”CˆÓ‚Ìs‚ŃXƒy[ƒX‚ð‰Ÿ‚·‚ÆA -ŠY“–‚·‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ì‚ ‚é–{•¶’†‚ÌꊂɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚³‚ç‚ÉA“¯ƒoƒb -ƒtƒ@‚Å @kbd{u} ‚ð‰Ÿ‚·‚ÆAƒ\[ƒXƒeƒLƒXƒg‚̑Ήž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ªˆêŠK -‘wオ‚è(—á: subsection ‚ª section ‚É•Ï‚í‚é)A@kbd{d}‚ð‰Ÿ‚·‚ƈêŠK‘w‰º‚ª‚è -‚Ü‚·B@code{*Sectioning Lines*}ƒoƒbƒtƒ@‚É‚ ‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ìs‚ðƒ}[ƒN -‚µ‚Ä‚¨‚¢‚Ä@kbd{U}‚ð‰Ÿ‚·‚ƃŠƒWƒ‡ƒ““à‚Ì‚à‚̂ɑΉž‚·‚éƒ\[ƒXƒeƒLƒXƒg‚̃ZƒNƒVƒ‡ -ƒ“ƒRƒ}ƒ“ƒh‚·‚ׂĂªˆêŠK‘wオ‚èA@kbd{D}‚ð‰Ÿ‚·‚Ɖº‚ª‚è‚Ü‚·BƒZƒNƒVƒ‡ƒ“‹æØ -‚èˆê——ƒoƒbƒtƒ@‚Å—˜—p‚Å‚«‚éƒL[ƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B - -@table @kbd -@item SPC - @dots{} ‘Ήž‚·‚éƒ\[ƒXs‚ÖƒWƒƒƒ“ƒv -@item . - @dots{} ‘Ήž‚·‚éƒ\[ƒXs‚ð•\Ž¦ -@item u - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚ɑΉž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é -@item d - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚ɑΉž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘w‰º‚°‚é -@item U - @dots{} ƒ}[ƒN‚µ‚½ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é -@item D - @dots{} ƒ}[ƒN‚µ‚½ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é -@item 0`6 - @dots{} ƒŒƒxƒ‹ n ˆÈ‰º‚̃ZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ð‰B‚µ‚Ä•\Ž¦ -@end table - -@cindex ˜_—ŠK‘w[‚ë‚ñ‚è‚©‚¢‚»‚¤] -@cindex ƒZƒNƒVƒ‡ƒ“‹æØ‚è[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è] -@cindex ƒWƒƒƒ“ƒv[‚µ‚â‚ñ‚Ó] - -@node label-generation, , view-sectioning, sectionŒ^•âŠ® -@comment node-name, next, previous, up -@subsection ƒ‰ƒxƒ‹Ž©“®¶¬ -@cindex ƒ‰ƒxƒ‹Ž©“®¶¬[‚ç‚ւ邵‚Æ‚¤‚¹‚¢‚¹‚¢] - - @code{\ref@{@}} ‚â @code{\cite@{@}} ƒ}ƒNƒ‚ðsectionŒ^•âŠ®‚Å“ü‚ê‚½ê‡ -ŽQÆæ‚ƂȂ蓾‚é‚à‚Ì‚ð‘S‚Ä’T‚µ‚ăƒjƒ…[‚É‚µ‚Ä‘I‘ð‚Å‚«‚Ü‚·BŽQÆæ‚É‚Í -@code{\label@{@}}‚ð‚‚¯‚Ä‚¨‚­•K—v‚Í‚ ‚è‚Ü‚¹‚ñB‚à‚µ‚ ‚ê‚ÎA‚»‚̃‰ƒxƒ‹‚ð -Žg‚¢A‚È‚¯‚ê‚΂»‚Ìê‚ÅŽQÆæ‚É@code{\label@{@}}‚ðì‚点‚Ä‚­‚ê‚Ü‚·B -ƒ‰ƒxƒ‹–¼‚ðl‚¦‚é‚Ì‚Í‹ê’É‚ÉŠ´‚¶‚é‚à‚Ì‚Å‚·B‘S‚ẴJƒEƒ“ƒ^‚Ƀ‰ƒxƒ‹‚ð -‚‚¯‚é‚Ì‚à‚½‚¢‚Ö‚ñ‚Å‚·B‚à‚¤ƒ‰ƒxƒ‹–¼‚ɉ½‚ð‚‚¯‚é‚©Aƒ‰ƒxƒ‹‚ð‚‚¯‚é‚©‚‚¯‚Ü -‚¢‚©A‚È‚Ç‚Æ‚¢‚¤‚±‚Æ‚Í–Y‚ê‚Ü‚µ‚傤! - -@node largeŒ^•âŠ®, maketitleŒ^•âŠ®, sectionŒ^•âŠ®, Completion -@comment node-name, next, previous, up -@section largeŒ^•âŠ® -@cindex largeŒ^•âŠ®[large‚©‚½‚Ù‚©‚ñ] -@cindex prefix l - - @code{@{\large @}} ‚̂悤‚ÈŒ`Ž®‚̕⊮‚ð large Œ^•âŠ®‚ƌĂԂ±‚Æ‚É‚µ‚Ü‚·B - -@table @kbd -@item [prefix] l - @dots{} large Œ^•âŠ®ŠJŽn -@end table - -@noindent -‚ªlargeŒ^•âŠ®‚ÌŠJŽn‚Å‚·B@kbd{[prefix] l} ‚ð‰Ÿ‚·‚ÆAƒ~ƒjƒoƒbƒtƒ@‚É - -@example - @{\??? @} (default large): -@end example - - -‚Æ•\Ž¦‚³‚ê‚é‚Ì‚ÅAã‹L‚Ì‚à‚Ì‚Æ“¯‚¶—v—̂ŕ⊮“ü—Í‚µ‚ĉº‚³‚¢B•âŠ®Œó•â‚É—pˆÓ -‚³‚ê‚Ä‚¢‚é‚Ì‚ÍA@samp{footnotesize} ‚â @samp{huge} ‚̂悤‚È•¶ŽšƒTƒCƒYŽw’è -Žq‚ÆA@samp{bf}‚â@samp{dg}‚̂悤‚ȃtƒHƒ“ƒgŽw’èŽq‚Å‚·B -@cindex •¶ŽšƒTƒCƒYŽw’èŽq[‚à‚µ‚³‚¢‚·‚µ‚Ä‚¢‚µ] -@cindex ƒtƒHƒ“ƒgŽw’èŽq[‚Ó‚¨‚ñ‚Æ‚µ‚Ä‚¢‚µ] - -@subsection Šù‚É‘‚¢‚½•¶Žš‚ðŠ‡‚é -@cindex Š‡‚é[‚­‚­‚é] - - ‚Ü‚½AbeginŒ^•âŠ®‚ÌŽž‚Æ“¯—lAæ‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ˆê˜A‚Ì•¶Í‚Ì•¶Žš‚̃TƒCƒY -‚ð•Ï‚¦‚½‚¢‚ÆŽv‚¤Žž‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚ÈŽž‚ÍAƒTƒCƒY‚â‘å‚«‚³‚ð•Ï‚¦‚½‚¢•¶ -Žš‚͈̔͂ðƒ}[ƒN‚µ‚Ä‚©‚çAŒÄ‚Ño‚µƒL[‚ð @kbd{[prefix] L} ‚ÆA‘啶Žš‚Ì L -‚É•Ï‚¦‚ČĂÑo‚¹‚ÎA‚»‚̃ŠƒWƒ‡ƒ“‘S‘Ì‚ªAƒuƒŒ[ƒX‚ň͂܂ê‚Ü‚·B - -@node maketitleŒ^•âŠ®, Arbitrary completion, largeŒ^•âŠ®, Completion -@comment node-name, next, previous, up -@section maketitleŒ^•âŠ® -@cindex maketitleŒ^•âŠ®[maketitle‚©‚½‚Ù‚©‚ñ] -@cindex prefix m - - @code{\maketitle} ‚ÌŒ`Ž®‚̕⊮‚ð maketitle Œ^•âŠ®‚ƌĂԂ±‚Æ‚É‚µ‚Ü‚·B - -@table @kbd -@item [prefix] m - @dots{} maketitle Œ^•âŠ®ŠJŽn -@end table - -@noindent -‚ÅAmaketitle Œ^•âŠ®‚ðŠJŽn‚µ‚Ü‚·B•âŠ®‚Ì—v—Ì‚Í¡‚Ü‚Å‚Ì‚à‚Ì‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å -‚·BLa@TeX{} —p‚̃Rƒ}ƒ“ƒh–¼‚ª•âŠ®Œó•â‚Æ‚µ‚Ä—pˆÓ‚³‚ê‚Ä‚¢‚Ü‚·B - -@node Arbitrary completion, end•âŠ®, maketitleŒ^•âŠ®, Completion -@comment node-name, next, previous, up -@section Žž•âŠ® -@cindex Žž•âŠ®[‚·‚¢‚µ‚Ù‚©‚ñ] -@cindex prefix SPC - - ‚³‚ÄA¡‚Ü‚Åq‚ׂ½“TŒ^“I‚È La@TeX{} ƒRƒ}ƒ“ƒhŒ`Ž®‚̕⊮“ü—Í‚ð—p‚¢‚¸‚ÉA¡ -“ü—Í‚µ‚悤‚Æ‚µ‚Ä‚¢‚é La@TeX{} ƒRƒ}ƒ“ƒh‚𕶑’†‚Ì”CˆÓ‚̈ʒu‚ÅŽž•âŠ®‚·‚邱 -‚Æ‚à‚Å‚«‚Ü‚·BLa@TeX{} ƒRƒ}ƒ“ƒh(擪‚ª\‚ÅŽn‚Ü‚é)‚ð“ü—Í‚µ‚Ä‚¢‚é“r’†‚ÅA - -@table @kbd -@item [prefix] SPC - @dots{} Žž•âŠ® -@end table - -@noindent -‚ð“ü—Í‚·‚ê‚ÎA‘S‚Ă̕⊮Œó•â‚Ì’†‚©‚çˆê’v‚·‚é‚à‚Ì‚ª‘I‚΂êƒJ[ƒ\ƒ‹ˆÊ’u‚É‘}“ü -‚³‚ê‚Ü‚·B - -@node end•âŠ®, Accent mark completion, Arbitrary completion, Completion -@comment node-name, next, previous, up -@section end•âŠ® -@cindex end•âŠ®[end‚Ù‚©‚ñ] -@cindex prefix e - - Œ»ÝŠJ‚¢‚½‚܂܂̊‹«–¼‚ðŽ©“®“I‚ÉŒŸo‚µA@code{\end@{ŠÂ‹«–¼@}}‚ð‘}“ü‚µ‚Ü -‚·Bbegin Œ^•âŠ®‚ð—p‚¢‚ê‚Ί‹«‚̕‚¶–Y‚ê‚Í‚È‚¢‚Ì‚Å‚·‚ªAŽž‚ɂ͂‚¢‚‚¢Žè‚Å -@code{\begin@{ŠÂ‹«–¼@}} ‚ð“ü‚ê‚Ä‚µ‚Ü‚¢A”ß‚µ‚¢Žv‚¢‚ð‚·‚é‚±‚Æ‚ª‚ ‚è‚Ü‚·B‚» -‚̂悤‚ÈŽž‚É‚Í‹C‚É‚¹‚¸‘±‚¯‚Ä•¶Í‚ð“ü—Í‚µA‚µ‚©‚é‚Ì‚¿‚É - -@table @kbd -@item [prefix] e - @dots{} end •âŠ® -@end table - -@noindent -‚Æ‚·‚邱‚Æ‚ÅAŒ»ÝŠJ‚¢‚Ä‚¢‚éŠÂ‹«–¼‚Å \end@{@} ‚ª•â‚í‚ê‚Ü‚·B - -@node Accent mark completion, Image completion, end•âŠ®, Completion -@comment node-name, next, previous, up -@section ƒAƒNƒZƒ“ƒg‹L†•âŠ® -@cindex ƒAƒNƒZƒ“ƒg‹L†•âŠ®[‚ ‚­‚¹‚ñ‚Æ‚«‚±‚¤‚Ù‚©‚ñ] -@cindex prefix a -@cindex ‰¢•¶[‚¨‚¤‚Ó‚ñ] - - ‰¢•¶‚̃AƒNƒZƒ“ƒg‹L†(@code{\`@{o@}}‚È‚Ç)‚ð“ü—Í‚·‚鎞‚ÍA - -@table @kbd -@item [prefix] a - @dots{} ƒAƒNƒZƒ“ƒg‹L†“ü—Í -@end table - -@noindent -‚ð‰Ÿ‚·‚ÆAƒ~ƒjƒoƒbƒtƒ@‚É - -@example - 1:` 2:' 3:^ 4:" 5:~ 6:= 7:. u v H t c d b -@end example - -@noindent -‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA”ŽšA‚Ü‚½‚͑Ήž‚·‚é‹L†/‰pŽš‚ð“ü—Í -‚µ‚ĉº‚³‚¢B‚·‚é‚Æ•ÒWƒoƒbƒtƒ@‚ÉA - -@example - \`@{@} -@end example - -@noindent -‚ªŒ»‚í‚êAƒJ[ƒ\ƒ‹‚ª@{@}“à‚Ɉʒu‚·‚é‚Ì‚ÅA‚³‚ç‚ɈꕶŽš“ü—Í‚·‚鎖‚ÅA - -@example - \`@{o@} -@end example - -@noindent -‚ªŠ®¬‚³‚êAƒJ[ƒ\ƒ‹‚Í@{@}‚ÌŠO‚É–ß‚è‚Ü‚·B - -@node Image completion, Greek letter completion, Accent mark completion, Completion -@comment node-name, next, previous, up -@section ”Ž®‹L†ƒCƒ[ƒW•âŠ® -@cindex ”Ž®‹L†ƒCƒ[ƒW•âŠ®[‚·‚¤‚µ‚«‚«‚±‚¤‚¢‚ß‚¦‚µ‚Ù‚©‚ñ] -@cindex ƒCƒ[ƒW•âŠ®[‚¢‚ß‚¦‚µ‚Ù‚©‚ñ] -@cindex ; -@cindex ”Ž®ƒ‚[ƒh[‚·‚¤‚µ‚«‚à‚¨‚Æ] -@cindex –îˆó[‚₵‚邵] -@cindex ƒ°[‚µ‚­‚Ü] -@cindex leftarrow -@cindex ‡[‚Þ‚¯‚ñ‚½‚¢] - - Žå‚É”Ž®ƒ‚[ƒh‚ÅŽg—p‚³‚ê‚éA–îˆó‚⃰‚È‚Ç‚Ì‹L†‚ð‹[Ž—“I‚É•\Œ»‚·‚éƒL[“ü—Í -‚ÅALa@TeX{} ƒRƒ}ƒ“ƒh‚ð“ü—Í‚Å‚«‚Ü‚·B‚±‚ê‚Í–ì’¹Ž©g‚Ìu”Ž®ƒ‚[ƒhv‚Å‚Ì‚Ý -“®ì‚µ‚Ü‚·B–ì’¹‚̓J[ƒ\ƒ‹‚ª@TeX{}‚Ì”Ž®ŠÂ‹«‚Ì’†‚É‚ ‚鎞‚É@kbd{;}‚âA -@kbd{:}‚É“ÁŽê‚È‹@”\‚ðŽ‚½‚¹‚Ü‚·B - - ‚³‚ÄA—Ⴆ‚ÎA©(leftarrow)‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡Aˆê”Ê“I‚É‚Íu<-v -‚̂悤‚É‚µ‚Ü‚·‚ªA‚±‚ê‚ð—˜—p‚µ‚ÄA”Ž®‹L†ƒCƒ[ƒW“ü—̓‚[ƒh‚Å -@code{\leftarrow}‚ð“ü—Í‚·‚é‚É‚ÍA@kbd{;}(ƒZƒ~ƒRƒƒ“)‚ð‘Å‚Á‚Ä‚©‚ç@kbd{<-}‚Æ -“ü—Í‚µ‚Ü‚·B“¯—l‚ÉA’·‚¢–îˆó©-(long-leftarrow) ‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚é -ê‡u<--v‚Æ‚·‚é‚Ì‚ÅA@code{\longleftarrow}‚ð“ü—Í‚·‚邽‚ß‚É‚ÍA@kbd{;<--} -‚Æ“ü—Í‚µ‚Ü‚·B‚ ‚é‚¢‚Í–³ŒÀ‘å‹L†‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚鎞‚Íuoov‚̂悤 -‚É‚·‚邱‚Æ‚©‚çA@code{\infty} ‚ð“ü—Í‚·‚鎞‚ÍA@kbd{;oo}‚ƃL[“ü—Í‚µ‚Ü‚·B - - ‚±‚ê‚ç‚Ì‘€ì‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B - -@example -INPUT “ü—Í‚³‚ê‚é La@TeX{} ƒRƒ}ƒ“ƒh -; < - @code{\leftarrow} -; < - - @code{\longleftarrow} -; < - - > @code{\longleftrightarrow} -; o @code{\circ} -; o o @code{\infty} -@end example - - - - ‚¢‚¸‚ê‚ÌꇂàAƒCƒ[ƒW“ü—Í‚ðs‚Á‚Ä‚¢‚é“r’†‚Å–]‚Ý‚Ì‚à‚Ì‚ªƒoƒbƒtƒ@ -‚É•\Ž¦‚³‚ꂽ‚È‚çA‚»‚±‚ŃCƒ[ƒW“ü—Í‚ðŽ~‚ß‚ÄŽŸ‚Ì•ÒW“®ì‚ɈڂÁ‚Ä‚à -\‚¢‚Ü‚¹‚ñB - -@cindex ;Ž©g[;‚µ‚µ‚ñ] - ”Ž®ŠÂ‹«’†‚Å@samp{;}Ž©g‚ð“ü—Í‚·‚é‚É‚Í@kbd{;;}‚̂悤‚É‚µ‚Ü‚·BƒCƒ[ƒW -“ü—Í‚Ì“r’†‚ÅTAB‚ð‰Ÿ‚·‚ÆA‚»‚ê‚Ü‚Å“ü—Í‚µ‚½•¶Žš‚ÅŽn‚Ü‚é‚à‚̈ꗗ‚ª•\Ž¦‚³‚ê‚Ü -‚·B‚±‚±‚Å–Ú“I‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚܂ŃJ[ƒ\ƒ‹‚ðˆÚ“®‚µÄ“xTAB‚ð‰Ÿ‚·‚±‚Æ‚Å -‚»‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚ªƒoƒbƒtƒ@‚É‘}“ü‚³‚ê‚Ü‚·B - - ‚ǂ̃L[“ü—Í‚É‚Ç‚Ì‹L†‚ª‘Ήž‚µ‚Ä‚¢‚é‚©‘S‚Ä’m‚肽‚¢Žž‚ÍA@kbd{;}‚ð‰Ÿ‚µ‚½ -’¼Œã‚ÉTAB‚ð‰Ÿ‚µ‚Ä‚­‚¾‚³‚¢BˆÈ‰º‚Ì—á‚ÍA@kbd{;<}‚ƉŸ‚µ‚½Œã‚ÉTAB‚ð‰Ÿ‚µ‚½‚à‚Ì -‚Å‚·B - -@example -KEY LaTeX sequence sign -< \leq … -<< \ll s -<- \leftarrow © -<= \Leftarrow <= -@end example - -¶‚©‚ç[“ü—̓L[]A[‘Ήž‚·‚é La@TeX{} ƒRƒ}ƒ“ƒh]A[(‹[Ž—)‹L†}Ž¦]A‚Æ -‚¢‚¤‡‚Ńƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA‚æ‚­Žg‚¤‚à‚Ì‚ðŠo‚¦‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚å -‚¤B‚à‚Ì‚É‚æ‚Á‚Ä‚ÍASCII•¶Žš‚Å•\Œ»‚·‚邱‚Æ‚ª¢“ï‚È‚Ì‚ÅA‚ ‚Ü‚èŠo‚¦ -‚â‚·‚¢ƒL[•À‚Ñ‚Å‚Í‚È‚¢‚à‚Ì‚ª‚ ‚é‚Å‚µ‚傤‚©‚çA‚»‚̂悤‚Èê‡‚Í -\maketitle Œ^•âŠ®‚Å“ü—Í‚·‚é‚©AˆÈ‰º‚Éq‚ׂé‘Ήž•\‚ÌÝ’è‚ðs‚Á‚Ä’P -ƒ‚ȃL[•À‚Ñ‚Ì‚à‚Ì‚ðÝ’è‚·‚é‚Æ—Ç‚¢‚Å‚µ‚傤B - - “ü—̓L[‚Æ La@TeX{} ƒRƒ}ƒ“ƒhA‹L†‚̑Ήž•\‚ðŒÂl“I‚Éݒ肵‚½‚¢ê‡‚Í -Emacs-Lisp •Ï” @code{YaTeX-math-sign-alist-private} ‚É’è‹`‚µ‚Ä‚­‚¾‚³‚¢B -‚»‚Ì“à—e‚ƃfƒtƒHƒ‹ƒg‚Ì‚à‚Ì‚ð‡‚킹‚½‚à‚Ì‚ª‘Ήž•\‚Æ‚µ‚ÄŽg—p‚³‚ê‚Ü‚·(private -‚Ì•û‚ª—D悳‚ê‚é)B‚È‚¨A‚±‚Ì•Ï”‚Ì\‘¢‚ɂ‚¢‚Ä‚Í @file{yatexmth.el} ‚ðŽQ -Æ‚µ‚Ä‚­‚¾‚³‚¢B -@cindex YaTeX-math-sign-alist-private - -@node Greek letter completion, , Image completion, Completion -@comment node-name, next, previous, up -@section ƒMƒŠƒVƒƒ•¶Žš•âŠ® -@cindex ƒMƒŠƒVƒƒ•¶Žš•âŠ®[‚«‚肵‚â‚à‚µ‚Ù‚©‚ñ] -@cindex : - - ‚à‚¤ˆê‚ÂA”Ž®ŠÂ‹«’†‚Å@kbd{:}‚ð‰Ÿ‚·‚ƃMƒŠƒVƒƒ•¶Žš“ü—̓‚[ƒh‚É“ü‚è‚Ü‚·B -@kbd{:}‚ð‰Ÿ‚µ‚½’¼Œã‚É@kbd{a}‚ð‰Ÿ‚·‚Æ@code{\alpha}‚ªA@kbd{g} ‚ð‰Ÿ‚·‚Æ -@code{\gamma}‚ªA‚ȂǃAƒ‹ƒtƒ@ƒxƒbƒg‚ɑΉž‚µ‚½ƒMƒŠƒVƒƒ•¶Žš‚ª‘}“ü‚³‚ê‚Ü‚·B -‘€ì•û–@‚Í;‚Ì”Ž®‹L†•âŠ®‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å‚·B‚Ü‚¸‚Í@kbd{:}‚Ì’¼Œã‚É -TAB‚ð‰Ÿ‚µ‚Ăǂ̃Aƒ‹ƒtƒ@ƒxƒbƒg‚ɂǂ̃MƒŠƒVƒƒ•¶Žš‚ª‘Ήž‚µ‚Ä‚¢‚é‚©’²‚×‚Ä‚Ý‚Ä -‚­‚¾‚³‚¢B - - @kbd{;}‚Æ@kbd{:}‚𔎮ŠÂ‹«’†‚ʼnŸ‚µ‚Ä‚¢‚é‚É‚à‚©‚©‚í‚炸AƒCƒ[ƒW•âŠ®‚ª“­ -‚©‚È‚¢ê‡‚ÍA@kbd{C-u ;}‚̂悤‚É universal-argument ‚ð‚‚¯‚ăL[‚ð‰Ÿ‚·‚± -‚Æ‚É‚æ‚èA‹­§“I‚ɃCƒ[ƒW•âŠ®‚É“ü‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A‚±‚ÌŽž‚ɂǂ̂悤 -‚Èó‘Ô‚Å”Ž®ŠÂ‹«“à”»’è‚ÉŽ¸”s‚µ‚½‚©‚ð‚²˜A—‰º‚³‚¢B - -@node Local dictionary, Commenting out, Completion, Top -@comment node-name, next, previous, up -@chapter ƒ[ƒJƒ‹Ž«‘ -@cindex ƒ[ƒJƒ‹Ž«‘[‚남‚©‚邵‚µ‚æ] -@cindex .yatexrc - - •âŠ®“ü—Í—p‚ÌŒó•â‚ÍŽOŽí—Þ‚ÌŽ«‘‚©‚ç\¬‚³‚ê‚Ä‚¢‚Ü‚·Bˆê‚Â‚Í -@file{yatex.el}‚É‘g‚Ýž‚܂ꂽu•W€Ž«‘vA‚à‚¤ˆê‚‚̓†[ƒU‚ªŒÂl“I‚Éí—p -‚·‚éƒRƒ}ƒ“ƒh‚ð•Û‘¶‚·‚éuƒ†[ƒUŽ«‘vA‚»‚µ‚Ä‚à‚¤‚ЂƂ‚͂ ‚éƒfƒBƒŒƒNƒgƒŠ‚Å -‚Ì‚Ý—LŒø‚ȃRƒ}ƒ“ƒh‚ð•Û‘¶‚·‚éuƒ[ƒJƒ‹Ž«‘v‚Å‚·B - - •âŠ®“ü—ÍŽž‚ÉV‚µ‚¢’PŒê‚ð“ü‚ꂽꇂÉA‚»‚Ì’PŒê‚ð‚Ç‚ÌŽ«‘‚É“ü‚ê‚é‚©•·‚¢‚Ä -—ˆ‚Ü‚·B - -@example - `foo' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard -@end example - -@noindent -‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ɑ΂µA@kbd{u}‚Æ“š‚¦‚é‚Æuƒ†[ƒUŽ«‘v‚ðA@kbd{l}‚Æ“š‚¦‚é -‚ƃ[ƒJƒ‹Ž«‘‚ðXV‚µA@kbd{n}‚Æ“š‚¦‚é‚ÆŽ«‘ƒtƒ@ƒCƒ‹‚ÍXV‚¹‚¸Œ»Ý‚ÌEmacs -ƒZƒbƒVƒ‡ƒ“‚Ì‚Ý—LŒø‚È’PŒê‚Æ‚µA@kbd{d}‚Æ“š‚¦‚é‚ÆV‚½‚È’PŒê‚ðŠwK‚¹‚¸‚ÉŽÌ‚Ä -‚邱‚Æ‚É‚È‚è‚Ü‚·B - - ‚à‚µAƒ[ƒJƒ‹Ž«‘‚Ì‹@”\‚Í‚¢‚炸A‘S‚ă†[ƒUŽ«‘‚ÌXV‚Ì‚Ý‚Å‚æ‚¢‚ÆŒ¾‚¤ê -‡‚É‚Í@file{~/.emacs}‚È‚Ç‚ÅA -@cindex YaTeX-nervous - -@lisp - (setq YaTeX-nervous nil) -@end lisp - -@noindent -‚Æ‚µ‚ĉº‚³‚¢B - -@node Commenting out, Cursor jump, Local dictionary, Top -@comment node-name, next, previous, up -@chapter ƒRƒƒ“ƒgƒAƒEƒg -@cindex ƒRƒƒ“ƒgƒAƒEƒg[‚±‚ß‚ñ‚Æ‚ ‚¤‚Æ] -@cindex prefix < -@cindex prefix > -@cindex prefix . -@cindex prefix , - - - La@TeX{}‚Ì•ÒW‚É‚ÍŽŽsöŒë‚ª‚‚«‚à‚Ì‚Å‚·B‚ ‚é•”•ª‚ðˆêŠ‡‚ŃRƒƒ“ƒgƒAƒEƒg -‚µ‚½‚èAƒRƒƒ“ƒg‚ðŠO‚µ‚½‚肵‚½‚¢‚±‚Æ‚ª‚ ‚è‚Ü‚·B - -@table @kbd -@item [prefix] > - @dots{} ƒŠƒWƒ‡ƒ“‚ð % ‚ŃRƒƒ“ƒgƒAƒEƒg -@item [prefix] < - @dots{} ƒŠƒWƒ‡ƒ“‚Ì % ‚̃Rƒƒ“ƒg‚ðŠO‚· -@end table - -@noindent -‚ÍA‚ ‚ç‚©‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“‚ɑ΂µ‚Ä‚Ì‘€ìA - -@table @kbd -@item [prefix] . - @dots{} Œ»Ý‚̃pƒ‰ƒOƒ‰ƒt‚ðƒRƒƒ“ƒgƒAƒEƒg -@item [prefix] , - @dots{} Œ»Ý‚̃pƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŠO‚· -@end table - -@noindent -‚ÍAƒJ[ƒ\ƒ‹‚̈ʒu‚·‚éƒpƒ‰ƒOƒ‰ƒt‘S‘̂ɑ΂µ‚Ä‚Ì‘€ì‚Å‚·B‚È‚¨A‚±‚±‚Å‚¢‚¤ -uƒpƒ‰ƒOƒ‰ƒtv‚Í (@code{mark-paragraph}) ŠÖ”‚É‚æ‚èƒ}[ƒN‚³‚ê‚é”͈͂ðŽw‚µ -‚Ü‚·(•W€Ý’è‚Å@kbd{ESC h}‚ɃoƒCƒ“ƒh‚³‚ê‚Ä‚¢‚é)B‚È‚¨AŠù‚É@code{%}‚ŃRƒ -ƒ“ƒgƒAƒEƒg‚³‚ê‚Ä‚¢‚éƒpƒ‰ƒOƒ‰ƒt‚ɑ΂µ‚ÄŒJ‚è•Ô‚µƒpƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŽg—p‚µ -‚½ê‡‚Ì“®ì‚Í•ÛØ‚µ‚Ü‚¹‚ñ‚̂Ō䒈ӂ­‚¾‚³‚¢B - - ‚³‚ÄA•¶Í‚ɑ΂µ‚Ä‚¾‚¯‚Å‚È‚­AŽž‚É‚Í@code{\begin}, @code{\end} Ž©‘Ì‚É‘Î -‚µ‚Ä‚àƒRƒƒ“ƒgƒAƒEƒg‚Ì‘€ì‚ð‚µ‚½‚¢‚Æ‚«‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚È‚Æ‚«‚ÍA -@code{\begin@{@}} ‚ ‚é‚¢‚Í @code{\end@{@}} ‚Ìs‚ɃJ[ƒ\ƒ‹‚ð‡‚킹A - -@table @kbd -@item [prefix] > - @dots{} @code{\begin@{@}}`@code{\end@{@}} ‘S‚ăRƒƒ“ƒgƒAƒEƒg -@item [prefix] < - @dots{} @code{\begin@{@}}`@code{\end@{@}} ‘S‚ăRƒƒ“ƒg‚ðŠO‚· -@end table - -@noindent -‚Æ‚·‚邱‚Æ‚ÅA@code{\begin`\end}‚ň͂܂ê‚éŠÂ‹«‘S‚Ăɑ΂µ‚ăRƒƒ“ƒg‘€ì‚µA - -@table @kbd -@item [prefix] . - @dots{} @code{\begin@{@}} ‚Æ @code{\end@{@}} ‚ðƒRƒƒ“ƒgƒAƒEƒg -@item [prefix] , - @dots{} @code{\begin@{@}} ‚Æ @code{\end@{@}} ‚̃Rƒƒ“ƒg‚ðŠO‚· -@end table - -‚ÍA‘Ήž‚·‚é @code{\begin} ‚Æ @code{\end} 2s‚¾‚¯‚ðAƒRƒƒ“ƒg‘€ì‚Ì‘ÎÛ‚Æ -‚µ‚Ü‚·BƒŠƒWƒ‡ƒ“‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚悤‚Æ‚µ‚ÄAƒ}[ƒN‚ðݒ肵‚½‚Ì‚¿‚ɃJ[ƒ\ -ƒ‹‚ðˆÚ“®‚µ@kbd{[preifx] >} ‚ð‰Ÿ‚µ‚Ä‚àƒJ[ƒ\ƒ‹‚ª @code{\begin@{@}} ‚Ìã‚É‚  -‚é‚Æ@code{\begin@{@}}`@code{\end@{@}}ƒ‚[ƒh‚ŃRƒƒ“ƒg‹@”\‚ª“­‚¢‚Ä‚µ‚Ü‚¤‚Ì -‚Å’ˆÓ‚µ‚ĉº‚³‚¢B - -@node Cursor jump, Modifying/Deleting, Commenting out, Top -@comment node-name, next, previous, up -@chapter ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv -@cindex ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv[‚©‚ ‚»‚邵‚â‚ñ‚Ó] -@cindex prefix g - - -@menu -* ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv:: -* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®:: -* ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv:: -* ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv:: -* ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv:: -@end menu - -@node ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv, ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, Cursor jump, Cursor jump -@comment node-name, next, previous, up -@section ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv - - •¶‘’†‚Ì‚¢‚ë‚¢‚ë‚ÈꊂŠ- -@table @kbd -@item [prefix] g - @dots{} ‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv -@end table - -@noindent -‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌLa@TeX{}ƒRƒ}ƒ“ƒh‚ɑΉž‚·‚éꊂɃWƒƒƒ“ƒv -‚µ‚Ü‚·B‘ΉžŠÖŒW‚ª‘¶Ý‚·‚é‚ƉðŽß‚³‚ê‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B - -@itemize @bullet -@item @code{\begin@{@}} ©¨ @code{\end@{@}} -@item @code{%#BEGIN} ©¨ @code{%#END} -@item ‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒ ¨ ‘Ήž‚·‚éviewer/‚¨ŠG‚©‚«ƒc[ƒ‹‹N“® -@item @code{\label@{@}} ©¨ @code{\ref@{@}} -@item @code{\include(\input)} ¨ ‘Ήž‚·‚éƒtƒ@ƒCƒ‹ -@item @code{\bibitem@{@}} ©¨ @code{\cite@{@}} -@end itemize - - @code{\begin@{@}} ‚© @code{\end@{@}} ‚Ìs‚Å@kbd{[prefix] g}‚ð‰Ÿ‚·‚±‚Æ‚É -‚æ‚èA‘Ήž‚·‚é@code{end/begin}‚Ìs‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚à‚¿‚ë‚ñ‘Ήž‚·‚é‚à‚Ì‚ª -‚È‚¢ê‡‚̓Gƒ‰[‚É‚È‚è‚Ü‚·B‚Ü‚½‚±‚ê‚ÍA—̈æŒÅ’è‚Ì‚½‚ß‚Ì @code{%#BEGIN} ‚Æ -@code{%#END} ‚̃yƒA‚ɑ΂µ‚Ä‚à“¯—l‚É“®ì‚µ‚Ü‚·B‚È‚¨A@code{label/ref}‚â -@code{cite/bibitem}‘Ήž‚·‚é‚à‚Ì‚ª•Êƒtƒ@ƒCƒ‹‚É‚ ‚鎞‚ÍAƒWƒƒƒ“ƒvæ‚Æ‚È‚éƒtƒ@ -ƒCƒ‹‚ªƒI[ƒvƒ“‚³‚ê‚Ä‚¢‚È‚¯‚ê‚΂Ȃè‚Ü‚¹‚ñB@xref{%#notation}. -ƒƒCƒ“‚Ì .tex ƒtƒ@ƒCƒ‹‚Ì @code{\include@{chap1@}} ‚ȂǂɃJ[ƒ\ƒ‹‚ð‡‚킹A -@kbd{[prefix] g} ‚ð‰Ÿ‚·‚ÆA@file{chap1.tex} ‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B - -‚Ü‚½A - -@table @kbd -@item [prefix] 4 g - @dots{} •ÊƒEƒBƒ“ƒhƒE‚őΉžƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv -@end table - -@noindent -‚ð‰Ÿ‚·‚ÆA‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv‚ð•ÊƒEƒBƒ“ƒhƒE‚Ås‚¢‚Ü‚·B‚½‚¾‚µA -‚±‚Ì‹@”\‚Í @code{begin/end}, @code{%#BEGIN/%#END} ŠÔ‚̃Wƒƒƒ“ƒv‚ɑ΂µ‚Ä‚Í -(ˆÓ–¡‚ª‚È‚¢‚ÆŽv‚í‚ê‚é‚Ì‚Å)‹@”\‚µ‚È‚¢‚Ì‚Å’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B - -@node ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv, Cursor jump -@comment node-name, next, previous, up -@section ‚¨ŠG•`‚«ƒc[ƒ‹‹N“® -@cindex ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®[‚¨‚¦‚©‚«‚‚¤‚é‚«‚Æ‚¤] - -ã‹L‚Ìu‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒv‚Æ‚ÍA—Ⴆ‚Î -@code{\epsfile@{file=foo@}} ‚̂悤‚È‘}ŠGŽæ‚螂݃Rƒ}ƒ“ƒh‚Ì‚±‚Æ‚ÅA‚±‚Ìs‚É -ƒJ[ƒ\ƒ‹‚ð‡‚킹‚Ä@kbd{[prefix] g}‚ð‰Ÿ‚·‚Æ‚»‚̉摜ƒtƒ@ƒCƒ‹‚ÌŒ³‚Æ‚È‚Á‚½ƒtƒ@ -ƒCƒ‹‚ð‘Ήž‚·‚邨ŠG•`‚«ƒc[ƒ‹‚ð‹N“®‚µ‚ăI[ƒvƒ“‚µ‚Ü‚·B‹N“®‚·‚éƒc[ƒ‹‚Ì”»’è -‚͈ȉº‚̂悤‚É‚È‚³‚ê‚Ü‚·B - -@enumerate -@item -ƒJƒŒƒ“ƒgs‚ª•Ï” @code{YaTeX-processed-file-regexp-alist} ‚É’è‹`‚³ -‚ê‚Ä‚¢‚鳋K•\Œ»‚Ì‚¢‚¸‚ê‚©‚ƃ}ƒbƒ`‚µ‚½‚çAƒtƒ@ƒCƒ‹–¼‚É‘Š“–‚·‚é•”•ª‚ð -\\(\\)‚©‚甲‚«o‚µ‚ÄŠo‚¦‚Ä‚¨‚­(‰½”Ô–Ú‚Ì\\(\\)‚©‚Í•Ï”‚ÌŠeƒŠƒXƒg‚Ì cdr •”‚É -“ü‚ê‚Ä‚¨‚­)Bƒ}ƒbƒ`‚µ‚È‚¯‚ê‚Ή½‚à‚µ‚È‚¢B -@item -s––‚ÉA•Ï” @code{YaTeX-file-processor-alist} ‚É“o˜^‚³‚ê‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ª -u%ƒRƒ}ƒ“ƒhv ‚̂悤‚É‘‚¢‚Ä‚ ‚ê‚΋­§“I‚ÉuƒRƒ}ƒ“ƒh ƒtƒ@ƒCƒ‹–¼.Šg’£Žqv‚ð -‹N“®B -@item -‚È‚¯‚ê‚ÎA•Ï” @code{YaTeX-file-processor-alist} ‚ÌŠeƒŠƒXƒg‚Ìcdr•”‚É“ü‚Á‚Ä -‚¢‚éŠg’£Žq‚ðuƒtƒ@ƒCƒ‹–¼v‚ÌŒã‚ë‚É‘«‚µ‚½ƒtƒ@ƒCƒ‹‚ª‘¶Ý‚·‚é‚©‡ŽŸ’²‚ׂÄA‘¶ -Ý‚µ‚½ê‡car•”‚É“ü‚Á‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éB -@item -ˆÈã‚Ç‚ê‚©‚Ƀ}ƒbƒ`‚µ‚È‚¯‚ê‚΂ ‚«‚ç‚ß‚éB -@end enumerate - - -•Ï” @code{YaTeX-file-processor-alist} ‚Æ•Ï” -@code{YaTeX-file-processor-alist} ‚ÌÝ’è•û–@‚ɂ‚¢‚Ä‚Í‚»‚ꂼ‚ê‚Ì•Ï”‚ɂ‚¢ -‚Ä describe-variable ‚µ‚Äà–¾‚ð“Ç‚ñ‚ʼnº‚³‚¢B‚¤‚Ü‚­Ý’è‚·‚é‚ÆA‰æ‘œƒtƒ@ƒC -ƒ‹‚É‚©‚¬‚炸A”CˆÓ‚ÌŒ`Ž®‚̃tƒ@ƒCƒ‹‚ð”CˆÓ‚̃vƒƒZƒbƒT‚ň—‚·‚éƒRƒ}ƒ“ƒh‚ðŠÈ -’P‚ɌĂÑo‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B - -@node ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, Cursor jump -@comment node-name, next, previous, up -@section ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv - -@file{chap1.tex}‚̂悤‚ȃTƒuƒtƒ@ƒCƒ‹‚ÅA - -@table @kbd -@item [prefix] ^ - @dots{} ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ɃWƒƒƒ“ƒv -@item [prefix] 4 ^ - @dots{} •ÊƒEƒBƒ“ƒhƒE‚ŃƒCƒ“ƒtƒ@ƒCƒ‹‚ɃWƒƒƒ“ƒv -@end table - -@noindent -‚ð‰Ÿ‚·‚ÆAƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì•ÒWƒoƒbƒtƒ@‚ÉØ‘Ö‚¦‚Ü‚·B‚à‚µAƒƒCƒ“ƒtƒ@ƒCƒ‹‚ð -ƒI[ƒvƒ“‚µ‚Ä‚¢‚È‚¢ê‡‚ÍAƒJƒŒƒ“ƒgƒfƒBƒŒƒNƒgƒŠ‚©‚ç’T‚µ‚ÄŽ©“®“I‚ɃI[ƒvƒ“‚µ -‚Ü‚·B - -@node ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv, ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, Cursor jump -@comment node-name, next, previous, up -@section ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv - -‚³‚ç‚ÉŒ»Ý‚̊‹«‚ð’PˆÊ‚Æ‚µ‚Ä‹@”\‚·‚éƒRƒ}ƒ“ƒh‚Ɉȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B - -@cindex ŠÂ‹«‚Ì擪‚Ö[‚©‚ñ‚«‚悤‚Ì‚¹‚ñ‚Æ‚¤‚Ö] -@cindex ŠÂ‹«‚Ì––”ö‚Ö[‚©‚ñ‚«‚悤‚̂܂‚ЂÖ] -@cindex ŠÂ‹«‚ðƒ}[ƒN[‚©‚ñ‚«‚悤‚ð‚Ü‚ ‚­] -@cindex M-C-a -@cindex M-C-e -@cindex M-C-@@ -@table @kbd -@item M-C-a - @dots{} ŠÂ‹«‚Ì擪(@code{\begin})‚ÖƒWƒƒƒ“ƒv -@item M-C-e - @dots{} ŠÂ‹«‚Ì––”ö(@code{\end})‚ÖƒWƒƒƒ“ƒv -@item M-C-@@ - @dots{} ŠÂ‹«‘S‘Ì‚ðƒ}[ƒN -@end table - -ã‹L‚̃Rƒ}ƒ“ƒh‚Í’Êí‚Ì@kbd{[prefix]}ƒL[‚Å‚Í‚È‚­@kbd{META}ƒL[‚ðƒvƒŠƒtƒBƒN -ƒX‚Æ‚µ‚Ä‹@”\‚·‚é‚Ì‚Å‚²’ˆÓ‰º‚³‚¢B - -@node ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv, , ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, Cursor jump -@comment node-name, next, previous, up -@section ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv - -–ì’¹‚͕⊮“ü—Í‚µ‚½ˆÊ’u‚ðí‚ɃŒƒWƒXƒ^ @code{3}‚É•Û‘¶‚µ‚Ä‚¢‚Ü‚·B -“ü—Í“r’†‚Å”@‰½‚È‚éƒtƒ@ƒCƒ‹‚Ì”@‰½‚È‚éˆÊ’u‚És‚Á‚½‚Æ‚µ‚Ä‚àA -@kbd{C-x j 3}(@code{jump-to-register})‚ðŽg‚Á‚Ä’¼‚¿‚ÉÅŒã‚̕⊮“ü—͈ʒu‚É–ß -‚邱‚Æ‚ª‚Å‚«‚Ü‚·B - -@node Modifying/Deleting, Filling, Cursor jump, Top -@comment node-name, next, previous, up -@chapter •ÏX/íœ -@cindex •ÏX/íœ[‚Ö‚ñ‚±‚¤/‚³‚­‚µ‚æ] -@cindex prefix c -@cindex prefix k - - Šù‚É“ü—Í‚³‚ê‚Ä‚¢‚é La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX/휂̂½‚߂Ɉȉº‚Ì‹@”\‚ª—pˆÓ -‚³‚ê‚Ä‚¢‚Ü‚·B - -@table @kbd -@item [prefix] c - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX -@item [prefix] k - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ -@end table - - -‚±‚ê‚ç‚̃Rƒ}ƒ“ƒh‚ÍAƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éꊂɂæ‚Á‚Ä“®ì‚ðŒˆ’è‚·‚é‚Ì‚Å’ˆÓ‚µ -‚ĉº‚³‚¢B - -@menu -* Changing LaTeX command:: La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX -* Killing LaTeX command:: La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ -@end menu - -@node Changing LaTeX command, Killing LaTeX command, Modifying/Deleting, Modifying/Deleting -@comment node-name, next, previous, up -@section La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX - -•ÏX‚µ‚½‚¢ La@TeX{} ƒRƒ}ƒ“ƒh‚ɃJ[ƒ\ƒ‹‚ð‡‚킹‚Ä @kbd{[prefix] c} -‚ð‰Ÿ‚·‚Æ‚»‚̃Rƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚È‚Ç‚ð—p‚¢‚ÄŽèŒy‚É•Ï‚¦‚邱‚Æ‚ª‚Å‚«‚Ü‚·B -@kbd{[prefix] c} ‚Å•ÏX‚Å‚«‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B - -@itemize -@item @code{begin/end} ‚̊‹«–¼ -@item sectionŒ^ƒRƒ}ƒ“ƒh‚̃Rƒ}ƒ“ƒh–¼ -@item sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø” -@item sectionŒ^ƒRƒ}ƒ“ƒh‚̃IƒvƒVƒ‡ƒ“ƒpƒ‰ƒ[ƒ^([]‚ň͂܂ꂽ‚à‚Ì) -@item largeŒ^ƒRƒ}ƒ“ƒh -@item (ƒCƒ[ƒW•âŠ®‚Å“ü—͉”\‚È)”Ž®ƒ‚[ƒhê—p‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh -@end itemize - - •Ï‚¦‚½‚¢sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”‚ª‚³‚ç‚É La@TeX{} ƒRƒ}ƒ“ƒh‚ðŠÜ‚ÞꇂÍA -‚»‚̈ø”‚ðˆÍ‚Þ’†Š‡ŒÊ‚Ìã‚Å @kbd{[prefix] c} ‚ð‰Ÿ‚·‚±‚Æ‚Å’†‚̃Rƒ}ƒ“ƒh‚ð•ÏX -‘ÎÛ”»’è‚©‚眊O‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B - -@cindex ŠÂ‹«–¼‚Ì•ÏX[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ö‚ñ‚±‚¤] - -@node Killing LaTeX command, , Changing LaTeX command, Modifying/Deleting -@comment node-name, next, previous, up -@section La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ - -@kbd{[prefix] k} ‚Í‹N“®‚·‚éˆÊ’u‚É‚æ‚è -ŽŸ‚̂悤‚È“®ì‚ðs‚¢‚Ü‚·B -@cindex ŠÂ‹«‚Ìíœ[‚©‚ñ‚«‚悤‚Ì‚³‚­‚µ‚æ] - - -@example -‹N“®ˆÊ’u “®ì -\begin, \end‚Ìs @code{\begin\end}ƒyƒA‚Ìíœ -%#BEGIN, %#END ‚Ìs %#BEGIN,%#ENDƒyƒA‚Ìíœ -sectionŒ^ƒRƒ}ƒ“ƒh‚Ìã(’†) sectionŒ^ƒRƒ}ƒ“ƒh‚Ìíœ -ƒtƒHƒ“ƒgŽw’芇ŒÊ‚Ìã ƒtƒHƒ“ƒgŽw’è‚Ìíœ -Š‡ŒÊ‚Ì㠑΂ð‚È‚·Š‡ŒÊ‚Ìíœ -@end example - - -@code{\begin, \end} ‚¨‚æ‚Ñ @code{%#BEGIN, %#END} ‚ð휂·‚éê‡A -@code{\begin, \end} ‚â @code{%#BEGIN, %#END} ‚Ì‘¶Ý‚·‚és‚Í -‚܂邲‚Æ휂³‚ê‚é‚Ì‚ÅA‚»‚ê‚ç‚̈ês‚É @code{\begin} ‚È‚Ç‚ð“ñ‚ˆÈã˜A‚Ë‚Ä -‘‚©‚È‚¢‚悤‚É’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B -ã‹L‚Ì‚à‚Ì‚Í‚·‚ׂĖ{•¶‚ðˆÍ‚¤u—eŠív‚ð휂·‚é‚悤‚É“­‚«‚Ü‚·‚ªA -universal-argument (@kbd{C-u}) ‚ð‘Å‚Á‚½Œã‚Å@kbd{[prefix] k}‚ðƒ^ƒCƒv‚·‚é‚ÆA -‚»‚ꂼ‚ê‚Ìu—eŠív‚ÉŠÜ‚Ü‚ê‚éu’†gv‚àˆê‹C‚É휂µ‚Ü‚·BˆÈ‰º‚Ì—á‚ðŽQl‚É‚µ -‚ĉº‚³‚¢B - -@example - Œ³‚̃eƒLƒXƒg: [prefix] k C-u [prefix] k - –{•¶\footnote@{‹r’@}‚Å‚·B –{•¶‹r’‚Å‚·B –{•¶‚Å‚·B - ª(ƒJ[ƒ\ƒ‹ˆÊ’u) -@end example - -@node Filling, Includeonly, Modifying/Deleting, Top -@comment node-name, next, previous, up -@chapter Œ…‘µ‚¦ -@cindex Œ…‘µ‚¦[‚¯‚½‚»‚낦] - -@section item‚ÌŒ…‘µ‚¦ -@cindex item‚È‚Ç‚ÌŒ…‘µ‚¦[item‚È‚Æ‚Ì‚¯‚½‚»‚낦] -@cindex prefix i - - itemize ŠÂ‹«’†‚É‚ ‚é@code{\item}‚Ì€–Ú(•¶Í)‚ª•¡”s‚É“n‚éꇂÉA€ -–Ú‚Ì擪‚ðŒ…‘µ‚¦‚µ‚½‚¢ê‡‚É‚ÍA - -@c @table @kbd -@c @item [prefix] i -@c @dots{} item‚ÌŒ…‘µ‚¦ -@c @end table - -@table @kbd -@item M-q - @dots{} Œ…‘µ‚¦ -@end table -@cindex NTT-jTeX[‚¦‚Ê‚Ä‚¢‚¢‚Ä‚¢‚¢‚µ‚¦‚¢‚­] - -@noindent -‚É‚æ‚Á‚ÄA‚»‚Ì item ‚̃Cƒ“ƒfƒ“ƒg‚Ì[‚³‚ɉž‚¶‚Ä fill ‚³‚ê‚Ü‚·B‚È‚¨AŒÃ‚¢ -NTT jTeX ‚ðŽg—p‚µ‚Ä‚¢‚éꇂɂÍALisp •Ï”@code{NTT-jTeX}‚ð@code{t}‚ɃZƒb -ƒg‚µ‚ĉº‚³‚¢B - -@cindex YaTeX-item-regexp - ‚±‚Ì‚Æ‚«A•Ï”@code{YaTeX-item-regexp}‚Ì’l(•W€‚Å‚Í @code{"\\\\item"})‚ð -€–ÚŽw’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ»‚Æ‚µ‚ÄŒŸõ‚ÉŽg—p‚µ‚Ü‚·Bitemize ŠÂ‹«‚ÅA“ÆŽ©‚̃R -ƒ}ƒ“ƒh‚ð’è‹`‚µ‚Ä€–Ú‚ð—ñ‹“‚µ‚Ä‚¢‚éê‡(—Ⴆ‚Î@code{\underlineitem})‚ÍA -@file{~/.emacs} ‚ÅŽŸ‚̂悤‚ÉŽw’肵‚ĉº‚³‚¢B - -@lisp - (setq YaTeX-item-regexp - "\\(\\\\\\(sub\\)*item\\)\\|\\(\\\\underlineitem\\)") -@end lisp - - -‚±‚Ì•Ï”‚ÌŽw’è‚ÌŽd•û‚ª‚æ‚­•ª‚©‚ç‚È‚¢ê‡‚ÍA“ÆŽ©‚Ì€–Ú—ñ‹“ƒRƒ}ƒ“ƒh‚Ì–¼‘O‚ð -@code{@code{"\item"}‚ÅŽn‚Ü‚é‚à‚Ì‚É‚µ‚ĉº‚³‚¢(—Ⴆ‚Î"\itembf"})B - -–ì’¹‚Ì @kbd{M-q} ‚Å‚Í @code{\item} ‚ðŠÂ‹«‚ɉž‚¶‚Ĉȉº‚̂悤‚Éuƒnƒ“ƒOƒCƒ“ -ƒfƒ“ƒgv‚µ‚Ü‚·B - -@example -itemize, enumerateŠÂ‹«: - >\item[‚Ù‚°‚Ù‚°] ‰pŒê‚Å‚ÍA“Á‚ɈӖ¡‚Ì‚È‚¢’PŒê‚ð `foo' ‚Å‚ ‚ç‚킵‚Ü - > ‚·‚ªA‚±‚ê‚Ì“ú–{Œê”Å‚Æ‚à‚¢‚¦‚é’PŒê‚ªu‚Ù‚°‚Ù‚°v - > ‚Å‚·B -descriptionŠÂ‹«: - > \item[‚Ö‚ë‚Ö‚ë] u‚Ù‚°‚Ù‚°v‚ð‚Å‚½‚ç‚ß‚ª’PŒê‚Æ‚µ‚ÄŽg‚Á‚½Žž‚ÉA‘æ - > 2‚Ì‚Å‚½‚ç‚ß‚È’PŒê‚Æ‚µ‚Äu‚Ö‚ë‚Ö‚ëv‚ªŽg‚í‚ê‚邱‚Æ‚ª‘½ - > ‚¢‚悤‚Å‚·B -@end example - -@section ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦ -@cindex ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦[‚Í‚ç‚­‚ç‚Ó‚Ì‚¯‚½‚»‚낦] -@cindex M-q - - itemizeŠÂ‹«ˆÈŠO‚ł̃pƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦(fill)‚ÍAŠî–{“I‚É‘¼‚̃‚[ƒh‚Æ“¯‚¶ -‚悤‚É‹@”\‚µ‚Ü‚·‚ªAverbatimŠÂ‹«‚âAtabularŠÂ‹«‚È‚ÇŒ…‘µ‚¦‚ð‚·‚é‚ƔߎS‚Èó -‹µ‚É‚È‚é‚悤‚Ȋ‹«’†‚Å‚Í‹@”\‚µ‚Ü‚¹‚ñB‚Ü‚½A\verb ‚ÅŠ‡‚Á‚Ä‚ ‚é‚à‚Ì‚ÍŒˆ‚µ‚Ä -s•ªŠ„‚³‚ê‚Ü‚¹‚ñ(•Ï” @code{YaTeX-verb-regexp} ‚ŧŒä) )B‚³‚ç‚ÉAˆêŽž“I‚É -ƒCƒ“ƒfƒ“ƒg‚Ì[‚³‚ð•Ï‚¦‚Ä‚ ‚é‰ÓŠ‚Å‚ÍA‚»‚̃Cƒ“ƒfƒ“ƒg‚Ì擪‚Å@kbd{M-q}‚ð‰Ÿ -‚·‚±‚Æ‚É‚æ‚è fill-prefix ‚ð‚¢‚¿‚¢‚¿•ÏX‚µ‚È‚­‚ÄŒ…‘µ‚¦‚ª‚Å‚«‚Ü‚·B - - -@node Includeonly, What column, Filling, Top -@comment node-name, next, previous, up -@chapter ŸŽè‚Éincludeonly -@cindex ŸŽè‚Éincludeonly[‚©‚‚ĂÉincludeonly] -@cindex includeonly - - ƒtƒ@ƒCƒ‹‚𕪊„‚µ‚Ä•¶Í‚ð“ü—Í‚µ‚Ä‚¢‚鎞‚É‚ÍAƒƒCƒ“ƒtƒ@ƒCƒ‹’†‚É - -@example - \includeonly@{Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹–¼@} -@end example - -@noindent -‚̂悤‚É‘‚¢‚Ä‚¨‚­‚±‚Æ‚ÅAƒ^ƒCƒvƒZƒbƒg‚ÌŽžŠÔ‚ðß–ñ‚Å‚«‚Ü‚·‚ªA‚¿‚å‚Á‚Æ‘¼‚Ì -ƒtƒ@ƒCƒ‹‚ðŽè’¼‚µ‚µ‚½‚¢Žž‚É‚Í -@cindex ‘¼‚̃tƒ@ƒCƒ‹‚ÌŽè’¼‚µ[‚Ù‚©‚Ì‚Ó‚ ‚¢‚é‚Ì‚Ä‚È‚¨‚µ] - -@example - \includeonly@{‚¿‚å‚Á‚ÆŽè’¼‚µ‚µ‚½‚¢ƒtƒ@ƒCƒ‹–¼@} -@end example - - -‚Æ‘‚«’¼‚³‚È‚¯‚ê‚΂Ȃ炸ŽèŠÔ‚ª‚©‚©‚è‚Ü‚·B–ì’¹‚Å‚ÍŒ»Ý•ÒW‚µ‚Ä‚¢‚éƒtƒ@ƒCƒ‹ -–¼‚ªƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì@code{\includeonly}‚É‚È‚¢ê‡‚É‚ÍŽ©“®“I‚É‚±‚ê‚ðŒŸo‚µA -ŽŸ‚ÌŽwŽ¦‚ð‹Â‚¬‚Ü‚·B - -@example - A)dd R)eplace %)comment? -@end example - - -Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚ð @code{\includeonly} ‚̃ŠƒXƒg‚ɉÁ‚¦‚½‚¢Žž‚É‚Í@kbd{a} -‚ðAŒ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚¾‚¯‚ð @code{\includeonly} ‚É‚µ‚½‚¢Žž‚Í@kbd{r}‚ðA -@code{\includeonly} ‚Ìs‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚Ä–³Œø‰»‚µ‚½‚¢Žž‚É‚ÍA@kbd{%}‚ð -‚»‚ꂼ‚ꉟ‚µ‚ĉº‚³‚¢B - -@node What column, Intelligent newline, Includeonly, Top -@comment node-name, next, previous, up -@chapter ‚±‚±‚Í‚Ç‚±? -@cindex ‚±‚±‚Í‚Ç‚±?[‚±‚±‚Í‚Æ‚±?] -@cindex prefix & -@cindex •¡ŽG‚Ètabular[‚Ó‚­‚³‚‚Ètabular] - - €–Ú”‚Ì‘½‚¢ tabular ‚È‚Ç‚ð‚½‚­‚³‚ñ‘‚¢‚Ä‚¢‚é‚Ɖº‚Ì•û‚Ìs‚ÅA‚¢‚Ü‘‚¢‚Ä -‚¢‚錅‚ª‚Ç‚±‚ɑΉž‚·‚é‚Ì‚©‚í‚©‚ç‚È‚­‚È‚Á‚Ä‚µ‚Ü‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·B—Ⴆ‚ÎAˆÈ -‰º‚̂悤‚È tabular ‚É‚¨‚¢‚ÄA - -@example - \begin@{tabular@}@{|c|c|c|c|c|c|c|c|@}\hline - Ž–¼&Š‘®&§&ZŠ&“d˜b&FAX&‹AÈæ&‹AÈæ“d˜b\\ \hline - –îã“ñ˜Y & 6 & 223 & ‰¡•lŽs`–k‹æ“ú‹g & xxx-yyy & - zzz-www & ƒgƒ“ƒK & 9876-54321 \\ - “ú‹g¬‘m & 2 & \multicolumn@{2@}@{c|@}@{‹³‚¦‚È‚¢@} - &&&(???) - \\ \hline - \end@{tabular@} -@end example - - -(???)‚Ì•”•ª‚ª‚Ç‚Ì€–Ú‚È‚Ì‚©‚·‚®‚É”»’f‚·‚é‚͓̂‚¢‚Å‚µ‚傤B‚±‚ñ‚ÈŽž‚ÍA - -@table @kbd -@item [prefix] & - @dots{} Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦ -@end table -@cindex Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦[‚¯‚ñ‚³‚¢‚Ì‚©‚ç‚ނЂ悤‚µ] - -@noindent -‚ð‰Ÿ‚·‚ƃJ[ƒ\ƒ‹ˆÊ’u‚̃Jƒ‰ƒ€‚ª‚Ç‚Ì€–Ú‚ÉŠY“–‚·‚é‚©‚ðƒ~ƒjƒoƒbƒtƒ@‚É•\Ž¦‚µ‚Ü -‚·Btabular/arrayŠÂ‹«‚Ì‘æ1s–Ú‚ð€–Ú–¼‚Ì•À‚Ñ‚Æ‚Ý‚È‚µ‚đΉž‚·‚é‚à‚Ì‚ð’T‚µ‚Ü -‚·B‚à‚µ€–Ú–¼‚Æ‚µ‚Ä•Ê‚Ì‚à‚Ì‚ð•\Ž¦‚µ‚Ä—~‚µ‚¢ê‡‚ÍAs“ª‚ð@code{%}‚É‚µ‚ă_ -ƒ~[‚Ì€–Ú•À‚Ñ‚ðì‚Á‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B - -@node Intelligent newline, Usepackage cheker, What column, Top -@comment node-name, next, previous, up -@chapter ‚¨‚Ü‚©‚¹‰üs -@cindex ‚¨‚Ü‚©‚¹‰üs[‚¨‚Ü‚©‚¹‚©‚¢‚«‚悤] -@cindex &“ü—Í[&‚ɂ䂤‚è‚æ‚­] - - tabular[*], array, itemize, enumerate, tabbing ŠÂ‹«‚ðbeginŒ^•âŠ®‚Å“ü—Í‚µ -‚½ŽžA‚Ü‚½‚ÍŠeŠÂ‹«“à‚Å - -@table @kbd -@item ESC RET - @dots{} ‚¨‚Ü‚©‚¹‰üs -@end table - - -‚ð‰Ÿ‚·‚ÆA‚»‚̊‹«‚ɉž‚¶‚½sƒGƒ“ƒgƒŠ‚ðŽŸ‚Ìs‚É‘}“ü‚µ‚Ü‚·(beginŒ^•âŠ®Žž‚ÉŽ© -“®‘}“ü‚³‚ꂽƒGƒ“ƒgƒŠ‚ª•s—v‚Èê‡‚Í undo ‚É‚æ‚Á‚ÄÁ‹Ž‚Å‚«‚Ü‚·)B—Ⴆ‚ÎA -tabularŠÂ‹«‚Å‚ÍA‚»‚̊‹«‚̃Jƒ‰ƒ€”‚ɑΉž‚µ‚½ŒÂ”‚Ì @code{&} ‚ɉÁ‚¦As–– -‚Ì @code{\\} ‚ð“ü‚ê‚Ü‚·B‚±‚ÌŽž‚»‚êˆÈ‘O‚É @code{\hline} ‚ª‚ ‚ê‚΂»‚ê‚à•t‚¯ -‰Á‚¦‚Ü‚·BŠÂ‹«‚Æ‚»‚ê‚ɉž‚¶‚ÄŽ©“®“ü—Í‚·‚é‚à‚̂̑Ήž‚͈ȉº‚̂悤‚É‚È‚è‚Ü‚·B - -@itemize -@item @code{tabular}, @code{tabular*}, @code{array} - - ƒJƒ‰ƒ€”-1 ‚¾‚¯‚Ì @code{&} ‚Æ @code{\\}B•K—v‚ɉž‚¶‚Ä @code{\hline} - -@item @code{tabbing} - - ˆês–Ú‚Å’è‹`‚µ‚Ä‚¢‚é @code{\=} ‚Æ“¯‚¶ŒÂ”‚Ì @code{\>}B - -@item @code{itemize}, @code{enumerate}, @code{description}, @code{list} - - @code{\item} ‚Ü‚½‚Í @code{item[]} -@end itemize - - tabular ŠÂ‹«‚Ì—á‚̂悤‚ÉA–{‹@”\‚ÍŠeŠÂ‹«‚̈ês–Ú‚Ì“à—e‚ðŽQl‚É‚µ‚Ä“®ì‚· -‚é‚Ì‚ÅA‚È‚é‚ׂ­“ñs–ÚˆÈ~‚ŌĂÑo‚·‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B - - ‚à‚µA‚»‚Ì‘¼‚̊‹«A—Ⴆ‚Î @code{foo}A‚ɑ΂µ‚Ä@code{‚¨‚Ü‚©‚¹‰üs}‚ð“®ì -‚³‚¹‚½‚¢Žž‚ÍA@code{YaTeX-intelligent-newline-foo} ‚Æ‚¢‚¤–¼‘O‚ÌŠÖ”‚ð’è‹` -‚µ‚Ü‚·B’è‹`‚µ‚½ŠÖ”‚ÍAŒ»Ý‚Ìs‚ɉüs‚ð‘}“ü‚µ‚½’¼Œã‚Ìs“ª‚̈ʒu‚ŌĂ΂ê‚Ü -‚·BŠÖ” @code{YaTeX-indent-line} ‚ðŒÄ‚Ô‚ÆŒ»Ý‚̊‹«‚̃lƒXƒg‚ɉž‚¶‚½[‚³‚É -ƒCƒ“ƒfƒ“ƒg‚³‚ê‚é‚Ì‚ÅA‚±‚ê‚ðŒÄ‚ñ‚Å‚©‚牽‚©‚ð‘}“ü‚·‚é‚悤‚ȃR[ƒh‚ð‘‚­‚Æ‚æ -‚¢‚Å‚µ‚傤B@file{yatexenv.el}“à‚ÌŠÖ” -@code{YaTeX-intelligent-newline-itemize} ‚Ì’è‹`‚È‚Ç‚ðŽQl‚É‚µ‚Ä‚­‚¾‚³‚¢B - - -@node Usepackage cheker, Changing mode of YaTeX, Intelligent newline, Top -@comment node-name, next, previous, up -@chapter æ‰ñ‚èusepackage -@cindex æ‰ñ‚èusepackage[‚³‚«‚Ü‚í‚è] - - beginŒ^AsectionŒ^AmaketitleŒ^A‚¢‚¸‚ê‚©‚ÌLaTeX2eƒ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚ÆA -‚»‚̃}ƒNƒ‚Ì—˜—p‚ÉŠO•”ƒpƒbƒP[ƒW‚ð•K—v‚Æ‚·‚éê‡A‚»‚̃pƒbƒP[ƒW‚ð -–{•¶’†‚Å @code{\usepackage@{@}} ‚µ‚Ä‚¢‚é‚©‚Ç‚¤‚©‚𒲸‚µA‚à‚µ‚µ‚Ä‚¢‚È‚¯‚ê‚Î -ƒvƒŠƒAƒ“ƒuƒ‹‚ɑΉž‚·‚éƒpƒbƒP[ƒW‚ðˆø”‚É‚µ‚½ @code{\usepackage} •¶‚ð -(Šm”FŒã‚É)‘}“ü‚µ‚Ü‚·B - - ‚½‚¾‚µ‚±‚Ì‹@”\‚ª“­‚­‚½‚ß‚É‚ÍAƒpƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚Å’è‹`‚³‚ê‚Ä‚¢‚éƒ}ƒNƒ -ŒQ‚ðalist‚ÌŒ`Ž®‚Å•Ï” @code{YaTeX-package-alist-private} ‚Éݒ肵‚Ä‚¨‚­•K -—v‚ª‚ ‚è‚Ü‚·B - -@node Changing mode of YaTeX, Online help, Usepackage cheker, Top -@comment node-name, next, previous, up -@chapter –ì’¹‚Ì“®ìƒ‚[ƒhØ‚è‘Ö‚¦ -@cindex ƒ‚[ƒhØ‚è‘Ö‚¦[‚à‚¤‚Æ‚«‚è‚©‚¦] -@cindex prefix w - -@table @kbd -@item [prefix] w - @dots{} –ì’¹“®ìƒ‚[ƒhØ‚è‘Ö‚¦ƒƒjƒ…[ -@end table - -@noindent -‚Å–ì’¹Ž©g‚Ì“®ì‚ðŒˆ’è‚·‚éˆÈ‰º‚̃‚[ƒh‚ðØ‚è‘Ö‚¦‚Ü‚·B - -@itemize @bullet -@item C³ƒ‚[ƒh -@item –ì’¹”Ž®ƒ‚[ƒh -@end itemize - -C³ƒ‚[ƒh‚ÍAŠJ‚«Š‡ŒÊ“ü—ÍŽž‚̈—‚ðƒRƒ“ƒgƒ[ƒ‹‚µAC³ƒ‚[ƒhON‚ÌŽž‚ÍŠJ‚« -Š‡ŒÊ‚Ì“ü—Í‚ÍŠJ‚«Š‡ŒÊ‚Ì‚Ý‚Ì“ü—Í‚É‚È‚èAC³ƒ‚[ƒhOFF‚ÌŽž‚ÍŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚¾ -‚¯‚ŕ‚¶Š‡ŒÊ‚Ü‚Å“ü—Í‚µ‚Ü‚·BƒfƒtƒHƒ‹ƒg(‹N“®Žž)‚ÌÝ’è‚Í@emph{OFF}‚Å‚·B - - –ì’¹”Ž®ƒ‚[ƒh‚ÍA•Ï” @code{YaTeX-auto-math-mode} ‚ª @code{nil} ‚ÌŽž‚Ì -‚Ý—LŒø‚ÅA‚±‚Ì‚Æ‚«@kbd{;}‚â@kbd{:}‚ð‰Ÿ‚µ‚½Žž(@ref{Image completion}ŽQÆ)‚ÉA -‚ǂ̂悤‚ȃCƒ[ƒW•âŠ®‚ð‹@”\‚³‚¹‚é‚©A’Êí‚̃L[‚Æ‚µ‚Ä‹@”\‚³‚¹‚é‚©‚ðŽè“®‚Å -Ø‚è‘Ö‚¦‚Ü‚·BŽ©“®”»’肪’x‚¢ƒ}ƒVƒ“‚Å‚Í@code{YaTeX-auto-math-mode} -@code{nil}‚ɃZƒbƒg‚µA–ì’¹”Ž®ƒ‚[ƒh‚ðŽè“®‚ÅØ‚è‘Ö‚¦‚é‚Æ—Ç‚¢‚Å‚µ‚傤B - - -@node Online help, Inclusion hierarchy browser, Changing mode of YaTeX, Top -@comment node-name, next, previous, up -@chapter ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv -@cindex ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv[‚¨‚ñ‚ç‚¢‚ñ‚Ö‚é‚Ó] -@cindex apropos -@cindex ƒL[ƒ[ƒhŒŸõ[‚«‚¢‚í‚ ‚Æ‚¯‚ñ‚³‚­] -@cindex prefix ? -@cindex prefix / - - Žg‚¨‚¤‚Æ‚·‚é La@TeX{} ƒRƒ}ƒ“ƒh‚Ì—p–@‚ª‚æ‚­•ª‚©‚ç‚È‚¢Žž‚ÍAƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ -ƒv‚ð‚Ђ«‚Ü‚µ‚傤Bƒwƒ‹ƒv‚ÉŠÖ‚·‚éƒL[‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B - -@table @kbd -@item [prefix] ? - @dots{} ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv -@item [prefix] / - @dots{} ƒIƒ“ƒ‰ƒCƒ“apropos -@end table - -@section ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv -@cindex ƒOƒ[ƒoƒ‹ƒwƒ‹ƒv[‚­‚남‚Í‚é‚Ö‚é‚Ó] -@cindex ƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒv[‚Ó‚ç‚¢‚Ö‚¦‚Æ‚Ö‚é‚Ó] -@cindex YaTeX-help-file -@cindex YaTeX-help-file-private - - uƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒvv‚ÍAˆê”Ê“I‚È La@TeX{} ƒRƒ}ƒ“ƒh(ƒfƒtƒHƒ‹ƒg‚ŃJ[ƒ\ƒ‹ -ˆÊ’u‚̃Rƒ}ƒ“ƒh)‚ɑ΂·‚éà–¾‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B‚±‚ÌŽžŽQÆ‚³‚ê‚éƒw -ƒ‹ƒv—pƒtƒ@ƒCƒ‹‚É‚ÍuƒOƒ[ƒoƒ‹ƒwƒ‹ƒvv‚Æuƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒvv‚Ì“ñŽí—Þ‚ª‚  -‚èA‘OŽÒ‚Í La@TeX{} ‚Ì•W€ƒRƒ}ƒ“ƒh‚ÌŽå‚È‚à‚Ì‚Ìà–¾‚ðŠÜ‚Þƒtƒ@ƒCƒ‹‚ÅA•Ï” -@code{YaTeX-help-file}‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚̃tƒ@ƒCƒ‹‚Í’ÊíŒö‹¤‚ÌêŠ(ƒf -ƒtƒHƒ‹ƒg‚Å@code{$EMACSEXECPATH})‚É’u‚©‚êA’N‚à‚ª‚»‚Ì“à—e‚ðXV‚Å‚«‚é‚悤‚É -‘Sˆõ‚É‘‚«ž‚ÝŒ ‚ª—^‚¦‚ç‚ê‚é‚ׂ«‚à‚Ì‚Å‚·BŒãŽÒ‚ÍA”ñ•W€‚à‚µ‚­‚ÍŒÂl“I‚ȃ} -ƒNƒ’è‹`‚ÉŠÖ‚·‚éà–¾‚ª‘‚©‚ê‚Ä‚¢‚éƒtƒ@ƒCƒ‹‚ÅA•Ï” -@code{YaTeX-help-file-private}‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚¿‚ç‚̓†[ƒU‚̃z[ƒ€ƒfƒB -ƒŒƒNƒgƒŠ‚̉º‚È‚Ç‚É’u‚©‚ê‚Ü‚·B - -@section ƒIƒ“ƒ‰ƒCƒ“apropos - - uƒIƒ“ƒ‰ƒCƒ“aproposv‚Í GNU Emacs ‚Ì apropos ‚Æ“¯—lAƒ†[ƒU‚ªŽw’肵‚½ƒL[ -ƒ[ƒh‚ðà–¾•¶‚ÉŠÜ‚Þ€–Ú‚·‚ׂĂð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B - - ‚à‚µA’²‚ׂ悤‚Æ‚µ‚½La@TeX{}ƒRƒ}ƒ“ƒh‚ɑ΂·‚éà–¾‚ªƒwƒ‹ƒvƒtƒ@ƒCƒ‹’†‚ÉŒ©‚ -‚©‚ç‚È‚©‚Á‚½ê‡‚ÍAà–¾•¶‚Ì“ü—Í‚ð‹‚ß‚Ä‚­‚é‚Ì‚ÅA‰Â”\‚Å‚ ‚ê‚ÎŽQl‘‚È‚Ç‚ð -’²‚ׂĂ»‚̃Rƒ}ƒ“ƒh‚Ìà–¾‚ð“ü—Í‚µ‚Ä‚­‚¾‚³‚¢B‚à‚µA‚È‚É‚©•W€“I‚ȃRƒ}ƒ“ƒh‚É -‘΂·‚éà–¾‚ð‘‚¢‚½‚È‚ç‚΂º‚ÐŽ„‚Ü‚Å‚»‚Ìà–¾‚ð‚¨‘—‚艺‚³‚¢BŽŸ‰ñ‚Ì”z•z‚ÉŠÜ‚ß -‚½‚¢‚ÆŽv‚¢‚Ü‚·B - -@node Inclusion hierarchy browser, Cooperation with other packages, Online help, Top -@comment node-name, next, previous, up -@chapter ƒCƒ“ƒNƒ‹[ƒh\‘¢ƒuƒ‰ƒEƒU -@cindex ƒCƒ“ƒNƒ‹[ƒh\‘¢[‚¢‚ñ‚­‚邤‚Æ‚±‚¤‚»‚¤] -@cindex prefix d - -•¡”‚̃tƒ@ƒCƒ‹‚É•ªŠ„‚µ‚Ä‚¢‚éƒhƒLƒ…ƒƒ“ƒg‚ð‘‚¢‚Ä‚¢‚éê‡A - -@table @kbd -@item [prefix] d - @dots{} ƒCƒ“ƒNƒ‹[ƒh\‘¢ƒuƒ‰ƒEƒY -@end table - -@noindent -‚ð‰Ÿ‚·‚ÆA‚»‚̃hƒLƒ…ƒƒ“ƒg‚Ìeƒtƒ@ƒCƒ‹‚ð•·‚¢‚Ä—ˆ‚Ü‚·B‚±‚±‚Å‘S‚Ẵtƒ@ƒCƒ‹ -‚Ìe‚Æ‚È‚éƒtƒ@ƒCƒ‹(ƒfƒtƒHƒ‹ƒg‚ªŽ¦‚³‚ê‚Ä‚¢‚é‚Ì‚Å‘å’ï‚ÍRET‚Ì‚Ý)‚ð“ü—Í‚·‚é‚Æ -ƒCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‘S‚Ẵtƒ@ƒCƒ‹‚ð‰ðÍ‚µAƒCƒ“ƒNƒ‹[ƒhó‹µ‚ðŽ‹Šo“I‚É•\Ž¦ -‚µ‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ł͈ȉº‚̃L[‘€ì‚ª—LŒø‚Å‚·B - -@table @kbd -@item n - @dots{} ŽŸ‚Ìs‚Ɉړ®‚µ‘Ήž‚·‚éƒtƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ -@item p - @dots{} ã‚Ìs‚Ɉړ®‚µ‘Ήž‚·‚éƒtƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ -@item N - @dots{} “¯‚¶ƒCƒ“ƒNƒ‹[ƒhƒŒƒxƒ‹‚ÌŽŸ‚̃tƒ@ƒCƒ‹‚Ɉړ® -@item P - @dots{} “¯‚¶ƒCƒ“ƒNƒ‹[ƒhƒŒƒxƒ‹‚Ì‘O‚̃tƒ@ƒCƒ‹‚Ɉړ® -@item j - @dots{} ŽŸ‚Ìs‚Ɉړ® -@item k - @dots{} ã‚Ìs‚Ɉړ® -@item u - @dots{} ˆê‘ãe‚É‚ ‚½‚éƒtƒ@ƒCƒ‹‚Ɉړ® -@item . - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚̃tƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ -@item SPC - @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚ðƒXƒNƒ[ƒ‹ƒAƒbƒv -@item DEL, b - @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚ðƒXƒNƒ[ƒ‹ƒ_ƒEƒ“ -@item < - @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚Ì擪‚ð•\Ž¦ -@item > - @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚Ì––”ö‚ð•\Ž¦ -@item ' - @dots{} (@kbd{<}‚â@kbd{>}‚ÌŒã‚Å)Œ³‚Ì•\Ž¦ˆÊ’u‚É–ß‚é -@item RET, g - @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚̃tƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚ŃI[ƒvƒ“ -@item mouse-2 - @dots{} RET‚Æ“¯‚¶(ƒEƒBƒ“ƒhƒEŽg—pŽž‚Ì‚Ý) -@item o - @dots{} —ׂ̃EƒBƒ“ƒhƒE‚Ɉړ® -@item 1 - @dots{} ‘¼‚̃EƒBƒ“ƒhƒE‚ðÁ‚· -@item - - @dots{} ƒuƒ‰ƒEƒYƒEƒBƒ“ƒhƒE‚𬂳‚­‚·‚é -@item + - @dots{} ƒuƒ‰ƒEƒYƒEƒBƒ“ƒhƒE‚ð‘å‚«‚­‚·‚é -@item ? - @dots{} ƒwƒ‹ƒv•\Ž¦ -@item q - @dots{} •\Ž¦‘O‚Ìó‘Ô‚É–ß‚é -@end table - - ‚½‚¾‚µA—ׂ̃EƒBƒ“ƒhƒE‚̃tƒ@ƒCƒ‹‚Ì“à—e‚ð•\Ž¦‚·‚é‹@”\‚ÉŠÖ‚µ‚Ä‚ÍA‘Ήž‚·‚é -ƒtƒ@ƒCƒ‹‚ðƒNƒ[ƒY‚µ‚Ä‚µ‚Ü‚¤‚Æ‚¤‚Ü‚­“­‚«‚Ü‚¹‚ñ‚Ì‚Å‚²’ˆÓ‚­‚¾‚³‚¢B - -@node Cooperation with other packages, Customizations, Inclusion hierarchy browser, Top -@comment node-name, next, previous, up -@chapter ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg -@cindex ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg[‚½‚͂‚¯‚¦‚µ‚Æ‚Ì‚ê‚ñ‚¯‚¢] - -@section gmhist -@cindex gmhist -@cindex ƒRƒ}ƒ“ƒhƒqƒXƒgƒŠ[‚±‚Ü‚ñ‚ƂЂ·‚Æ‚è] -@cindex ƒqƒXƒgƒŠ[‚Ђ·‚Æ‚è] - - @file{gmhist.el}‚Æ@file{gmhist-mh.el} ‚ðƒ[ƒh‚µ‚Ä‚¢‚éê‡AƒvƒŒƒ”ƒ…[ƒR -ƒ}ƒ“ƒh‚Ì“ü—Í(@kbd{[prefix] tp]})AˆóüƒRƒ}ƒ“ƒh‚Ì“ü—Í(@kbd{[prefix] tl})‚Ì -Žž‚É“Æ—§‚µ‚½ƒqƒXƒgƒŠ‚ð—˜—p‚Å‚«‚Ü‚·B‚»‚ꂼ‚ê‚̃vƒƒ“ƒvƒg‚ÅA@kbd{M-p} ‚ð‰Ÿ -‚·‚Æ’¼‘O‚É—˜—p‚µ‚½ƒRƒ}ƒ“ƒh•¶Žš—ñ‚ð‚­‚è•Ô‚µŒÄ‚Ño‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B - -@section min-out -@cindex min-out - - @file{min-out.el} (@code{outline-minor-mode}) ‚Æ–ì’¹‚ð‘g‚݇‚킹‚ÄŽg‚¤‚± -‚Æ‚à‚à‚¿‚ë‚ñ‰Â”\‚Å‚·BÝ’è‚Ì•û–@‚ÉŠÖ‚µ‚Ä‚Í@file{yatexm-o.el}‚ð‚²——‚­‚¾‚³‚¢B - -@node Customizations, Etc, Cooperation with other packages, Top -@comment node-name, next, previous, up -@chapter ƒJƒXƒ^ƒ}ƒCƒY -@cindex ƒJƒXƒ^ƒ}ƒCƒY[‚©‚·‚½‚Ü‚¢‚·] -@cindex ƒL[ƒAƒTƒCƒ“[‚«‚¢‚ ‚³‚¢‚ñ] - - –ì’¹‚Ì“®ì‚ð§Œä‚·‚éŽíX‚Ì•Ï”‚ð“ÆŽ©‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA•âŠ®“ü -—Í‚ð‹N“®‚·‚éƒL[ƒAƒTƒCƒ“‚ð•Ï‚¦‚½‚èAŠÂ‹«–¼‚̕⊮Œó•â‚ð‚³‚ç‚É[ŽÀ‚³ -‚¹‚邱‚Æ‚È‚Ç‚ª‚Å‚«‚Ü‚·B - -@menu -* Lisp variables:: lisp •Ï” -* Add-in functions:: •t‰ÁŠÖ”(ƒAƒhƒCƒ“ŠÖ”) -@end menu - -@node Lisp variables, Add-in functions, Customizations, Customizations -@comment node-name, next, previous, up -@section lisp •Ï” -@cindex prefixƒL[•ÏX[prefix‚«‚¢‚Ö‚ñ‚±‚¤] - - —Ⴆ‚Î prefix ƒL[‚ð @kbd{C-c} ˆÈŠO‚̃L[‚É‚µ‚½‚¢ê‡‚ÍA -@code{YaTeX-prefix}‚É prefix ƒL[‚É‚µ‚½‚¢ƒVƒ“ƒ{ƒ‹‚ð’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚³‚ç -‚ÉAu@kbd{C-c ‰pŽš}v‚Æ‚¢‚¤ƒL[ƒoƒCƒ“ƒh‚Í“ÆŽ©‚ÌŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚é‚Ì‚ÅŽg -‚¢‚½‚­‚È‚¢B‚±‚̂悤‚ÈŽž‚ÍA@code{YaTeX-inhibit-prefix-letter} ‚ð @code{t} -‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA@kbd{C-c ‰pŽšc}‚̃oƒCƒ“ƒh‚ª‘S‚ÄA‘Ήž‚·‚é@kbd{C-c -C-‰pŽšc}‚É•Ï‚í‚è‚Ü‚·(‚½‚¾‚µAbeginŒ^ largeŒ^•âŠ®‚̑啶Žš‹N“®‚É‚æ‚郊ƒWƒ‡ -ƒ“Žw’è‚͉”\‚È‚Ü‚Ü‚Å‚·B‚±‚ê‚à–³Œø‚É‚µ‚½‚¢ê‡‚Í@code{t}‚Å‚Í‚È‚­ 1 ‚ɃZƒb -ƒg‚µ‚ĉº‚³‚¢B)B - -@menu -* All customizable variables:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— -* Sample definitions:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”Ý’è—á -* Hook variables:: hook•Ï” -* Hook file:: hook—pƒtƒ@ƒCƒ‹ -@end menu - -@node All customizable variables, Sample definitions, Lisp variables, Lisp variables -@comment node-name, next, previous, up -@subsection ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— -@cindex ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê——[‚©‚·‚½‚Ü‚¢‚·‚Ö‚ñ‚·‚¤‚¢‚¿‚ç‚ñ] - - yatex-mode ‚É‚¨‚¯‚鎟‚Ì•Ï”‚ªƒJƒXƒ^ƒ}ƒCƒY‰Â”\‚Å‚·B@file{~/.emacs} ‚Å -@code{setq} ‚µ‚Ä‚¨‚¯‚ÎA‚»‚¿‚ç‚Ì’è‹`‚ª—D悳‚ê‚Ü‚·BŠ‡ŒÊ‚Ì’†‚̓fƒtƒHƒ‹ƒg’l -‚Å‚·BŽÀÛ‚É•Ï”‚Ì’l‚ð•ÏX‚·‚éê‡‚Í @kbd{M-x describe-variable} ‚Å -•Ï”‚ÌÚׂÈà–¾‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B - -@defvar YaTeX-prefix -yatex-mode ’†‚̃vƒŠƒtƒBƒNƒXƒL[ (@kbd{\C-c}) -@end defvar - -@defvar YaTeX-inhibit-prefix-letter -prefix ƒL[‚Ì’¼Œã‚̃L[ƒoƒCƒ“ƒh‚Å @kbd{‰pŽš} ‚Ì‚à‚Ì‚ð @kbd{C-‰pŽš} ‚É•ÏX -(@code{nil}) -@end defvar - -@defvar YaTeX-fill-prefix -–{•¶‚ð‘‚­Žž‚Ìs“ª‚É‘}“ü‚·‚éÚ“ªŽ«‚·‚È‚í‚¿ fill-prefix (@code{""(nil)}) -@end defvar - -@defvar YaTeX-user-completion-table -ŠwK‚µ‚½La@TeX{}ƒRƒ}ƒ“ƒh•Û‘¶ƒtƒ@ƒCƒ‹–¼ (@code{"~/.yatexrc"}) -@end defvar - -@defvar YaTeX-kanji-code -•¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒh -nil=Šù‘¶‚̃R[ƒh‚Ì‚Ü‚Ü 0=no-conversion 1=Shift JIS, -2=JIS, 3=EUC, 4=UTF-8 (2 (MS-DOS‚Å‚Í1)) -@end defvar - -@defvar tex-command -La@TeX{}ƒ^ƒCƒvƒZƒbƒ^ƒRƒ}ƒ“ƒh–¼ (@code{"platex"}) -@end defvar - -@defvar dvi2-command -ƒvƒŒƒ”ƒ…[ƒAƒRƒ}ƒ“ƒh–¼ (@code{"xdvi -geo +0+0 -s 4"}) -@end defvar - -@defvar dviprint-command-format -dviƒtƒ@ƒCƒ‹‚̈óü‚ÉŽg‚í‚ê‚éƒRƒ}ƒ“ƒhŽ® (@code{"dvi2ps %f %t %s | lpr"}) -@end defvar - -@defvar dviprint-from-format -ã‚Ì@code{%f}‚É‘Š“–‚·‚éŠJŽnƒy[ƒWŽw’è‘Ž®A@code{%b} ‚ªŠJŽnƒy[ƒW”Ô†‚É•Ï -‚í‚é (@code{"-f %b"}) -@end defvar - -@defvar dviprint-to-format -@code{%t} ‚É‘Š“–‚·‚éI—¹ƒy[ƒWŽw’è‘Ž®A@code{%e}‚ªI—¹ƒy[ƒW”Ô†‚É•Ï‚í‚é -(@code{"-t %e"}) -@end defvar - -@defvar makeindex-command -makeindexƒRƒ}ƒ“ƒh (@code{"makeindex"} (MS-DOS‚Å‚Í@code{"makeind"})) -@end defvar - -@defvar YaTeX-dvipdf-command -dvi‚ðPDF‚É•ÏŠ·‚·‚éƒRƒ}ƒ“ƒh (@code{"dvipdfmx"}) -@end defvar - -@defvar YaTeX-need-nonstop -@code{\nonstopmode@{@}}‚ðŽ©“®“I‚É•t‰Á‚·‚é‚© (@code{nil}) -@end defvar - -@defvar latex-warning-regexp -latexƒRƒ}ƒ“ƒh‚Ìo—Í‚·‚éƒEƒH[ƒjƒ“ƒOs‚̳‹K•\Œ» (@code{"line.* [0-9]*"}) -@end defvar - -@defvar latex-error-regexp -“¯‚¶‚­ƒGƒ‰[s‚̳‹K•\Œ» (@code{"l\\.[1-9][0-9]*"}) -@end defvar - -@defvar latex-dos-emergency-message -MS-DOSã‚Å“®ì‚·‚é latex ƒRƒ}ƒ“ƒh‚ªAƒGƒ‰[‚É‚æ‚è’âŽ~‚·‚é‚Æ‚«o—Í‚·‚郃b -ƒZ[ƒW (@code{"Emergency stop"}) -@end defvar - -@defvar latex-message-kanji-code -ƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚郃bƒZ[ƒW‚ÌŠ¿ŽšƒR[ƒh.ƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@ -‚Ìo—Í‚ª‰»‚¯‚鎞‚ÍA‚±‚ê‚ðÝ’è‚·‚é (2, Nemacs‚Å‚Ì‚Ý—LŒø) -@end defvar - -@defvar NTT-jTeX -ŒÃ‚¢NTT-j@TeX{}Žg—pŽž‚̂悤‚ɃCƒ“ƒfƒ“ƒg‚µ‚½s‚Ì擪‚Æ‘O‚Ìs‚Ì -(ƒ^ƒCƒvƒZƒbƒgŒã‚Ì)ŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ðŒ™‚¤ê‡‚Í@code{t}‚É‚·‚é -(@code{nil}) -@end defvar - -@defvar YaTeX-item-regexp -item‚ÌŒ…‘µ‚¦‚ÌŽž‚É—p‚¢‚éAitem‚̳‹K•\Œ» (@code{"\\\\(sub\\)*item"}) -@end defvar - -@defvar YaTeX-verb-regexp -verbƒRƒ}ƒ“ƒh‚̳‹K•\Œ»B擪‚Ì\\\\‚͂‚¯‚È‚¢ (@code{"verb\\*?\\|path"}) -@end defvar - -@defvar YaTeX-nervous -ƒ[ƒJƒ‹Ž«‘‚ð—p‚¢‚鎞 @code{t} (@code{t}) -@end defvar - -@defvar YaTeX-sectioning-regexp -ƒZƒNƒVƒ‡ƒ“‹æØ‚èÝ’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ» -(@code{"\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"}) -@end defvar - -@defvar YaTeX-fill-inhibit-environments -fill ‚ð—}Ž~‚·‚éŠÂ‹«–¼‚̃ŠƒXƒg -(@code{'("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" "verbatim" "verbatim*")}) -@end defvar - -@defvar YaTeX-uncomment-once -—̈æuncomment‚Ås“ª‚Ì•¡”‚Ì@code{%}‚ð‘S‚Ä휂·‚é‚© (@code{nil}) -@end defvar - -@defvar YaTeX-close-paren-always -ŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚Åí‚ɕ‚¶Š‡ŒÊ‚ð“ü—Í‚·‚é (@code{t}) -@end defvar - -@defvar YaTeX-auto-math-mode -”Ž®ƒ‚[ƒh‚ÌØ‚è‘Ö‚¦‚ðŽ©“®“I‚És‚¤ (@code{t}) -@end defvar - -@defvar YaTeX-math-key-list-private -”Ž®ƒCƒ[ƒW•âŠ®‚Å—p‚¢‚é (ƒvƒŠƒtƒBƒNƒXƒL[ . ‘Ήž•âŠ®ƒe[ƒuƒ‹) ‚Ì -alist (@code{nil})B•âŠ®ƒe[ƒuƒ‹‚Ì‘‚«•û‚ɂ‚¢‚Ä‚Í@file{yatexmth.el}‚ðŽQÆB -@end defvar - -@defvar YaTeX-default-pop-window-height -1‰æ–Ê‚ÌŽž‚Ƀ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ð‰‚ß‚Ä쬂·‚鎞‚Ì‚‚³B”’l‚Ås”A”Žš -•¶Žš—ñ‚ÅEmacsƒEƒBƒ“ƒhƒE‚ɑ΂·‚é•S•ª—¦ (10) -@end defvar - -@defvar YaTeX-help-file -‹¤—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (@file{$doc-directory/../../site-lisp/YATEXHLP.jp}) -@end defvar - -@defvar YaTeX-help-file-private -ŒÂl—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (@file{"~/YATEXHLP.jp"}) -@end defvar - -@defvar YaTeX-no-begend-shortcut -@kbd{[prefix] b ??} ‚̃Vƒ‡[ƒgƒJƒbƒg‚ðŽg‚킸A@kbd{[prefix] b} ‚¾‚¯‚ŕ⊮ -“ü—Í‚É“ü‚é (@code{nil}) -@end defvar - -@defvar YaTeX-hilit-pattern-adjustment-private -³‹K•\Œ»‚Æ‚»‚ê‚Ƀ}ƒbƒ`‚·‚é‚à‚̘̂_—“IˆÓ–¡‚ðƒVƒ“ƒ{ƒ‹‚Å‚ ‚ç‚킵‚½‚à‚Ì‚Ì -ƒŠƒXƒgc‚̃ŠƒXƒgBhilit19 ‚ð‘g‚Ýž‚ñ‚Å‚¢‚鎞‚Ì‚Ý—LŒøB -Ú‚µ‚­‚Í @code{(assq 'yatex-mode hilit-patterns-alist)} -‚µ‚½Œ‹‰Ê‚ÆA•Ï” @code{YaTeX-hilit-pattern-adjustment-default} ‚Ì’l(‚Æê‡ -‚É‚æ‚Á‚Ä‚Í hilit19 ‚̃hƒLƒ…ƒƒ“ƒg)‚ðŽQÆ‚¹‚æB -@end defvar - -@defvar YaTeX-sectioning-level -LaTeX‚̃ZƒNƒVƒ‡ƒ“’PˆÊ錾ƒRƒ}ƒ“ƒh‚Æ‚»‚̘_—“I‚‚³‚ÌalistB -@end defvar - -@defvar YaTeX-hierarchy-ignore-heading-regexp -Hierarchy ƒoƒbƒtƒ@‚Í’Êíƒtƒ@ƒCƒ‹ƒwƒbƒ_‚Æ‚µ‚ÄALaTeX‚̃ZƒNƒVƒ‡ƒ“錾ƒRƒ}ƒ“ -ƒh‚̈ø”‚ðŒŸõ‚µA‚»‚ꂪ‚È‚¯‚ê‚΃Rƒƒ“ƒgs‚ð’T‚·‚ªA‚»‚ÌۂɃwƒbƒ_‚Æ‚µ‚Ä‚Í -ˆÓ–¡‚ðŽ‚½‚È‚¢ƒpƒ^[ƒ“‚ð‚±‚Ì•Ï”‚ÉÝ’è‚·‚éBƒfƒtƒHƒ‹ƒg‚Å‚Í RCS ƒwƒbƒ_‚ƃ‚[ -ƒhŽw’ès(-*- xxx -*-)‚ªÝ’肳‚ê‚Ä‚¢‚éB -@end defvar - -@defvar YaTeX-skip-default-reader -Non-nil ‚ÉÝ’è‚·‚é‚ÆsectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”“ü—ÍŽžAƒAƒhƒCƒ“ŠÖ”‚ª‚È‚¯‚ê‚Î -ƒ~ƒjƒoƒbƒtƒ@‚Å‚Ì“Ç‚Ýž‚Ý‚ð‚¹‚¸‚É“ü—Í‚ðŠ®—¹‚³‚¹‚é (@code{nil}) -@end defvar - -@defvar YaTeX-create-file-prefix-g -@code{\include}‚È‚Ç‚Å @kbd{prefix g}‚µ‚½Žž‚ÉAƒWƒƒƒ“ƒv悪‘¶Ý‚µ‚È‚¢ƒtƒ@ƒC -ƒ‹‚Å‚ ‚Á‚Ä‚àƒI[ƒvƒ“‚·‚é (@code{nil}) -@end defvar - -@defvar YaTeX-simple-messages -ŠeŽí•âŠ®Žž‚̃ƒbƒZ[ƒWo—Í‚ðŠÈ‘f‰»‚·‚é (@code{nil}) -@end defvar - -@defvar YaTeX-hilit-sectioning-face -F•t‚¯‚ª—LŒø‚ÈŽž‚Ì @code{\part} ‚ÌF -(@code{'(yellow/dodgerblue yellow/slateblue)})B -ƒŠƒXƒg‚Ì‘æˆê—v‘f‚Í @code{hilit-background-mode} ‚ª @code{'light} ‚ÌŽž‚ÌA -‘æ“ñ—v‘f‚Í @code{'dark} ‚ÌŽž‚Ì @code{\chapter} ‚ÌF‚ÅA•¶ŽšF/”wŒiF ‚Ì‚æ -‚¤‚ÉŽw’è‚·‚éB -@end defvar - -@defvar YaTeX-hilit-sectioning-attenuation-rate -F•t‚¯‚ª—LŒø‚ÈŽž‚ÌA@code{\subparagraph} ‚ÌF‚ð @code{\chapter} ‚Ì”Z“x‚̉½ -%”–‚­‚µ‚½‚à‚Ì‚É‚·‚é‚© (@code{'(15 40)}) @code{YaTeX-hilit-sectioning-face} -‚Ì€ŽQÆB -@end defvar - -@defvar YaTeX-use-AMS-LaTeX -AMS-LaTeX ‚ðŽg—p‚·‚éê‡‚Í @code{t} ‚ÉÝ’è‚·‚é (@code{nil}) -@end defvar - -@defvar YaTeX-use-LaTeX2e -LaTeX2e ‚ðŽg—p‚·‚éê‡‚Í @code{t} ‚ÉÝ’è‚·‚é (@code{t}) -@end defvar - -@defvar YaTeX-template-file -V‹Kƒtƒ@ƒCƒ‹ì¬Žž‚ÉŽ©“®‘}“ü‚·‚éƒtƒ@ƒCƒ‹–¼ (@code{~/work/template.tex}) -@end defvar - -@defvar YaTeX-search-file-from-top-directory -input‚·‚éƒtƒ@ƒCƒ‹‚ð’T‚·‚Æ‚«‚̊fƒBƒŒƒNƒgƒŠ‚ðmainƒtƒ@ƒCƒ‹‚Ì‚ ‚éƒfƒBƒŒƒNƒg -ƒŠ‚É‚·‚é‚© (@code{t}) -@end defvar -@defvar YaTeX-use-font-lock -ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä font-lock ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© -(@code{(featurep 'font-lock)}) -@end defvar - -@defvar YaTeX-use-hilit19 -ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä hilit19 ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© -(@code{(featurep 'hilit19)}) -@end defvar - -@defvar YaTeX-use-italic-bold -italic, boldƒtƒHƒ“ƒg‚ð–ì’¹‚ª’T‚·‚©‚Ç‚¤‚© (Emacs20ˆÈ~‚È‚ç@code{t}) -font-lock—˜—pŽž‚Ì‚Ý—LŒøB -(@code{(featurep 'hilit19)} -@end defvar - -@defvar YaTeX-singlecmd-suffix -‘S‚Ä‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í’¼Œã‚É‘}“ü‚·‚镶Žš—ñB -@code{"@{@}"} ‚È‚Ç‚ª‚¨Š©‚ßB -@end defvar - -@defvar YaTeX-package-alist-private -LaTeX2e‚̃pƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚ÉŠÜ‚Ü‚ê‚éƒ}ƒNƒ‚̃ŠƒXƒgB -“KØ‚Éݒ肵‚Ä‚¨‚­‚Æ–{•¶“ü—ÍŽž‚Ƀ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚Æ -‚»‚̃}ƒNƒ‚É•K—v‚ȃpƒbƒP[ƒW‚ð usepackage ‚·‚é‚©Ž©“®“I‚ÉŒŸ¸‚µ‚Ä‚­‚ê‚éB -‚µ‚Ä‚¢‚È‚¯‚ê‚Î \usepackage ‚ðŽ©“®’ljÁ‚·‚邱‚Æ‚à‚Å‚«‚éB -ƒŠƒXƒg‚Í -@lisp - '((ƒpƒbƒP[ƒW–¼1 - (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) - (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc)) - (ƒpƒbƒP[ƒW–¼2 - (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) - (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc))ccc) -@end lisp -‚Æ‚¢‚¤Œ`Ž®‚É‚·‚éB•âŠ®ƒ^ƒCƒv‚Í @code{env, section, maketitle} ‚Ì‚Ç‚ê‚©B -‹ï‘Ì—á‚Í•Ï” @code{YaTeX-package-alist-default} -‚Ì’lŽQÆB -@end defvar - -@defvar YaTeX-tabular-indentation -tabular/array ŠÂ‹«‚ÅŒ»Ýs‚Ì擪ˆÊ’u‚ª•\‚Ì‘æNƒJƒ‰ƒ€‚Ì‚Æ‚«‚Í -•W€ƒCƒ“ƒfƒ“ƒgˆÊ’u‚©‚ç N*YaTeX-tabular-indentation Œ…‰º‚°‚½ -ƒCƒ“ƒfƒ“ƒg‚É‚·‚éB -@end defvar - -@defvar YaTeX-noindent-env-regexp -•Ê‚̊‹«“à‚É‚ ‚Á‚Ä‚à \begin@{@} ‚ªs“ª‚©‚çŽn‚Ü‚é‚ׂ«ŠÂ‹«–¼‚̳‹K•\Œ»B -verbatimŠÂ‹«‚È‚Ç‚ðŽw’è‚·‚éB -@end defvar - -@defvar YaTeX-ref-default-label-string -\ref@{@} ‚̃‰ƒxƒ‹•âŠ®‚щƒxƒ‹–¢Ý’è‚Ì‚à‚Ì‚ÉŽ©“®“I‚ɶ¬‚·‚é -ƒ‰ƒxƒ‹–¼‚Ì‘Ž®Bstrftime(3)ŠÖ”‚ÉŽ—‚½“ú•tƒx[ƒX‚ÅŽw’è‚·‚éB -—˜—p‚Å‚«‚é‘Ž®‚͈ȉº‚Ì‚Æ‚¨‚èB -%y -> ¼—“ñŒ…, %b -> ŒŽ‚̉p–¼, %m -> ŒŽ(1`12) -%d -> “ú, %H -> Žž, %M -> •ª, %S -> •b, -%qx -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ yymmdd. -%qX -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ HHMMSS. -ƒfƒtƒHƒ‹ƒg‚Í "%H%M%S_%d%b%y" -@end defvar - -@defvar YaTeX-ref-generate-label-function -\ref@{@}‚̃‰ƒxƒ‹–¼Ž©“®¶¬‚Ì‚Æ‚«‚ÉŽg‚¤ŠÖ”‚̃Vƒ“ƒ{ƒ‹B -ƒfƒtƒHƒ‹ƒg‚Í•W€‚Ì YaTeX::ref-generate-label ŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚éB -ˆø”‚ð2‚ÂŽæ‚éŠÖ”‚ð’è‹`‚µ‚ÄA‚±‚Ì•Ï”‚ɃZƒbƒg‚·‚é‚Æ‚»‚ÌŠÖ”‚ðŒÄ‚ñ‚¾ -Œ‹‰Ê‚ðƒfƒtƒHƒ‹ƒg‚̃‰ƒxƒ‹–¼Œó•â‚Æ‚·‚éBÝ’è—á: -@lisp - (setq YaTeX-ref-generate-label-function 'my-yatex-generate-label) - (defun my-yatex-generate-label (command value) - (and (string= command "caption") - (re-search-backward "\\\\begin@{\\(figure\\|table\\)@}" nil t) - (setq command (match-string 1))) - (let ((alist '(("chapter" . "chap") - ("section" . "sec") - ("subsection" . "subsec") - ("figure" . "fig") - ("table" . "tbl")))) - (if (setq command (cdr (assoc command alist))) - (concat command ":" value) - (YaTeX::ref-generate-label nil nil)))) -@end lisp -@end defvar - -@node Sample definitions, Hook variables, All customizable variables, Lisp variables -@comment node-name, next, previous, up -@subsection ƒJƒXƒ^ƒ}ƒCƒY•Ï”Ý’è—á -@cindex Ý’è—á[‚¹‚‚Ă¢‚ê‚¢] - - ‚½‚Æ‚¦‚ÎAprefix ƒL[‚Æ‚µ‚Ä@kbd{ESC}‚ðŽg—p‚µAV‚½‚ȕ⊮Œó•â‚ðŠi”[‚·‚éƒtƒ@ -ƒCƒ‹‚ðA@file{~/src/emacs/yatexrc} ‚É‚µAs“ª‚Ì prefix ‚ðƒ^ƒu•¶Žšˆê‚Â‚É•Ï -‚¦‚½‚¢‚Æ‚«‚ÍA - -@lisp - (setq YaTeX-prefix "\e" - YaTeX-user-completion-table "~/src/emacs/yatexrc" - YaTeX-fill-prefix " ") -@end lisp - -@noindent -‚ð @file{~/.emacs} ‚ɉÁ‚¦‚Ü‚·B - -@node Hook variables, Hook file, Sample definitions, Lisp variables -@comment node-name, next, previous, up -@subsection hook•Ï” -@cindex hook•Ï”[hook‚Ö‚ñ‚·‚¤] -@cindex yatex-mode-hook -@cindex yatex-mode-load-hook - - ‚Ü‚½Ahook •Ï” @code{yatex-mode-hook}, @code{yatex-mode-load-hook} ‚ð—p -ˆÓ‚µ‚Ä‚¢‚Ü‚·B‚·‚×‚Ä‚Ì yatex-mode ‚̃oƒbƒtƒ@‚Åì—p‚³‚¹‚½‚¢‚à‚Ì‚ÍA -@code{yatex-mode-hook} ‚É‹Lq‚µA@file{yatex.el} ‚ðƒ[ƒh‚·‚鎞‚¾‚¯ì—p‚³ -‚¹‚½‚¢‚à‚Ì‚Í@code{yatex-mode-load-hook} ‚É‹Lq‚µ‚Ü‚·B—Ⴆ‚ÎA -@code{outline-minor-mode} ‚ð—˜—p‚·‚éê‡A‚»‚ꂼ‚ê‚̃oƒbƒtƒ@‚Å -@code{outline-minor-mode} ‚ð—LŒø‚É‚µ‚½‚¢‚Ì‚ÅA@code{yatex-mode-hook} ‚ðŽŸ -‚̂悤‚Éݒ肵‚Ü‚·B - -@lisp - (setq yatex-mode-hook - '(lambda () (outline-minor-mode t))) -@end lisp - - -‹t‚ÉA“ÆŽ©‚̃L[’è‹`‚ðs‚¢‚½‚¢Žž‚È‚Ç‚ÍA@code{yatex-mode-load-hook} ‚ð—˜—p -‚µ‚Ü‚·B—Ⴆ‚ÎAbegin Œ^•âŠ®‚É‚¨‚¢‚ÄA document ‚âAenumerate ˆÈŠO‚̊‹«–¼ -‚àƒVƒ‡[ƒgƒJƒbƒgƒL[‚Å“ü‚ꂽ‚¢‚È‚Ç‚Æ‚¢‚¤Žž‚ÍAŽŸ‚̂悤‚É‚µ‚Ü‚·BˆÈ‰º‚Ì—á‚ÍA -@kbd{[prefix] ba} ‚Å @code{\begin@{abstract@}}, @code{\end@{abstract@}} ‚ð -‘}“ü‚µ‚Ü‚·B - -@lisp - (setq yatex-mode-load-hook - '(lambda() (YaTeX-define-begend-key "ba" "abstract"))) -@end lisp - -‚È‚¨AV‚½‚ȃL[‚Ì’è‹`‚É‚ÍAŠÖ” @code{YaTeX-define-key} -@code{YaTeX-define-begend-key}‚ð—˜—p‚·‚é‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B - -@node Hook file, , Hook variables, Lisp variables -@comment node-name, next, previous, up -@subsection hook—pƒtƒ@ƒCƒ‹ - - •Ï” @code{yatex-mode-load-hook} ‚Å’è‹`‚·‚é“à—e‚ª‘½‚¢Žž‚ÍA -@file{yatexhks.el}‚Æ‚¢‚¤ƒtƒ@ƒCƒ‹‚ðì‚èA‚»‚Ì’†‚É–ì’¹ŠÖ˜A‚ÌÝ’è‚ð‘‚­Ž–‚ÅA -‰Šú‰»‚ÌŽž‚ÉŽ©“®“I‚Ƀ[ƒh‚µ‚Ü‚·B - - -@node Add-in functions, , Lisp variables, Customizations -@comment node-name, next, previous, up -@section •t‰ÁŠÖ”(ƒAƒhƒCƒ“ŠÖ”) - - ŠeŽí•âŠ®Žž‚ÉAŠÂ‹«–¼‚âƒRƒ}ƒ“ƒh–¼‚ɉž‚¶‚½‚«‚ßׂ₩‚ȕ⊮“ü—Í‹@”\‚ðŽÀŒ»‚· -‚邽‚ß‚ÌŠÖ”‚ð쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚ÌŠÖ”‚Ì쬕û–@‚âA‘g‚Ýž‚Ý•û–@‚É -ŠÖ‚µ‚Ä‚ÍA@code{yatexadd.doc} ‚ð‚²——‚­‚¾‚³‚¢B - -@node Etc, Copying, Customizations, Top -@comment node-name, next, previous, up -@chapter ‚»‚Ì‘¼ - - –ì’¹‚Ì•W€‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚ÌŽ«‘‚É‚ÍAìŽÒ‚ª•p”É‚ÉŽg‚¤‚à‚Ì‚µ‚©“o˜^‚³ -‚ê‚Ä‚¢‚Ü‚¹‚ñB‚±‚ê‚ÍA•âŠ®Œó•â‚ÉŽg‚¢‚»‚¤‚à‚È‚¢ƒRƒ}ƒ“ƒh‚ª‘¶Ý‚µ‚ÄA•âŠ®‚µ‚½ -‚¢ƒRƒ}ƒ“ƒh‚ðo‚·‚܂ł̃Xƒgƒ[ƒN”‚ð‘‚₵‚Ä‚µ‚Ü‚¤Ž–‚ð–hŽ~‚·‚邽‚ß‚Å‚·B•W -€Ž«‘‚É‚È‚¢ƒRƒ}ƒ“ƒh‚àA‚Å‚«‚邾‚¯•âŠ®“ü—Í•ûŽ®‚ð—˜—p‚µAƒ†[ƒUŽ«‘‚ð[ŽÀ‚³ -‚¹‚邱‚Æ‚ÅA‚ ‚È‚½‚Ì La@TeX{} ƒXƒ^ƒCƒ‹‚É‚ ‚Á‚½–ì’¹‚ւƈç‚Á‚Ä‚¢‚­‚±‚Æ‚Å‚µ‚å -‚¤B - -@node Copying, Concept Index, Etc, Top -@comment node-name, next, previous, up -@chapter Žæ‚舵‚¢ - - –{ƒvƒƒOƒ‰ƒ€‚̓tƒŠ[ƒ\ƒtƒgƒEƒFƒA‚Å‚·B–{ƒvƒƒOƒ‰ƒ€‚ðŽg—p‚µ‚Ķ‚¶‚½‚¢‚©‚È -‚錋‰Ê‚ɑ΂µ‚Ä‚àìŽÒ‚ÍÓ”C‚𕉂í‚È‚¢‚±‚Æ‚Æ‚µ‚Ü‚·B“]Ú“™‚ÉŠÖ‚µ‚ĂͧŒÀ‚¢‚½ -‚µ‚Ü‚¹‚ñB펯“I‚Ɉµ‚Á‚Ä‚­‚¾‚³‚¢B‚Ü‚½A–{ƒvƒƒOƒ‰ƒ€‚ÉŠÜ‚Ü‚ê‚éƒR[ƒh‚ð—˜—p -‚·‚邱‚ÆA‰ü‘¢‚·‚邱‚Æ‚àŽ©—R‚És‚È‚Á‚Ä\‚¢‚Ü‚¹‚ñ‚ªA—¬—p‚·‚邱‚Æ‚É‚æ‚èŒ_–ñ -’÷Œ‹‚Ì•K—v‚ª¶‚¶‚éê‡AŽ„‚Í‚¢‚©‚È‚éŒ_–ñ‚à’÷Œ‹‚µ‚Ü‚¹‚ñB‹ï‘Ì“I‚É‚ÍGPL‚Ö‚Ì -ƒTƒCƒ“‚Í‚µ‚Ü‚¹‚ñ‚Ì‚ÅAGNU‚ÉŠñ‘¡‚·‚é‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇎ„‚Ìì•i‚©‚çŽæ‚èž -‚ñ‚¾ƒR[ƒh‚ð—¬—p‚·‚é‚Æ‹ê˜J‚·‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñB‚¢‚©‚È‚éƒR[ƒh—¬—p‚à‹‘”Û‚µ‚Ü -‚¹‚ñ‚ªŒ_–ñ’÷Œ‹‚ÍŽ«‘Þ‚µ‚Ü‚·B - - ‹êîAŠó–]AƒoƒO•ñAŠ´‘z“™‚ÍŠ½Œ}‚¢‚½‚µ‚Ü‚·B -˜A—‚Í yuuji@@yatex.org ‚Ü‚Å(2004”N1ŒŽŒ»Ý)B -Œp‘±“I‚ÉŽg—p‚µ‚Ä‚­‚¾‚³‚é•û‚̓ƒCƒŠƒ“ƒOƒŠƒXƒgufj–ì’¹‚̉ïv‚É -¥”ñ‰Á“ü‚µ‚Ä‚­‚¾‚³‚¢B‰Á“ü•û–@‚ɂ‚¢‚Ä‚Í–{ƒpƒbƒP[ƒW‚Ì @file{docs/qanda} -ƒtƒ@ƒCƒ‹‚Ìu‚»‚Ì‘¼v‚ÌÍ‚ðŒä——‚­‚¾‚³‚¢B - -Žd—l‚ÍA—\‚È‚­ŠmŽÀ‚É(‹C•ªŽŸ‘æ‚Å)•ÏX‚³‚ê‚Ü‚·:-pB - -@flushright -L£—Y“ñ -@end flushright - -@node Concept Index, , Copying, Top -@comment node-name, next, previous, up -@unnumbered õˆø -@printindex cp - -@c ƒJƒXƒ^ƒ}ƒCƒY•Ï”õˆø‚ðõˆø‚Æ•ª—£‚·‚éꇂɂ̓Rƒƒ“ƒgƒAƒEƒg‚ðŠO‚·!!! -@c @node Variable Index -@c @comment node-name, next, previous, up -@c @unnumbered ƒJƒXƒ^ƒ}ƒCƒY•Ï”õˆø -@c @printindex vr - -@contents - -@bye - -@c Local Variables: -@c fill-column: 74 -@c fill-prefix: nil -@c buffer-file-coding-system: sjis-dos -@c End: - -Tag table: - -End tag table +\def\lang{jp} % -*- texinfo -*- for Texinfo V.3.1 +\input texinfo +@setfilename yatexj +@settitle Yet Another tex-mode for Emacs + +@iftex +@c @syncodeindex fn cp +@c ‚¢‚‚à–Y‚ê‚é‚Ì‚Å‚±‚±‚É‘‚¢‚Æ‚­‚©B +@c C-l C-c n ‚Ńm[ƒh“ü‚ê +@c ƒm[ƒh‚¢‚¶‚Á‚½‚ç C-l C-u C-n ‘S•”‚̃m[ƒhXV C-l C-u C-e +@c ƒƒjƒ…[‘‚₵‚½‚ç C-l C-u C-m ‘S•”‚̃ƒjƒ…[XV C-l C-u C-a +@c ƒtƒH[ƒ}ƒbƒg‚·‚é‚Æ‚«‚Í C-l C-e C-b +@c Last modified Thu May 10 11:26:03 2012 on firestorm +@syncodeindex vr cp +@end iftex + +@titlepage +@sp 10 +@center +@subtitle Yet Another tex-mode for emacs +@title w–ì’¹x +@subtitle // YaTeX // +@author @copyright{} 1991-2012 by HIROSE, Yuuji [yuuji@@yatex.org] +@end titlepage + +@node Top, Intro, (dir), (dir) +@comment node-name, next, previous, up + +@menu +* Intro:: ‚Í‚¶‚ß‚É +* Terminology:: ƒ}ƒjƒ…ƒAƒ‹ŽQÆã‚Ì’ˆÓ +* Main features:: Žå‚È‹@”\ +* Installation:: ƒCƒ“ƒXƒg[ƒ‹ +* Invocation:: ƒvƒƒZƒX‹N“® +* %#notation :: %#‹L–@ +* Completion:: •âŠ®“ü—Í +* Local dictionary:: ƒ[ƒJƒ‹Ž«‘ +* Commenting out:: ƒRƒƒ“ƒgƒAƒEƒg +* Cursor jump:: ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv +* Modifying/Deleting:: LaTeXƒRƒ}ƒ“ƒh‚Ì•ÏX/íœ +* Filling:: Œ…‘µ‚¦ +* Includeonly:: ŸŽè‚É includeonly +* What column:: ƒJƒ‰ƒ€ˆÊ’uƒKƒCƒh +* Intelligent newline:: ‚¨‚Ü‚©‚¹‰üs +* Usepackage cheker:: æ‰ñ‚èusepackage +* Changing mode of YaTeX:: –ì’¹“®ìƒ‚[ƒh•ÏX +* Online help:: LaTeXƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv +* Inclusion hierarchy browser:: ƒtƒ@ƒCƒ‹•ªŠ„ŠK‘w\‘¢‚Ì•\Ž¦ +* Cooperation with other packages:: ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg +* Customizations:: ƒJƒXƒ^ƒ}ƒCƒY +* Etc:: ‚»‚Ì‘¼ +* Copying:: Žæ‚舵‚¢ +* Concept Index:: õˆø + +@end menu + +@node Intro, Terminology, Top, Top +@comment node-name, next, previous, up +@chapter ‚Í‚¶‚ß‚É +@cindex Demacs +@cindex Mule +@cindex LaTeX +@cindex ‚â‚¿‚傤[‚â‚¿‚悤] + + –ì’¹‚ÍAGNU Emacs ‚Å La@TeX{} —p‚Ì•¶‘‚ð쬂·‚鎞‚É pLa@TeX{} ‚È‚Ç‚Ì +ƒ^ƒCƒvƒZƒbƒgƒRƒ}ƒ“ƒh‚âAƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ð Emacs •ÒW‰æ–Ê’†‚©‚ç +s‚¦‚é‚悤‚É‚·‚é‚Æ‹¤‚ÉAŠg’£«‚Ì‚‚¢ŽíX‚̕⊮‹@”\‚É‚æ‚èƒ\[ƒXƒeƒL +ƒXƒg‚Ì•ÒW‚ðŽx‰‡‚µ‚Ü‚·B‚³‚ç‚É La@TeX{} ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv‚É +‚æ‚èƒ}ƒjƒ…ƒAƒ‹‚𒲂ׂéŽèŠÔ‚ðŒyŒ¸‚µ‚Ü‚·B + + English manual @xref{Top, , , yatexe,YaTeX English info}. + +@node Terminology, Main features, Intro, Top +@comment node-name, next, previous, up +@chapter –{ƒ}ƒjƒ…ƒAƒ‹ŽQÆã‚Ì’ˆÓ + + –{ƒ}ƒjƒ…ƒAƒ‹‚ł͈ȉº‚Ì•\‹L‚ð—p‚¢‚Ü‚·B + +@itemize @bullet +@item +beginŒ^ƒRƒ}ƒ“ƒh + +@code{\begin@{ŠÂ‹«@} ` \end@{ŠÂ‹«@}}‚Æ‚¢‚¤Œ`Ž®‚ÌLaTeXƒRƒ}ƒ“ƒh‚ðŽw‚µ‚Ü‚·B +beginŒ^ƒRƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚·‚邱‚Æ‚ðbeginŒ^•âŠ®‚ƌĂт܂·B + +@item +sectionŒ^ƒRƒ}ƒ“ƒh + +@code{\section@{ƒ^ƒCƒgƒ‹@}}‚â@code{\mbox@{“à—e@}}‚̂悤‚É +ˆø”‚ðŽæ‚éLaTeXƒRƒ}ƒ“ƒh‚ðŽw‚µ‚Ü‚·B + +@item +maketitleŒ^ƒRƒ}ƒ“ƒh + +@code{\maketitle}‚â@code{\tableofcontents}‚̂悤‚Ɉø”‚ðŽæ‚ç‚È‚¢LaTeXƒRƒ} +ƒ“ƒh‚ðŽw‚µ‚Ü‚·B + +@item +largeŒ^ƒRƒ}ƒ“ƒh + +@code{@{\large ...@}} ‚â @code{@{\tt ...@}} ‚̂悤‚ȃtƒHƒ“ƒg/ƒTƒCƒYŽw’èŽq +‚ðŽw‚µ‚Ü‚·B + +@item @kbd{[prefix]} + +–ì’¹‚Ì‹@”\‚ðŒÄ‚Ño‚·‚½‚߂̃vƒŠƒtƒBƒNƒXƒL[BƒfƒtƒHƒ‹ƒg‚Å‚Í@kbd{C-c}‚ÉŠ„‚è +“–‚Ä‚ç‚ê‚Ä‚¢‚é‚Ì‚ÅA“Á‚É•ÏX‚µ‚Ä‚¢‚È‚¢ê‡–{ƒ}ƒjƒ…ƒAƒ‹‚Ì @kbd{[prefix]} ‚Æ +‚¢‚¤•\‹L‚ÍA@kbd{C-c} ‚Æ“Ç‚ÝŠ·‚¦‚Ä‚­‚¾‚³‚¢B +@end itemize + +@node Main features, Installation, Terminology, Top +@comment node-name, next, previous, up +@chapter Žå‚È‹@”\ + +@itemize @bullet +@item ƒ^ƒCƒvƒZƒbƒ^‚âƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì•ÒW‰æ–Ê‚©‚ç‚Ì‹N“®(@kbd{C-c t}) +@item ƒJ[ƒ\ƒ‹ˆÊ’u‚É‚æ‚ç‚È‚¢ŒÅ’胊ƒWƒ‡ƒ“‚Ì•”•ªƒ^ƒCƒvƒZƒbƒg +@item \includeonly‚̃ƒ“ƒ^ƒbƒ`XV +@item ƒGƒ‰[‰ÓŠ‚Ö‚ÌŽ©“®ƒWƒƒƒ“ƒv(@kbd{C-c '}) +@item @code{\begin@{@}, \end@{@}, \section...} ‚È‚Ç‚Ì La@TeX{} +ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í +(@kbd{C-c b}, @kbd{C-c s}, @kbd{C-c l}, @kbd{C-c m}) +@item Šù‚É“ü—Í‚µ‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚âƒRƒ}ƒ“ƒhˆø”‚Ì’†‚ÉŽæ‚èž‚ÞŠ‡‚è•âŠ® +(@kbd{C-u} +’Êí•âŠ®ƒL[) +@item ƒZƒNƒVƒ‡ƒ“‹æØ‚è“ü—ÍŽž‚Ì•¶‘\‘¢ƒAƒEƒgƒ‰ƒCƒ“•\Ž¦ +@item ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚̈ꊇƒVƒtƒg (@ref{view-sectioning}) +@item •âŠ®Ž«‘‚ÌŠwK +@item La@TeX{} ‚̊‹«‚âƒRƒ}ƒ“ƒh‚ɉž‚¶‚½ƒKƒCƒh•t‚«ˆø”“ü—Í +@item –ì’¹‚É‚È‚¢ƒKƒCƒh•t‚«ˆø”“ü—ÍŠÖ”‚ÌŽ©“®¶¬(@file{yatexgen.el}) +@item La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ/•ÏX(@kbd{C-c k}, @kbd{C-c c}) +@item ƒtƒ@ƒCƒ‹ŠÔA@code{\begin}<->@code{\end}ŠÔA + @code{\ref}<->@code{\label}ŠÔA + @code{\cite}<->@code{\bibitem}ƒWƒƒƒ“ƒv(@kbd{C-c g}) +@item ˆêŠ‡ƒRƒƒ“ƒgƒAƒEƒg/ƒAƒ“ƒRƒƒ“ƒgƒAƒEƒg + (@kbd{C-c >}, @kbd{C-c <}, @kbd{C-c ,}, @kbd{C-c .}) +@item ƒAƒNƒZƒ“ƒg‹L†/”Ž®ŠÂ‹«—pƒRƒ}ƒ“ƒh/ƒMƒŠƒVƒƒ•¶Žš‚Ì“ü—ÍŽx‰‡ + (@kbd{C-c a}, @kbd{;}, @kbd{/}) +@item tabular/arrayŠÂ‹«‚̃Jƒ‰ƒ€ˆÊ’uƒKƒCƒh +@item •W€“I La@TeX{} ƒRƒ}ƒ“ƒh‚̃Iƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv(@kbd{C-c ?}, @kbd{C-c /}) +@item ƒhƒLƒ…ƒƒ“ƒg‚̃Cƒ“ƒNƒ‹[ƒh\‘¢‚ÌŽ‹Šo“I•\Ž¦‚ƃoƒbƒtƒ@Ø‚è‘Ö‚¦ +(@kbd{C-c d}) +@item •âŠ®“ü—Í‚µ‚½ƒ}ƒNƒ‚ɉž‚¶‚Ä•K—v‚È \userpackage ‚ð“ü‚ê‚Ä‚­‚ê‚éæ‰ñ‚è +userpackage +@item \label‚ð‘ł‚±‚Æ‚Í‚à‚¤–Y‚ê‚悤! ref‚âcite•âŠ®“ü—Í‚ÅŽ©“®¶¬‚µ‚Ü‚· +@end itemize + +@node Installation, Invocation, Main features, Top +@comment node-name, next, previous, up +@chapter ‹N“®–@ +@cindex Install +@cindex ƒCƒ“ƒXƒg[ƒ‹[‚¢‚ñ‚·‚Æ‚¨‚é] +@cindex .emacs +@cindex auto-mode-alist +@cindex autoload +@section –ì’¹‹N“®‚Ì‚½‚ß‚ÌÝ’è + + ~/.emacs‚ɉº‚Ì2€–Ú‚ð‰Á‚¦‚Ü‚·B + +@lisp +(setq auto-mode-alist + (cons (cons "\\.tex$" 'yatex-mode) auto-mode-alist)) +(autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) +@end lisp + +ŽŸ‚É–ì’¹‚Ì emacs-lisp ƒtƒ@ƒCƒ‹ŒQ‚ð’u‚­ƒfƒBƒŒƒNƒgƒŠ‚ð load-path ‚ɉÁ‚¦‚Ü‚·B +‚½‚Æ‚¦‚ÎA @file{~/src/emacs/yatex}‚É’u‚­‚Ì‚Å‚ ‚ê‚ÎA + +@lisp +(setq load-path (cons (expand-file-name "~/src/emacs/yatex") load-path)) +@end lisp + +@noindent +‚È‚Ç‚Æ‚µ‚Ü‚·B + + ˆÈã‚ÌÝ’è‚É‚æ‚èAŠg’£Žq‚ª .tex ‚Å‚ ‚éƒtƒ@ƒCƒ‹‚ð•ÒW‚·‚é‚ÆŽ©“®“I‚É–ì’¹‚ª +ƒ[ƒh‚³‚ê‚Ü‚·B–ì’¹‚ª³í‚É‹N“®‚Å‚«‚½‚Æ‚«‚̓‚[ƒhƒ‰ƒCƒ“‚Ì•\Ž¦‚ªu‚â‚Ä‚Óv +‚É•Ï‚í‚è‚Ü‚·B + +@section ƒ^ƒCƒvƒZƒbƒ^/ƒvƒŒƒ”ƒ…[ƒAŠÂ‹«‚ÌÝ’è + + —˜—p‚·‚éŠO•”ƒvƒƒOƒ‰ƒ€‚ÉŠÖ‚·‚éˆÈ‰º‚Ì•Ï”‚ðŠm”F‚µA•K—v‚Ȃ糂µ‚¢’l‚É•ÏX +‚µ‚Ü‚·B +@table @code +@item tex-command + @dots{} ‹N“®‚·‚éƒ^ƒCƒvƒZƒbƒ^‚̃Rƒ}ƒ“ƒh–¼ +@item dvi2-command + @dots{} ‹N“®‚·‚éƒvƒŒƒ”ƒ…[ƒA‚̃Rƒ}ƒ“ƒh–¼ +@item NTT-jTeX + @dots{} ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü + ‚¤‚Ì‚ð—}§‚·‚éꇂÉt‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì“I‚É‚ÍA + fill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É%‚ð•t‰Á‚·‚é‚悤‚É‚È‚éB +@item YaTeX-kanji-code + @dots{} •¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒh +@item dviprint-command-format + @dots{} ƒtƒ@ƒCƒ‹‚̈óü‚ÉŽg‚í‚ê‚éƒRƒ}ƒ“ƒh—ñ‚Ì‘Ž® +@item makeindex-command + @dots{} makeindexƒRƒ}ƒ“ƒh +@end table + +‚±‚ê‚ç‚ð•ÏX‚·‚éꇂÍA‚â‚Í‚è@file{~/.emacs}‚É‚ÄA‚½‚Æ‚¦‚Î +@lisp +(setq tex-command "pdflatex") +@end lisp +‚̂悤‚É‚µ‚Ä‚­‚¾‚³‚¢B‚ǂ̂悤‚È’l‚ðƒZƒbƒg‚·‚ê‚Ηǂ¢‚©‚ɂ‚¢‚Ä‚ÍA +@ref{All customizable variables}‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B + + +@node Invocation, %#notation , Installation, Top +@comment node-name, next, previous, up +@chapter latexƒRƒ}ƒ“ƒh‹N“® +@cindex prefix key +@cindex C-c +@cindex ƒ^ƒCƒvƒZƒbƒ^[‚½‚¢‚Ó‚¹‚‚½] +@cindex ƒvƒŒƒ”ƒ…[ƒA[‚Ó‚ê‚Ђ䂤‚ ] +@cindex jlatex +@cindex platex +@cindex ƒvƒŠƒ“ƒgƒAƒEƒg[‚Ó‚è‚ñ‚Æ‚ ‚¤‚Æ] + +LaTeXƒ\[ƒX‚Ì•ÒW’†AŽŸ‚̃L[“ü—Í‚É‚æ‚èAplatex ‚Ȃǂ̃^ƒCƒvƒZƒbƒgƒvƒƒOƒ‰ +ƒ€(ˆÈŒãƒ^ƒCƒvƒZƒbƒ^‚ƌĂÔ)AƒvƒŒƒ”ƒ…[ƒA‚È‚Ç‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B + +@table @kbd +@item [prefix] t j + @dots{} ƒ^ƒCƒvƒZƒbƒ^(platex)‹N“® +@item [prefix] t r + @dots{} ƒ^ƒCƒvƒZƒbƒ^‹N“®(—̈æŽw’è) +@item [prefix] t e + @dots{} ƒ^ƒCƒvƒZƒbƒ^‹N“® + (ƒ|ƒCƒ“ƒgˆÊ’u‚̊‹«‚Ü‚½‚Í”Ž®ƒ‚[ƒh‚Ì‚Ý‘ÎÛ) +@item [prefix] t k + @dots{} “®ì’†‚̃^ƒCƒvƒZƒbƒ^‚Ì’âŽ~ +@item [prefix] t b + @dots{} jbibtex‹N“® +@item [prefix] t i + @dots{} makeindex‹N“® +@item [prefix] t d + @dots{} ƒ^ƒCƒvƒZƒbƒgŠ®—¹Œãdvipdfmx‹N“® +@item [prefix] t p + @dots{} ƒvƒŒƒ”ƒ…[ƒA‹N“® +@item [prefix] t l + @dots{} lpr(ƒvƒŠƒ“ƒgƒAƒEƒg—p)ƒRƒ}ƒ“ƒh‹N“® +@item [prefix] t s + @dots{} xdvi -remote ‚ł̃T[ƒ` +@end table + +@menu +* Calling typesetter:: ƒ^ƒCƒvƒZƒbƒ^‹N“® +* Calling previewer:: ƒvƒŒƒ”ƒ…[ƒA‹N“® +* Print out:: ƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh‚Ì‹N“® +@end menu + +@node Calling typesetter, Calling previewer, Invocation, Invocation +@comment node-name, next, previous, up +@section ƒ^ƒCƒvƒZƒbƒ^‹N“® +@cindex ƒ^ƒCƒvƒZƒbƒ^‹N“®[‚½‚¢‚Ó‚¹‚‚½‚«‚Æ‚¤] +@cindex ƒ^ƒCƒvƒZƒbƒgƒGƒ‰[[‚½‚¢‚Ó‚¹‚‚Ƃ¦‚ç‚ ] +@cindex ƒGƒ‰[C³[‚¦‚ç‚ ‚µ‚䂤‚¹‚¢] + + ƒ^ƒCƒvƒZƒbƒ^‚ð‹N“®‚·‚é‚ÆA•ÒWƒEƒBƒ“ƒhƒE‚ª2‚‚ɕªŠ„‚³‚êA•Ð•û‚̃EƒBƒ“ƒh +ƒE‚Ƀ^ƒCƒvƒZƒbƒg‰æ–Ê‚ª•\Ž¦‚³‚ê‚Ü‚·Bo—Í‚³‚ê‚郃bƒZ[ƒW‚ƘA“®‚µƒ^ƒCƒvƒZƒb +ƒgƒoƒbƒtƒ@‚ÍŽ©“®“I‚ɃXƒNƒ[ƒ‹‚µ‚Ü‚·B‚à‚µA“r’†‚ŃGƒ‰[‚ª‹N‚±‚Á‚ÄŽ~‚Ü‚Á‚Ä +‚µ‚Ü‚Á‚½ê‡‚ɂ̓^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ɈڂèA(@kbd{C-x o}) ƒ^ƒCƒvƒZƒbƒ^‚Ìo +‚µ‚Ä‚¢‚é ? ƒvƒƒ“ƒvƒg‚ɑ΂µ‚ÄA@kbd{x} (ˆ—‚Ì’†’f)‚È‚Ç‚ÌŽwŽ¦‚𑗂邱‚Æ‚ª +‚Å‚«‚Ü‚·BƒGƒ‰[‚ðC³‚·‚éꇂÍA + +@table @kbd +@item [prefix] ' +@itemx (prefix+ƒAƒ|ƒXƒgƒƒtƒB) + @dots{} ’¼‘O‚̃Gƒ‰[”­¶s‚ÖƒWƒƒƒ“ƒv +@end table + +‚ð“ü—Í‚·‚邱‚Æ‚É‚æ‚èAƒ^ƒCƒvƒZƒbƒ^‚ªƒGƒ‰[‚ð”­¶‚µ‚½s‚Ɉڂ邱‚Æ‚ª‚Å‚«‚Ü‚·B +‚Ü‚½Aƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚é overfull hbox ‚Ȃǂ̃EƒH[ƒjƒ“ƒOs‚É‚à‘Ήž‚µ +‚Ä‚¢‚Ü‚·‚Ì‚ÅA‡ŽŸ @kbd{[prefix] '} ‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAˆê‚‘O‚̃EƒH[ƒjƒ“ƒO +”­¶s‚ɃWƒƒƒ“ƒv‚µ‚Ä‚¢‚«‚Ü‚·B + + ‚à‚µA‹C‚É‚È‚éƒGƒ‰[s‚ª‚ ‚Á‚½ê‡‚ÍAƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ÅAƒG +ƒ‰[‚Ì•\Ž¦‚³‚ê‚Ä‚¢‚és‚ɃJ[ƒ\ƒ‹‚ð‡‚킹ƒXƒy[ƒXƒL[‚ð‰Ÿ‚·‚Æ La@TeX{} +ƒ\[ƒX‚̑Ήž‚·‚és‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B + +@subsection —̈æƒ^ƒCƒvƒZƒbƒg + + ƒ|ƒCƒ“ƒg‚ƃ}[ƒN‚ÌŠÔA‚ ‚é‚¢‚̓eƒLƒXƒg’†‚É–„‚ßž‚ñ‚¾ @code{%#BEGIN} ‚Æ +@code{%#END}‚̊Ԃ̗̈æ(@ref{%#notation})‚¾‚¯‚ðØ‚èŽæ‚Á‚ă^ƒCƒvƒZƒbƒg‚·‚邱‚Æ‚ª +‚Å‚«‚Ü‚·B‚±‚ÌꇃƒCƒ“ƒtƒ@ƒCƒ‹‚̃vƒŠƒAƒ“ƒuƒ‹‚ªˆêŽžƒtƒ@ƒCƒ‹‚Ì +ƒvƒŠƒAƒ“ƒuƒ‹‚Æ‚µ‚ÄŽg‚í‚ê‚Ü‚·B‚µ‚½‚ª‚Á‚ăvƒŠƒAƒ“ƒuƒ‹‚É‚È‚¢ƒ}ƒNƒ’è‹`‚ª +—̈æ“à‚É‚ ‚é‚ƃGƒ‰[‚É‚È‚è‚Ü‚·B—̈æƒ^ƒCƒvƒZƒbƒg‚ðŽg‚¤ê‡A +•K‚¸ƒ}ƒNƒ’è‹`‚̓vƒŠƒAƒ“ƒuƒ‹(@code{\begin@{document@}}‚æ‚è‘O)‚É’u‚­‚悤 +‚É‚µ‚ĉº‚³‚¢BˆêŽžƒtƒ@ƒCƒ‹‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚Ì‚ ‚é +ƒfƒBƒŒƒNƒgƒŠ‚Ì@file{texput.tex}‚Æ‚¢‚¤–¼‘O‚Åo—Í‚³‚ê‚é‚Ì‚ÅA +ã‘‚«‚É‚Í’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B + +@subsection ŠÂ‹«ƒ^ƒCƒvƒZƒbƒg + + @kbd{[prefix] te} ‚ð‰Ÿ‚·‚ÆAƒ|ƒCƒ“ƒgˆÊ’u‚ÌÅ‚à“à‘¤‚̊‹«A‚Ü‚½‚Í”Ž®ƒ‚[ +ƒh“à‚Ìꇂ͂»‚Ì”Ž®ƒ‚[ƒh‘S‘Ì‚ªŽ©“®“I‚ɗ̈æ‘I‘ð‚³‚ê‚ÄA—̈æƒ^ƒCƒvƒZƒbƒg‚ð +ŒÄ‚Ño‚µ‚Ü‚·BtabularŠÂ‹«‚┎®ƒ‚[ƒh‚Å•¡ŽG‚È‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇂ͊m‚©‚ß‚½ +‚¢•”•ª‚¾‚¯‚ðŠm”F‚Å‚«‚é‚Ì‚Å•Ö—˜‚Å‚·B‚±‚ê‚à @file{texput.tex} ‚ÉŠY“–•”•ª‚ð +‘‚«o‚µ‚Ü‚·BƒvƒŒƒ”ƒ…[ƒA‚Å @file{texput.dvi} ‚ðŠJ‚¢‚½‚Ü‚Ü‚É‚µ‚Ä‚¨‚¯‚Î +C³‚ÆŠm”F‚ª‘f‘‚­‚Å‚«‚é‚Å‚µ‚傤B + +@node Calling previewer, Print out, Calling typesetter, Invocation +@comment node-name, next, previous, up +@section ƒvƒŒƒ”ƒ…[ƒA‹N“® + @kbd{[prefix] t p} ‚É‚æ‚èƒvƒŒƒ”ƒ…[ƒA‚Ì‹N“®‚ª‚Å‚«‚Ü‚·B‚³‚ç‚ÉA‚à‚µ‚ ‚È +‚½‚ªA-remote ‹@”\‚‚«‚Ìxdvi‚ð—˜—p‚µ‚Ä‚¢‚éê‡‚Í @kbd{[prefix] t s} ‚ð‰Ÿ‚· +‚±‚Æ‚É‚æ‚èƒJ[ƒ\ƒ‹ˆÊ’u‚Ì•¶Žš—ñ‚ðŒŸõ‚µ‚Ä‚»‚̃y[ƒW‚ð•\Ž¦‚·‚é‚悤‚É‚·‚Å‚É‹N +“®’†‚Ìxdvi‚É–½—ß‚ð‘—‚è‚Ü‚·B‚±‚ê‚É‚æ‚èAŒ»Ý•ÒW’†‚̉ӊ‚̃^ƒCƒvƒZƒbƒgŒ‹‰Ê +‚ð‘¦À‚ÉŒ©‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +@c ‚È‚¨A-remote ‹@”\•t‚«‚Ì xdvi ‚Í +@c @code{ftp://ftp.ae.keio.ac.jp/pub/text/xdvi/xdvi-remote} +@c ‚È‚Ç‚©‚ç“üŽè‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +@node Print out, , Calling previewer, Invocation +@comment node-name, next, previous, up +@section ƒvƒŠƒ“ƒgƒAƒEƒg + + @kbd{[prefix] t l}‚ð‰Ÿ‚µ‚ăvƒŠƒ“ƒgƒAƒEƒg‚ðŽwŽ¦‚·‚é‚ÆAo—ÍŠJŽn/I—¹ƒy[ +ƒW‚ð•·‚¢‚Ä‚­‚é‚Ì‚ÅA‚»‚ꂼ‚ê‚É“š‚¦‚Ü‚·B‚±‚ê‚ðÈ—ª‚µ‚½‚¢Žž‚ÍA +universal-argument ‚ð‚‚¯A + +@cindex o—ÍŠJŽnƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚©‚¢‚µ‚Ö‚¦‚µ] +@cindex o—ÍI—¹ƒy[ƒW[‚µ‚ä‚‚è‚æ‚­‚µ‚䂤‚è‚悤‚Ö‚¦‚µ] + +@table @kbd +@item C-u [prefix] t l + @dots{} ƒy[ƒWŠm”FÈ—ªlpr‹N“® +@end table +@cindex ƒy[ƒWŠm”FÈ—ªlpr‹N“®[‚Ö‚¦‚µ‚©‚­‚É‚ñ‚µ‚悤‚è‚â‚­lpr‚«‚Æ‚¤] + +@noindent +‚̂悤‚É‹N“®‚µ‚Ä‚­‚¾‚³‚¢B + +@node %#notation , Completion, Invocation, Top +@comment node-name, next, previous, up +@chapter %#‹L–@ + + –{•¶’†‚É@code{%#}‚Å‚Í‚¶‚Ü‚éƒL[ƒ[ƒh‚ð–„‚ßž‚Þ‚±‚ƂŃ^ƒCƒvƒZƒbƒ^‹N“®“™ +‚̧Œä‚ð‚·‚é‚±‚Æ‚ª‚Å‚«‚Ü‚·B + +@menu +* Changing typesetter:: ƒ^ƒCƒvƒZƒbƒg—pƒRƒ}ƒ“ƒh‚Ì•ÏX +* Splitting input files:: “ü—̓tƒ@ƒCƒ‹•ªŠ„ +* Fix region for typesetting:: —̈æ‚̌Œè +* lpr format:: ƒvƒŠƒ“ƒgƒAƒEƒgƒRƒ}ƒ“ƒh—pƒtƒH[ƒ}ƒbƒg +* Controlling which command to invoke:: ‚»‚Ì‘¼‚Ì‹N“®ƒRƒ}ƒ“ƒh§Œä +* Editing %# notation:: %#‹L–@‚Ì•ÒW +@end menu + +@node Changing typesetter, Splitting input files, %#notation , %#notation +@comment node-name, next, previous, up +@section ƒ^ƒCƒvƒZƒbƒg—pƒRƒ}ƒ“ƒh•ÏX + + ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚½‚¢Žž‚Í–{•¶’†‚ÉŽŸ‚̂悤‚Ès‚ð‘‚«‚Ü‚·B + +@cindex ‹N“®‚·‚éƒRƒ}ƒ“ƒh‚ð•Ï‚¦‚é[‚«‚Æ‚¤‚·‚邱‚Ü‚ñ‚Æ‚ð‚©‚¦‚é] + +@example + %#!jlatex-ntt +@end example + +NTT jTeX ‚ÆAASCII jTeX ‚ðŽg‚¢•ª‚¯‚½‚¢‚悤‚Èꇂɕ֗˜‚Å‚µ‚傤B + +@cindex ƒ^ƒCƒvƒZƒbƒ^‚ÌŽg‚¢•ª‚¯[‚½‚¢‚Ó‚¹‚‚½‚̂‚©‚¢‚킯] + +@node Splitting input files, Fix region for typesetting, Changing typesetter, %#notation +@comment node-name, next, previous, up +@section “ü—̓tƒ@ƒCƒ‹•ªŠ„ + +‚Ü‚½AÍ–ˆ‚ɕʃtƒ@ƒCƒ‹‚Ì .tex ‚ð쬂µ‚Ä‚¢‚éꇂÅA@file{main.tex}‚©‚ç +@file{sub.tex} ‚ð @code{\include}‚µ‚Ä‚¢‚é‚悤‚ÈŽž‚ÍA@file{sub.tex}‚Ì”CˆÓ‚Ì +ˆÊ’u‚ÉŽŸ‚̂悤‚Ès‚ð–„‚ßž‚Ý‚Ü‚·B + +@example + %#!platex main.tex +@end example + +@cindex “ü—̓tƒ@ƒCƒ‹•ªŠ„[‚ɂ䂤‚è‚æ‚­‚Ó‚ ‚¢‚é‚Ó‚ñ‚©‚Â] + +ã‚Ì—á‚̂悤‚ɃRƒ}ƒ“ƒh–¼‚¾‚¯‚Å‚È‚­ˆø”‚à‘‚¢‚½ê‡‚É‚ÍA‘S‚Ä‚ð‚»‚Ì‚Ü‚Ü +shell ‚É“n‚·‚Ì‚ÅŽŸ‚̂悤‚É‘‚¯‚ÎAghostview ‚È‚Ç‚ðƒvƒŒƒ”ƒ…[ƒA‚ÉŽg‚¤Žž‚É•Ö +—˜‚Å‚·B + +@cindex ghostview + +@example + %#!platex main && dvi2ps main.dvi > main +@end example + +‚È‚¨A‚±‚Ìs‚ÌÅŒã‚Ì’PŒê‚̃sƒŠƒIƒhˆÈ‘O‚ðuƒƒCƒ“ƒtƒ@ƒCƒ‹v‚̃x[ƒX +ƒl[ƒ€‚Å‚ ‚é‚Ɖ¼’肵‚Ü‚·(ã‚Ì2‚‚Ìꇂǂ¿‚ç‚à@file{main})B +‚±‚Ìs‚É‹Lq‚µ‚½A@code{%f}‚̓ƒCƒ“ƒtƒ@ƒCƒ‹–¼‚ÉA +@code{%r} ‚̓ƒCƒ“ƒtƒ@ƒCƒ‹‚ÌŠg’£Žq‚ðŽæ‚蜂¢‚½•”•ª‚É’uŠ·‚³‚ê‚Ü‚·B +‚½‚¾‚µA@code{%f,%r}‚ð—˜—p‚µ‚½ê‡A‰‰ñƒ^ƒCƒvƒZƒbƒgŽž‚É•K‚¸ƒƒCƒ“ƒtƒ@ƒCƒ‹ +–¼‚Ì“ü—͂𑣂³‚ê‚Ü‚·B + + @kbd{[prefix] g} (@ref{Cursor jump}ŽQÆ) ‚Å‚Ì +ƒtƒ@ƒCƒ‹ŠÔƒWƒƒƒ“ƒv‚ð—LŒø‚É‹@”\‚³‚¹‚邽‚ßA“ü—̓tƒ@ƒCƒ‹•ªŠ„Žž‚É‚ÍŽŸ‚Ì‚±‚Æ‚É +’ˆÓ‚µ‚ĉº‚³‚¢B + +@enumerate +@item +ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚ðì‚Á‚ÄA‚»‚Ì’†‚ɃTƒuƒtƒ@ƒCƒ‹‚ð’u‚­‚±‚Æ‚Í‚Å‚«‚邪 +ƒTƒuƒfƒBƒŒƒNƒgƒŠ‚̃TƒuƒfƒBƒŒƒNƒgƒŠ‚É‚Í’u‚¯‚È‚¢B +@item +ƒƒCƒ“ƒtƒ@ƒCƒ‹‚©‚çƒTƒuƒfƒBƒŒƒNƒgƒŠ“à‚̃tƒ@ƒCƒ‹‚ð include ‚·‚鎞‚É‚ÍA +‘Š‘΃pƒXŽw’è‚ð—p‚¢‚ÄA +@code{\include@{chap1/sub@}}‚̂悤‚É‹LqB +@item +ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ªˆê‚Âã‚̃fƒBƒŒƒNƒgƒŠ‚É‚ ‚éꇂàAƒTƒuƒtƒ@ƒCƒ‹‚É‚Í +%#!platex main.tex ‚̂悤‚É‹Lq‚·‚é(../main‚Å‚Í‚È‚¢)B +@end enumerate + + + +@node Fix region for typesetting, lpr format, Splitting input files, %#notation +@comment node-name, next, previous, up +@section —̈æ‚̌Œè +@cindex ŒÅ’è—̈æ‚̃^ƒCƒvƒZƒbƒg[‚±‚Ä‚¢‚è‚悤‚¢‚«‚Ì‚½‚¢‚Ó‚¹‚‚Æ] +@cindex %#BEGIN +@cindex %#END + + @kbd{[prefix] tr} ‚̗̈æŽw’è‚̃^ƒCƒvƒZƒbƒg‚Å‚ÍA‚Æ‚­‚ÉŽw’è‚Ì‚È‚¢‚©‚¬‚èA +@kbd{C-SPC}‚Ń}[ƒN‚µ‚½ˆÊ’u‚ÆAƒ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚ÌŠÔ‚ð—̈æ‚Æ‚Ý‚È‚µ‚Ü +‚·‚ªA•K‚¸Œˆ‚Ü‚Á‚½—̈æ‚ðƒ^ƒCƒvƒZƒbƒg‚µ‚½‚¢ê‡‚ÍA‚»‚̗̈æ‚ð + +@example + %#BEGIN + <“n‚µ‚½‚¢—̈æ> + %#END +@end example + +@noindent +‚̂悤‚É@code{%#BEGIN}‚Æ@code{%#END}‚ň͂ÝAƒJ[ƒ\ƒ‹‚ðu@code{%#BEGIN}ˆÈ~v +‚É’u‚¢‚Ä‚­‚¾‚³‚¢B‚±‚ÌŽž‚̗̈挈’è‹K‘¥‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B + + +@enumerate +@item +ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É@code{%#BEGIN}‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª +‚ ‚éê‡ + +@enumerate +@item +@code{%#BEGIN}‚æ‚èƒoƒbƒtƒ@‚Ì––”ö•ûŒü‚É@code{%#END}‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ªŒ©‚‚©‚Á +‚½ê‡B +@result{}@code{%#BEGIN} ‚©‚çA‚»‚Ì @code{%#END} ‚Ì‚ ‚éˆÊ’u‚Ü‚ÅB +@item +@code{%#END} ‚ªŒ©‚‚©‚ç‚È‚©‚Á‚½ê‡B +@result{}ƒoƒbƒtƒ@‚ÌÅŒã”ö‚Ü‚ÅB +@end enumerate +@cindex —̈挈’è‹K‘¥[‚è‚悤‚¢‚«‚¯‚‚Ă¢‚«‚»‚­] + +@item +ƒJ[ƒ\ƒ‹ˆÊ’u‚æ‚èƒoƒbƒtƒ@‚Ì擪•ûŒü‚É @code{%#BEGIN} ‚Æ‚¢‚¤ƒL[ƒ[ƒh‚ª +Œ©‚‚©‚ç‚È‚©‚Á‚½ê‡B +@result{}ƒ}[ƒN(@kbd{C-SPC}ˆÊ’u)‚ƃ|ƒCƒ“ƒg(ƒJ[ƒ\ƒ‹ˆÊ’u)‚̊Ԃ̗̈æB +@end enumerate + + tabular ŠÂ‹«‚ð‰½“x‚àŽŽsöŒë‚µ‚Ä‚¢‚é‚悤‚ÈꇂÍA@code{\begin}‚Ì‘O‚Ìs +‚É @code{%#BEGIN} ‚Æ‘‚«A@code{\end} ‚ÌŽŸ‚Ìs‚É @code{%#END} ‚Æ‘‚¢‚Ä‚¨‚­ +‚ÆŠÈ’P‚Éì•\Œ‹‰Ê‚ðƒeƒXƒg‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A’·‚¢ .tex ƒtƒ@ƒCƒ‹‚̌㔼 +‚É @code{%#BEGIN} ‚ð‘‚¢‚Ä‚¨‚¯‚ÎA‘O”¼‚Ì•”•ª‚Í–³Ž‹‚Å‚«‚Ü‚·B‚±‚ÌBEGIN‚ÆEND +‚ÌÁ‚µ–Y‚ê‚É‚Í\•ª‚²’ˆÓ‰º‚³‚¢B +@cindex ’·‚¢ƒtƒ@ƒCƒ‹‚Ì•ÒW[‚È‚©‚¢‚Ó‚ ‚¢‚é‚Ì‚Ö‚ñ‚µ‚䂤] + +@c @node Require, lpr format, Fix region for typesetting, %#notation +@comment node-name, next, previous, up + +@node lpr format, Controlling which command to invoke, Fix region for typesetting, %#notation +@comment node-name, next, previous, up +@section lprƒtƒH[ƒ}ƒbƒg +@cindex lpr‚Ó‚§[‚Ü‚Á‚Æ[lpr‚Ó‚¨‚¨‚܂‚Æ] +@cindex lprƒtƒH[ƒ}ƒbƒg[lpr‚Ó‚¨‚¨‚܂‚Æ] +@cindex lpr format + + ‚Ü‚¸AƒvƒŠƒ“ƒgƒAƒEƒg—pƒRƒ}ƒ“ƒh—ñ‚̃tƒH[ƒ}ƒbƒg‚ɂ‚¢‚Äà–¾‚µ‚Ü‚·B +ƒRƒ}ƒ“ƒh—ñƒtƒH[ƒ}ƒbƒg‚ÍA3‚Â‚Ì Lisp •Ï”‚É‚æ‚Á‚Ä•\Œ»‚³‚ê‚Ü‚·Bƒf +ƒtƒHƒ‹ƒg‚Ì dvi2ps —p‚̃tƒH[ƒ}ƒbƒg‚ð—á‚Éà–¾‚µ‚Ü‚·B + +@table @code +@item (1)dviprint-command-format +@code{"dvi2ps %f %t %s | lpr"} + +@item (2)dviprint-from-format +@code{"-f %b"} + +@item (3)dviprint-to-format +@code{"-t %e"} +@end table + +ŽÀۂɃvƒŠƒ“ƒgƒAƒEƒg‚·‚鎞‚ÍA(1)’†‚Ì %s ‚ªƒtƒ@ƒCƒ‹–¼‚É’u‚«Š·‚¦‚ç‚êA%f ‚ª +(2)‚Ì“à—eA%t ‚ª(3)‚Ì“à—e‚É’u‚«Š·‚¦‚ç‚ê‚Ü‚·B‚»‚ÌÛ‚É(2)‚Ì•¶Žš—ñ’†‚Ì %b ‚Í +uo—ÍŠJŽnƒy[ƒWvA(3)‚Ì•¶Žš—ñ’†‚Ì %e ‚Íuo—ÍI—¹ƒy[ƒWv‚É’u‚«Š·‚¦‚ç‚ê +‚Ü‚·B‚à‚µAƒy[ƒW‚ðŽw’肵‚È‚¢Žž‚É‚ÍA%f, %t —¼•û‚Æ‚à–³Ž‹‚³‚ê‚Ü‚·B + + ‚±‚ÌAdviprint-command-format ‚ð—ÕŽž‚É•Ï‚¦‚½‚¢Žž‚ÍALa@TeX{} ‚Ì +ƒ\[ƒXƒeƒLƒXƒg’†‚Ì”CˆÓ‚ÌꊂÉA + +@example + %#LPR dvi2ps %f %t %s | 4up -page 4 | texfix | lpr -Plp2 +@end example + +@noindent +‚̂悤‚É‘‚¢‚ĉº‚³‚¢BƒvƒŠƒ“ƒgƒAƒEƒg‚·‚éƒy[ƒW”ÍˆÍ‚ð‚¢‚¿‚¢‚¿•·‚©‚¹‚È‚¢‚悤 +‚É‚·‚鎞‚É + +@example + %#LPR dvi2ps %s | lpr +@end example + +@noindent +‚È‚Ç‚Æ‚·‚é‚Ì‚à•Ö—˜‚©‚à‚µ‚ê‚Ü‚¹‚ñB + +@node Controlling which command to invoke, Editing %# notation, lpr format, %#notation +@comment node-name, next, previous, up +@section ‚»‚Ì‘¼‚Ì‹N“®ƒRƒ}ƒ“ƒh§Œä +@cindex ‚»‚Ì‘¼‚̃Rƒ}ƒ“ƒh§Œä[‚»‚Ì‚½‚Ì‚±‚Ü‚ñ‚Æ‚¹‚¢‚«‚æ] + +La@TeX{} •¶‘‚ÉŠÖ˜A‚·‚éƒRƒ}ƒ“ƒh‚͈ȉº‚Ì %# ‹L–@‚ÅŽw’è‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +@table @code + @item %#BIBTEX + @dots{} makeindex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t b) + @item %#MAKEINDEX + @dots{} bibtex‚ðs‚È‚¤ƒRƒ}ƒ“ƒhƒ‰ƒCƒ“([prefix] t i) +@end table + +s“ª‚ª‚±‚ê‚ç‚̃L[ƒ[ƒh‚ÅŽn‚Ü‚és‚ðLa@TeX{}•¶‘‚Ì擪•t‹ß‚É‘‚¢‚Ä‚¨‚¯‚ÎA +‚»‚ê‚ÅŽw’肵‚½ƒRƒ}ƒ“ƒh‚ð‹N“®‚Å‚«‚Ü‚·B + +@node Editing %# notation, , Controlling which command to invoke, %#notation +@comment node-name, next, previous, up +@section %#‹L–@Ž©‘Ì‚Ì•ÒW +@cindex %#‹L–@Ž©‘Ì‚Ì•ÒW[%#‚«‚Ù‚¤‚µ‚½‚¢‚Ì‚Ö‚ñ‚µ‚䂤] + +ˆÈã‚̂悤‚È@code{%#}‚ÅŽn‚Ü‚éŠeŽí§Œä‹L–@‚ð•ÒW‚·‚邽‚ß‚É‚Í + +@table @kbd +@item [prefix] % + @dots{} @code{%#}@var{‹L–@•ÒWƒƒjƒ…[} +@end table + +@noindent +‚ð‰Ÿ‚µ‚Ü‚·B + +@example + !)Edit-%#! B)EGIN-END-region L)Edit-%#LPR +@end example + +@noindent +‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA@code{%#!}‚É‘±‚­ƒRƒ}ƒ“ƒh‚ð•ÏX‚µ‚½‚¢Žž‚É‚Í +@kbd{!}‚ðA@code{%#LPR}‚Å lpr ƒtƒH[ƒ}ƒbƒg‚ð•Ï‚¦‚½‚¢Žž‚Í@kbd{l}‚ðA‚ ‚ç‚© +‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“‚ð @code{%#BEGIN} ` @code{%#END} ‚ÅŠ‡‚肽‚¢Žž‚ÍA +@kbd{b}‚ð‰Ÿ‚µ‚Ü‚·B@kbd{b}‚ð‘I‚ñ‚¾Žž‚É‚ÍA‚»‚ê‚܂Ńoƒbƒtƒ@’†‚É’u‚©‚ê‚Ä‚¢‚½ +@code{%#BEGIN}, @code{%#END} ‚ªŽ©“®“I‚ÉÁ‹Ž‚³‚ê‚Ü‚·B +@cindex lprƒtƒH[ƒ}ƒbƒg‚Ì•ÏX[lpr‚Ó‚¨‚¨‚܂‚Ƃ̂ւñ‚±‚¤] + +@node Completion, Local dictionary, %#notation , Top +@comment node-name, next, previous, up +@chapter •âŠ®“ü—Í + + La@TeX{} ‚ł̊‹«–¼‚È‚Ç‚ÍA–ì’¹‚̕⊮‹@”\‚ð—˜—p‚µ‚Ä”\—¦“I‚É“ü—Í‚·‚邱‚Æ +‚ª‚Å‚«‚Ü‚·B + +@menu +* beginŒ^•âŠ®:: +* sectionŒ^•âŠ®:: +* largeŒ^•âŠ®:: +* maketitleŒ^•âŠ®:: +* Arbitrary completion:: Žž•âŠ® +* end•âŠ®:: +* Accent mark completion:: ƒAƒNƒZƒ“ƒg‹L†•âŠ® +* Image completion:: ”Ž®‹L†ƒCƒ[ƒW•âŠ® +* Greek letter completion:: ƒMƒŠƒVƒƒ•¶Žš•âŠ® +@end menu + +@node beginŒ^•âŠ®, sectionŒ^•âŠ®, Completion, Completion +@comment node-name, next, previous, up +@section beginŒ^•âŠ® +@cindex beginŒ^•âŠ®[begin‚©‚½‚Ù‚©‚ñ] +@cindex ŠÂ‹«–¼‚̕⊮[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ù‚©‚ñ] +@cindex prefix b + + @code{\begin@{env@}...\end@{env@}}‚Ì—l‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ðbeginŒ^•âŠ®‚Æ +ŒÄ‚Ô‚±‚Æ‚É‚µ‚Ü‚·Bbegin Œ^•âŠ®‚ÍA + +@table @kbd +@item [prefix] b + @dots{} begin Œ^•âŠ®ŠJŽn(•W€‚Å‚Í @kbd{C-c b}) +@end table + +@noindent +‚ÅŽn‚Ü‚è‚Ü‚·B•p”É‚É—p‚¢‚ç‚ê‚鎟‚Ì La@TeX{} ŠÂ‹«‚̕⊮‚ÍA[prefix] @kbd{b} +‚É‘±‚­ŽŸ‚Ì1•¶Žš‚ð“ü—Í‚·‚邾‚¯‚ÅA@code{\begin@{xxx@}...\end@{xxx@}}‚ðŠ®¬ +‚³‚¹‚Ü‚·B + +@table @kbd +@item [prefix] b c + @dots{} @code{\begin@{center@}...\end@{center@}} +@item [prefix] b d + @dots{} @code{\begin@{document@}...\end@{document@}} +@item [prefix] b D + @dots{} @code{\begin@{description@}...\end@{description@}} +@item [prefix] b e + @dots{} @code{\begin@{enumerate@}...\end@{enumerate@}} +@item [prefix] b E + @dots{} @code{\begin@{equation@}...\end@{equation@}} +@item [prefix] b i + @dots{} @code{\begin@{itemize@}...\end@{itemize@}} +@item [prefix] b l + @dots{} @code{\begin@{flushleft@}...\end@{flushleft@}} +@item [prefix] b m + @dots{} @code{\begin@{minipage@}...\end@{minipage@}} +@item [prefix] b t + @dots{} @code{\begin@{tabbing@}...\end@{tabbing@}} +@item [prefix] b T + @dots{} @code{\begin@{tabular@}...\end@{tabular@}} +@item [prefix] b ^T + @dots{} @code{\begin@{table@}...\end@{table@}} +@item [prefix] b p + @dots{} @code{\begin@{picture@}...\end@{picture@}} +@item [prefix] b q + @dots{} @code{\begin@{quote@}...\end@{quote@}} +@item [prefix] b Q + @dots{} @code{\begin@{quotation@}...\end@{quotation@}} +@item [prefix] b r + @dots{} @code{\begin@{flushright@}...\end@{flushright@}} +@item [prefix] b v + @dots{} @code{\begin@{verbatim@}...\end@{verbatim@}} +@item [prefix] b V + @dots{} @code{\begin@{verse@}...\end@{verse@}} +@end table + + ã‹L‚Ì‚à‚̈ȊO‚̊‹«–¼‚Í Emacs ‚ÌŽ‚ƒCƒ“ƒNƒŠƒƒ“ƒ^ƒ‹‚ȕ⊮‹@”\‚ð—p‚¢‚Ä +“ü—Í‚µ‚Ü‚·(ã‹L‚̊‹«–¼‚àˆÈ‰º‚̕⊮“ü—͉”\)B + +@table @kbd +@item [prefix] b @key{SPC} + @dots{} begin Œ^•âŠ®“ü—Í +@end table + +@kbd{[prefix] b @key{SPC}} ‚Æ“ü—Í‚·‚é‚ÆAʼnºs‚̃~ƒjƒoƒbƒtƒ@‚É + +@example + Begin environment(default document): +@end example + +@noindent +‚Æ•\Ž¦‚³‚ê‚Ü‚·B‚±‚±‚ÅA‰½‚à“ü‚ꂸ‚ɃŠƒ^[ƒ“ƒL[‚̂݉Ÿ‚·‚ÆAŠ‡ŒÊ“à‚Éo‚Ä‚¢ +‚éƒfƒtƒHƒ‹ƒg‚̊‹«–¼‚ª“ü—Í‚³‚ê‚Ü‚·‚ªA“K“–‚Ȋ‹«–¼‚ð“ü—Í‚·‚é‚ÆA +@code{\begin@{ŠÂ‹«–¼@} c \end@{ŠÂ‹«–¼@}}‚ª•¶‘’†‚É‘}“ü‚³‚ê‚Ü‚·Bƒ~ƒjƒoƒb +ƒtƒ@‚Ŋ‹«–¼‚ð“ü—Í‚·‚é‚Æ‚«‚ÉAŠÂ‹«–¼‚Ì“ª•¶Žš‚ð“ü—Í‚µuƒXƒy[ƒXv‚ð‚½‚½‚­‚ÆA +ˆê’v‚·‚éŠÂ‹«–¼‚ª“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚½ê‡A³‚µ‚¢ŠÂ‹«–¼‚ɕ⊮‚³‚ê‚é‚Ì‚ÅA +“ü—Í‚ÌŽèŠÔ‚ªÈ‚¯‚Ü‚·B“à•”ƒe[ƒuƒ‹‚É‘¶Ý‚µ‚È‚¢ŠÂ‹«–¼‚ð“ü—Í‚µ‚½Žž‚̓†[ƒUê +—p‚̃e[ƒuƒ‹‚É“o˜^‚³‚êA‚³‚ç‚É‚»‚̃e[ƒuƒ‹‚ðŽ©“®“I‚ÉAƒ†[ƒUŽ«‘(ƒfƒtƒHƒ‹ +ƒg‚Å‚Í @file{~/.yatexrc})‚É•Û‘¶‚µ‚Ü‚·B + +‚³‚ç‚ÉA“Á’è‚̊‹«‚ð•âŠ®“ü—Í‚µ‚½Žž‚É‚Í‚»‚̊‹«‚Å•K‚¸—p‚¢‚ç‚ê‚éƒGƒ“ƒgƒŠ‚ðŽ© +“®‘}“ü‚µ‚Ü‚·(—á: @code{itemize}ŠÂ‹«‚É‚¨‚¯‚é@code{\item}‚È‚Ç)B‘}“ü‚³‚ꂽƒG +ƒ“ƒgƒŠ‚ª•s—v‚ÈꇂɂÍundo‚É‚æ‚Á‚ÄÁ‹Ž‚µ‚ĉº‚³‚¢B +@cindex ƒ†[ƒUŽ«‘[‚䂤‚³‚µ‚µ‚æ] + +@subsection Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠÂ‹«‚ÅŠ‡‚é + + ‚Æ‚±‚ë‚ÅAʼn‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ƒuƒƒbƒN‚ðŒã‚©‚çAitemize ŠÂ‹«‚Ì’† +‚ɕ‚¶‚±‚ß‚½‚¢‚ÆŽv‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚È‚Æ‚«‚ÍA‚ ‚ç‚©‚¶‚ß +•Â‚¶‚±‚ß‚½‚¢’i—Ž‚ðƒ}[ƒN‚µ‚ÄAbegin Œ^•âŠ®‚ÌŠeƒRƒ}ƒ“ƒh‚Ì @kbd{[prefix]} +‚ÌŽŸ‚Ìw¬•¶Žš‚Ì 'b'x ‚ðw‘啶Žšx‚É•Ï‚¦‚Ä‹N“®‚µ‚ĉº‚³‚¢B(‚Ü‚½‚ÍA +@kbd{C-u} ‚ðæ‚É‘Å‚¿Auniversal argument ‚ð‚‚¯‚Ä‚à‰Â”\‚Å‚·) +@cindex ƒuƒƒbƒN[‚Ó‚ë‚‚­] +@cindex •Â‚¶ž‚ß‚é[‚Æ‚µ‚±‚ß‚é] + + —Ⴆ‚΂ ‚éƒpƒ‰ƒOƒ‰ƒt‚ð description ŠÂ‹«‚Ì’†‚É“ü‚ꂽ‚¢‚Æ‚«‚ÍA +‚»‚̃pƒ‰ƒOƒ‰ƒt‚ðƒ}[ƒN‚µ‚Ä‚©‚çA + +@table @kbd +@item [prefix] B D +@itemx (‚Ü‚½‚Í ESC 1 [prefix] b D) +@itemx (‚Ü‚½‚Í C-u [prefix] b D ‚È‚Ç) +@end table + +‚ƃ^ƒCƒv‚µ‚Ä‚­‚¾‚³‚¢B‚±‚ê‚ÍA@kbd{[prefix] b SPC}‚̕⊮“ü—Í‚É‚à‚ ‚Ä‚Í‚Ü‚èA +@kbd{b} ‚ð‘啶Žš‚É•Ï‚¦‚ÄA@kbd{[prefix] B SPC} ‚ƃ^ƒCƒv‚·‚ê‚ÎA‚ ‚ç‚©‚¶‚ß +ƒ}[ƒN‚µ‚Ä‚¨‚¢‚½ƒŠƒWƒ‡ƒ“‚ðAbegin ‚Æ end ‚̊‹«‚ÅŠ‡‚è‚Ü‚·B + +@node sectionŒ^•âŠ®, largeŒ^•âŠ®, beginŒ^•âŠ®, Completion +@comment node-name, next, previous, up +@section sectionŒ^•âŠ® +@cindex sectionŒ^•âŠ®[section‚©‚½‚Ù‚©‚ñ] +@cindex prefix s + + @code{\section@{–Ú“I@}} ‚̂悤‚ÈŒ`Ž®‚Ì“ü—͂̕⊮‚ð section Œ^•âŠ®‚ƌĂԂ± +‚Æ‚É‚µ‚Ü‚·Bsection Œ^•âŠ®‚ÍA + +@table @kbd +@item [prefix] s + @dots{} section Œ^•âŠ® +@end table + + +‚ÅŽÀs‚µ‚Ü‚·B@kbd{[prefix] s} ‚ð“ü—Í‚·‚é‚ƃ~ƒjƒoƒbƒtƒ@‚ÉA + +@example + (C-v for view-section) \???@{@} (default documentclass): +@end example + +@noindent +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅA‚»‚±‚Å @samp{section} ‚̂悤‚È La@TeX{} ƒRƒ} +ƒ“ƒh–¼‚ð“ü—Í‚µ‚Ü‚·B‚±‚±‚Å‚àƒŠƒ^[ƒ“ƒL[‚Ì‚Ý‚ÅŠ‡ŒÊ“à‚̃fƒtƒHƒ‹ƒg’l‚ª‘I‘ð‚³ +‚ê‚é‚Ù‚©A@samp{chapter}‚Ȃǂ̂悤‚È•p“x‚Ì‚‚¢–¼Ì“ü—͂ɂ̓Xƒy[ƒXƒL[‚É‚æ +‚é•âŠ®‹@”\‚ª—LŒø‚Å‚·B ŽŸ‚ÉA@{@}‚Ì’†g‚Ì“ü—͂𑣂·A + +@example + \section@{???@}: +@end example + +@noindent +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ªŒ»‚ê‚é‚Ì‚ÅAƒZƒNƒVƒ‡ƒ“‚̃^ƒCƒgƒ‹‚È‚Ç‚ð“ü—Í‚µ‚Ü‚·B +‚½‚Æ‚¦‚ÎA + +@example + (C-v for view-section) \???@{@} (default documentclass): section + \section@{???@}: –Ú“I +@end example + +@noindent +‚̂悤‚É“ü—Í‚µ‚½ê‡‚ÍA•¶Í’†‚É + +@example + \section@{–Ú“I@} +@end example + +@noindent +‚ª‘}“ü‚³‚êA + +@example + (C-v for view-section) \???@{@} (default section): vspace* + \vspace*@{???@}: +@end example + +@noindent +‚̂悤‚É@{@}‚Ì’†g‚ðÈ—ª‚µ‚½‚Æ‚«‚ÍA + +@example + \vspace*@{@} +@end example + +@noindent +‚¾‚¯‚ª‘}“ü‚³‚êA‰üs‚Í‚¹‚¸ƒJ[ƒ\ƒ‹‚ÍŽ©“®“I‚É’†Š‡ŒÊ‚Ì“à‘¤‚Ɉړ®‚µ‚Ü‚·B + +@menu +* 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh:: +* Enclose section-type command:: Š‡‚è•âŠ® +* Recursive completion:: Ä‹A•âŠ® +* view-sectioning:: ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ +* label-generation:: ƒ‰ƒxƒ‹Ž©“®¶¬ +@end menu + +@node 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh, Enclose section-type command, sectionŒ^•âŠ®, sectionŒ^•âŠ® +@comment node-name, next, previous, up +@subsection 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh +@cindex ˆø”[‚Ђ«‚·‚¤] + + ‚Æ‚±‚ë‚ÅA@samp{\addtolength@{\topmargin@}@{8mm@}} ‚Ȃǂ̂悤‚ÉAˆø”‚ð“ñ‚ +ˆÈãŽæ‚é La@TeX{} ƒRƒ}ƒ“ƒh‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚ȃRƒ}ƒ“ƒh‚̕⊮“ü—Í‚É‚ÍA +section Œ^•âŠ®ŒÄ‚Ño‚µ‚Ɉø”‚ð•t‚¯‚Ä‚­‚¾‚³‚¢B—Ⴆ‚Îã‚Ì@samp{addtolength} +‚Ì—á‚Å‚ ‚ê‚ÎAˆø”2‚ðŽw’肵‚Ü‚·B‚‚܂èA + +@example + C-u 2 [prefix] s (‚Ü‚½‚ÍAESC 2 [prefix] s) +@end example + +@noindent +‚Æ section Œ^•âŠ®‚ðŒÄ‚Ño‚µ‚½ŒãA + +@example + (Ctrl-v for view-section) \???@{@} (default vspace*): addtolength + \addtolength@{???@}: \topmargin + Argument 2: 8mm +@end example + +@noindent +‚̂悤‚É“ü—Í‚µ‚Ä‚­‚¾‚³‚¢Bʼn‚Ì addtolength ‚Ì•”•ª‚ÆA‘æˆêˆø”‚Å‚ ‚é +\topmargin ‚Ì“ü—Í‚Í“–‘RƒXƒy[ƒX‚É‚æ‚é•âŠ®“ü—Í‚ª‰Â”\‚Å‚·Bƒ†[ƒUŽ«‘‚É“o˜^ +‚³‚ê‚é La@TeX{} ƒRƒ}ƒ“ƒh‚É‚ÍA‚±‚̈ø”‚Ì”‚àŠwK‚³‚ê‚é‚Ì‚ÅAʼn‚̕⊮‚ÌŽž +ˆø”‚Ì”‚ðŽw’肵‚Ä‹N“®‚µ‚Ä‚¨‚¯‚ÎAˆÈŒã‚̕⊮Žž‚É‚ÍA‹L‰¯‚³‚ꂽŒÂ”‚¾‚¯ˆø” +‚ð•·‚¢‚Ä—ˆ‚é‚悤‚É‚È‚è‚Ü‚·B‚ ‚Ƃňø”‚̌”‚ð•Ï‚¦‚½‚¢Žž‚ÍAÄ‚Ñ @kbd{C-u} +‚ð—p‚¢‚Ȕ‚ðŽw’肵’¼‚·‚±‚Æ‚ÅAŽ©“®“I‚ÉŽ«‘’†‚̈ø”‚̌”‚Ì•”•ª‚ðXV‚µ‚Ü +‚·B +@cindex ˆø”‚̌”‚ð•Ï‚¦‚é[‚Ђ«‚·‚¤‚Ì‚±‚·‚¤‚ð‚©‚¦‚é] + + +@node Enclose section-type command, Recursive completion, 2ŒÂˆÈã‚̈ø”‚ð‚Æ‚é sectionŒ^ƒRƒ}ƒ“ƒh, sectionŒ^•âŠ® +@subsection Šù‚É‘‚¢‚½ƒeƒLƒXƒg‚ðŠ‡‚é +@cindex Š‡‚é[‚­‚­‚é] + + ‚Ü‚½A‹N“®ƒRƒ}ƒ“ƒh‚Ì@kbd{s}‚ð‘啶Žš‚É•Ï‚¦‚Ä‹N“®‚·‚é‚ÆA‚ ‚ç‚©‚¶‚ß‘ +‚¢‚½•¶Í‚ð section Œ^ƒRƒ}ƒ“ƒh‚Ì‘æˆêˆø”‚Æ‚µ‚ÄŠ‡‚è‚Ü‚·B + +@node Recursive completion, view-sectioning, Enclose section-type command, sectionŒ^•âŠ® +@comment node-name, next, previous, up +@subsection Ä‹A•âŠ® +@cindex Ä‹A•âŠ®[‚³‚¢‚«‚Ù‚©‚ñ] + + ‚“x‚ÈŽg‚¢•û‚É‚È‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñ‚ªAsectionŒ^•âŠ®‚̈ø”‚Ì“ü—ÍŽž‚É‚³‚ç‚É +•âŠ®“ü—Í‚ð—˜—p‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·(section/large/maketitleŒ^‚ÉŒÀ‚é)Bsection +Œ^ƒRƒ}ƒ“ƒh‚̈ø”‚ÉX‚É La@TeX{} ƒRƒ}ƒ“ƒh‚ª—ˆ‚éꇂɂ̓~ƒjƒoƒbƒtƒ@‚Å–ì’¹‚Ì +•âŠ®ƒL[‚ðÄ‹A“I‚É“ü—Í‚·‚邱‚Ƃňø”‚Ì“ü—Í‚àŒø—¦“I‚És‚È‚¦‚Ü‚·B + +@node view-sectioning, label-generation, Recursive completion, sectionŒ^•âŠ® +@comment node-name, next, previous, up +@subsection ƒZƒNƒVƒ‡ƒ“‹æØ‚è‚̃AƒEƒgƒ‰ƒCƒ“•\Ž¦ +@cindex ƒAƒEƒgƒ‰ƒCƒ“[‚ ‚¤‚Æ‚ç‚¢‚ñ] + + ’Êí‚ÌsectionŒ^•âŠ®‚ÌŽž‚Ƀ~ƒjƒoƒbƒtƒ@‚Å@kbd{C-v}‚ð‰Ÿ‚·‚ÆŒ»Ý‘¶Ý‚·‚éƒZƒN +ƒVƒ‡ƒ“‹æØ‚èƒRƒ}ƒ“ƒh‘S‚Ä‚ð @code{*Sectioning Lines*}‚Æ‚¢‚¤ƒoƒbƒtƒ@‚Ɉꗗ•\ +Ž¦‚µ‚Ü‚·(u<<--v‚̂‚¢‚Ä‚¢‚és‚ª‚à‚Á‚Æ‚à‹ß‚¢ƒZƒNƒVƒ‡ƒ“‹æØ‚è)B‚±‚ÌŽžƒ~ƒj +ƒoƒbƒtƒ@‚Å@kbd{C-p}, @kbd{C-n} ‚ð‰Ÿ‚·‚Æ@samp{part}, @samp{chapter}, ..., +@samp{subparagraph} ‚̃Rƒ}ƒ“ƒh‚ª˜_—ŠK‘w‚Ì‚‚³‚É‚µ‚½‚ª‚Á‚Ä㉺‚µ‚Ü‚·B‚Ü‚½A +@kbd{C-v}, @kbd{M-v} ‚ð‰Ÿ‚·‚ƃZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚ªƒXƒNƒ[ƒ‹‚µA +”Žš‚Ì@kbd{0}`@kbd{7}‚ð‰Ÿ‚·‚Æ‚ ‚é‚‚³ˆÈã‚̃ZƒNƒVƒ‡ƒ“‹æ؂肾‚¯‚ð‘I‚ñ‚Å•\ +Ž¦‚µ‚Ü‚·(ŽÀÛ‚É‚â‚Á‚ÄŒ©‚ê‚Εª‚©‚è‚Ü‚·)B + +@code{*Sectioning Lines*}ƒoƒbƒtƒ@‚ÍA + +@table @kbd +@item M-x YaTeX-section-overview + @dots{} ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@‚𶬠+@end table + +@cindex ƒZƒNƒVƒ‡ƒ“‹æØ‚èˆê——ƒoƒbƒtƒ@[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è‚¢‚¿‚ç‚ñ‚͂‚ӂ ] +‚Å쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ð‘I‘ð‚µ”CˆÓ‚Ìs‚ŃXƒy[ƒX‚ð‰Ÿ‚·‚ÆA +ŠY“–‚·‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ì‚ ‚é–{•¶’†‚ÌꊂɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚³‚ç‚ÉA“¯ƒoƒb +ƒtƒ@‚Å @kbd{u} ‚ð‰Ÿ‚·‚ÆAƒ\[ƒXƒeƒLƒXƒg‚̑Ήž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ªˆêŠK +‘wオ‚è(—á: subsection ‚ª section ‚É•Ï‚í‚é)A@kbd{d}‚ð‰Ÿ‚·‚ƈêŠK‘w‰º‚ª‚è +‚Ü‚·B@code{*Sectioning Lines*}ƒoƒbƒtƒ@‚É‚ ‚éƒZƒNƒVƒ‡ƒ“‹æØ‚è‚Ìs‚ðƒ}[ƒN +‚µ‚Ä‚¨‚¢‚Ä@kbd{U}‚ð‰Ÿ‚·‚ƃŠƒWƒ‡ƒ““à‚Ì‚à‚̂ɑΉž‚·‚éƒ\[ƒXƒeƒLƒXƒg‚̃ZƒNƒVƒ‡ +ƒ“ƒRƒ}ƒ“ƒh‚·‚ׂĂªˆêŠK‘wオ‚èA@kbd{D}‚ð‰Ÿ‚·‚Ɖº‚ª‚è‚Ü‚·BƒZƒNƒVƒ‡ƒ“‹æØ +‚èˆê——ƒoƒbƒtƒ@‚Å—˜—p‚Å‚«‚éƒL[ƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + +@table @kbd +@item SPC + @dots{} ‘Ήž‚·‚éƒ\[ƒXs‚ÖƒWƒƒƒ“ƒv +@item . + @dots{} ‘Ήž‚·‚éƒ\[ƒXs‚ð•\Ž¦ +@item u + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚ɑΉž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é +@item d + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚ɑΉž‚·‚éƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘w‰º‚°‚é +@item U + @dots{} ƒ}[ƒN‚µ‚½ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é +@item D + @dots{} ƒ}[ƒN‚µ‚½ƒZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ðˆêŠK‘wã‚°‚é +@item 0`6 + @dots{} ƒŒƒxƒ‹ n ˆÈ‰º‚̃ZƒNƒVƒ‡ƒ“ƒRƒ}ƒ“ƒh‚ð‰B‚µ‚Ä•\Ž¦ +@end table + +@cindex ˜_—ŠK‘w[‚ë‚ñ‚è‚©‚¢‚»‚¤] +@cindex ƒZƒNƒVƒ‡ƒ“‹æØ‚è[‚¹‚­‚µ‚æ‚ñ‚­‚«‚è] +@cindex ƒWƒƒƒ“ƒv[‚µ‚â‚ñ‚Ó] + +@node label-generation, , view-sectioning, sectionŒ^•âŠ® +@comment node-name, next, previous, up +@subsection ƒ‰ƒxƒ‹Ž©“®¶¬ +@cindex ƒ‰ƒxƒ‹Ž©“®¶¬[‚ç‚ւ邵‚Æ‚¤‚¹‚¢‚¹‚¢] + + @code{\ref@{@}} ‚â @code{\cite@{@}} ƒ}ƒNƒ‚ðsectionŒ^•âŠ®‚Å“ü‚ê‚½ê‡ +ŽQÆæ‚ƂȂ蓾‚é‚à‚Ì‚ð‘S‚Ä’T‚µ‚ăƒjƒ…[‚É‚µ‚Ä‘I‘ð‚Å‚«‚Ü‚·BŽQÆæ‚É‚Í +@code{\label@{@}}‚ð‚‚¯‚Ä‚¨‚­•K—v‚Í‚ ‚è‚Ü‚¹‚ñB‚à‚µ‚ ‚ê‚ÎA‚»‚̃‰ƒxƒ‹‚ð +Žg‚¢A‚È‚¯‚ê‚΂»‚Ìê‚ÅŽQÆæ‚É@code{\label@{@}}‚ðì‚点‚Ä‚­‚ê‚Ü‚·B +ƒ‰ƒxƒ‹–¼‚ðl‚¦‚é‚Ì‚Í‹ê’É‚ÉŠ´‚¶‚é‚à‚Ì‚Å‚·B‘S‚ẴJƒEƒ“ƒ^‚Ƀ‰ƒxƒ‹‚ð +‚‚¯‚é‚Ì‚à‚½‚¢‚Ö‚ñ‚Å‚·B‚à‚¤ƒ‰ƒxƒ‹–¼‚ɉ½‚ð‚‚¯‚é‚©Aƒ‰ƒxƒ‹‚ð‚‚¯‚é‚©‚‚¯‚Ü +‚¢‚©A‚È‚Ç‚Æ‚¢‚¤‚±‚Æ‚Í–Y‚ê‚Ü‚µ‚傤! + +@node largeŒ^•âŠ®, maketitleŒ^•âŠ®, sectionŒ^•âŠ®, Completion +@comment node-name, next, previous, up +@section largeŒ^•âŠ® +@cindex largeŒ^•âŠ®[large‚©‚½‚Ù‚©‚ñ] +@cindex prefix l + + @code{@{\large @}} ‚̂悤‚ÈŒ`Ž®‚̕⊮‚ð large Œ^•âŠ®‚ƌĂԂ±‚Æ‚É‚µ‚Ü‚·B + +@table @kbd +@item [prefix] l + @dots{} large Œ^•âŠ®ŠJŽn +@end table + +@noindent +‚ªlargeŒ^•âŠ®‚ÌŠJŽn‚Å‚·B@kbd{[prefix] l} ‚ð‰Ÿ‚·‚ÆAƒ~ƒjƒoƒbƒtƒ@‚É + +@example + @{\??? @} (default large): +@end example + + +‚Æ•\Ž¦‚³‚ê‚é‚Ì‚ÅAã‹L‚Ì‚à‚Ì‚Æ“¯‚¶—v—̂ŕ⊮“ü—Í‚µ‚ĉº‚³‚¢B•âŠ®Œó•â‚É—pˆÓ +‚³‚ê‚Ä‚¢‚é‚Ì‚ÍA@samp{footnotesize} ‚â @samp{huge} ‚̂悤‚È•¶ŽšƒTƒCƒYŽw’è +Žq‚ÆA@samp{bf}‚â@samp{dg}‚̂悤‚ȃtƒHƒ“ƒgŽw’èŽq‚Å‚·B +@cindex •¶ŽšƒTƒCƒYŽw’èŽq[‚à‚µ‚³‚¢‚·‚µ‚Ä‚¢‚µ] +@cindex ƒtƒHƒ“ƒgŽw’èŽq[‚Ó‚¨‚ñ‚Æ‚µ‚Ä‚¢‚µ] + +@subsection Šù‚É‘‚¢‚½•¶Žš‚ðŠ‡‚é +@cindex Š‡‚é[‚­‚­‚é] + + ‚Ü‚½AbeginŒ^•âŠ®‚ÌŽž‚Æ“¯—lAæ‚É‘‚¢‚Ä‚µ‚Ü‚Á‚½ˆê˜A‚Ì•¶Í‚Ì•¶Žš‚̃TƒCƒY +‚ð•Ï‚¦‚½‚¢‚ÆŽv‚¤Žž‚ª‚ ‚è‚Ü‚·‚ªA‚»‚̂悤‚ÈŽž‚ÍAƒTƒCƒY‚â‘å‚«‚³‚ð•Ï‚¦‚½‚¢•¶ +Žš‚͈̔͂ðƒ}[ƒN‚µ‚Ä‚©‚çAŒÄ‚Ño‚µƒL[‚ð @kbd{[prefix] L} ‚ÆA‘啶Žš‚Ì L +‚É•Ï‚¦‚ČĂÑo‚¹‚ÎA‚»‚̃ŠƒWƒ‡ƒ“‘S‘Ì‚ªAƒuƒŒ[ƒX‚ň͂܂ê‚Ü‚·B + +@node maketitleŒ^•âŠ®, Arbitrary completion, largeŒ^•âŠ®, Completion +@comment node-name, next, previous, up +@section maketitleŒ^•âŠ® +@cindex maketitleŒ^•âŠ®[maketitle‚©‚½‚Ù‚©‚ñ] +@cindex prefix m + + @code{\maketitle} ‚ÌŒ`Ž®‚̕⊮‚ð maketitle Œ^•âŠ®‚ƌĂԂ±‚Æ‚É‚µ‚Ü‚·B + +@table @kbd +@item [prefix] m + @dots{} maketitle Œ^•âŠ®ŠJŽn +@end table + +@noindent +‚ÅAmaketitle Œ^•âŠ®‚ðŠJŽn‚µ‚Ü‚·B•âŠ®‚Ì—v—Ì‚Í¡‚Ü‚Å‚Ì‚à‚Ì‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å +‚·BLa@TeX{} —p‚̃Rƒ}ƒ“ƒh–¼‚ª•âŠ®Œó•â‚Æ‚µ‚Ä—pˆÓ‚³‚ê‚Ä‚¢‚Ü‚·B + +@node Arbitrary completion, end•âŠ®, maketitleŒ^•âŠ®, Completion +@comment node-name, next, previous, up +@section Žž•âŠ® +@cindex Žž•âŠ®[‚·‚¢‚µ‚Ù‚©‚ñ] +@cindex prefix SPC + + ‚³‚ÄA¡‚Ü‚Åq‚ׂ½“TŒ^“I‚È La@TeX{} ƒRƒ}ƒ“ƒhŒ`Ž®‚̕⊮“ü—Í‚ð—p‚¢‚¸‚ÉA¡ +“ü—Í‚µ‚悤‚Æ‚µ‚Ä‚¢‚é La@TeX{} ƒRƒ}ƒ“ƒh‚𕶑’†‚Ì”CˆÓ‚̈ʒu‚ÅŽž•âŠ®‚·‚邱 +‚Æ‚à‚Å‚«‚Ü‚·BLa@TeX{} ƒRƒ}ƒ“ƒh(擪‚ª\‚ÅŽn‚Ü‚é)‚ð“ü—Í‚µ‚Ä‚¢‚é“r’†‚ÅA + +@table @kbd +@item [prefix] SPC + @dots{} Žž•âŠ® +@end table + +@noindent +‚ð“ü—Í‚·‚ê‚ÎA‘S‚Ă̕⊮Œó•â‚Ì’†‚©‚çˆê’v‚·‚é‚à‚Ì‚ª‘I‚΂êƒJ[ƒ\ƒ‹ˆÊ’u‚É‘}“ü +‚³‚ê‚Ü‚·B + +@node end•âŠ®, Accent mark completion, Arbitrary completion, Completion +@comment node-name, next, previous, up +@section end•âŠ® +@cindex end•âŠ®[end‚Ù‚©‚ñ] +@cindex prefix e + + Œ»ÝŠJ‚¢‚½‚܂܂̊‹«–¼‚ðŽ©“®“I‚ÉŒŸo‚µA@code{\end@{ŠÂ‹«–¼@}}‚ð‘}“ü‚µ‚Ü +‚·Bbegin Œ^•âŠ®‚ð—p‚¢‚ê‚Ί‹«‚̕‚¶–Y‚ê‚Í‚È‚¢‚Ì‚Å‚·‚ªAŽž‚ɂ͂‚¢‚‚¢Žè‚Å +@code{\begin@{ŠÂ‹«–¼@}} ‚ð“ü‚ê‚Ä‚µ‚Ü‚¢A”ß‚µ‚¢Žv‚¢‚ð‚·‚é‚±‚Æ‚ª‚ ‚è‚Ü‚·B‚» +‚̂悤‚ÈŽž‚É‚Í‹C‚É‚¹‚¸‘±‚¯‚Ä•¶Í‚ð“ü—Í‚µA‚µ‚©‚é‚Ì‚¿‚É + +@table @kbd +@item [prefix] e + @dots{} end •âŠ® +@end table + +@noindent +‚Æ‚·‚邱‚Æ‚ÅAŒ»ÝŠJ‚¢‚Ä‚¢‚éŠÂ‹«–¼‚Å \end@{@} ‚ª•â‚í‚ê‚Ü‚·B + +@node Accent mark completion, Image completion, end•âŠ®, Completion +@comment node-name, next, previous, up +@section ƒAƒNƒZƒ“ƒg‹L†•âŠ® +@cindex ƒAƒNƒZƒ“ƒg‹L†•âŠ®[‚ ‚­‚¹‚ñ‚Æ‚«‚±‚¤‚Ù‚©‚ñ] +@cindex prefix a +@cindex ‰¢•¶[‚¨‚¤‚Ó‚ñ] + + ‰¢•¶‚̃AƒNƒZƒ“ƒg‹L†(@code{\`@{o@}}‚È‚Ç)‚ð“ü—Í‚·‚鎞‚ÍA + +@table @kbd +@item [prefix] a + @dots{} ƒAƒNƒZƒ“ƒg‹L†“ü—Í +@end table + +@noindent +‚ð‰Ÿ‚·‚ÆAƒ~ƒjƒoƒbƒtƒ@‚É + +@example + 1:` 2:' 3:^ 4:" 5:~ 6:= 7:. u v H t c d b +@end example + +@noindent +‚Æ‚¢‚¤ƒƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA”ŽšA‚Ü‚½‚͑Ήž‚·‚é‹L†/‰pŽš‚ð“ü—Í +‚µ‚ĉº‚³‚¢B‚·‚é‚Æ•ÒWƒoƒbƒtƒ@‚ÉA + +@example + \`@{@} +@end example + +@noindent +‚ªŒ»‚í‚êAƒJ[ƒ\ƒ‹‚ª@{@}“à‚Ɉʒu‚·‚é‚Ì‚ÅA‚³‚ç‚ɈꕶŽš“ü—Í‚·‚鎖‚ÅA + +@example + \`@{o@} +@end example + +@noindent +‚ªŠ®¬‚³‚êAƒJ[ƒ\ƒ‹‚Í@{@}‚ÌŠO‚É–ß‚è‚Ü‚·B + +@node Image completion, Greek letter completion, Accent mark completion, Completion +@comment node-name, next, previous, up +@section ”Ž®‹L†ƒCƒ[ƒW•âŠ® +@cindex ”Ž®‹L†ƒCƒ[ƒW•âŠ®[‚·‚¤‚µ‚«‚«‚±‚¤‚¢‚ß‚¦‚µ‚Ù‚©‚ñ] +@cindex ƒCƒ[ƒW•âŠ®[‚¢‚ß‚¦‚µ‚Ù‚©‚ñ] +@cindex ; +@cindex ”Ž®ƒ‚[ƒh[‚·‚¤‚µ‚«‚à‚¨‚Æ] +@cindex –îˆó[‚₵‚邵] +@cindex ƒ°[‚µ‚­‚Ü] +@cindex leftarrow +@cindex ‡[‚Þ‚¯‚ñ‚½‚¢] + + Žå‚É”Ž®ƒ‚[ƒh‚ÅŽg—p‚³‚ê‚éA–îˆó‚⃰‚È‚Ç‚Ì‹L†‚ð‹[Ž—“I‚É•\Œ»‚·‚éƒL[“ü—Í +‚ÅALa@TeX{} ƒRƒ}ƒ“ƒh‚ð“ü—Í‚Å‚«‚Ü‚·B‚±‚ê‚Í–ì’¹Ž©g‚Ìu”Ž®ƒ‚[ƒhv‚Å‚Ì‚Ý +“®ì‚µ‚Ü‚·B–ì’¹‚̓J[ƒ\ƒ‹‚ª@TeX{}‚Ì”Ž®ŠÂ‹«‚Ì’†‚É‚ ‚鎞‚É@kbd{;}‚âA +@kbd{:}‚É“ÁŽê‚È‹@”\‚ðŽ‚½‚¹‚Ü‚·B + + ‚³‚ÄA—Ⴆ‚ÎA©(leftarrow)‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚éê‡Aˆê”Ê“I‚É‚Íu<-v +‚̂悤‚É‚µ‚Ü‚·‚ªA‚±‚ê‚ð—˜—p‚µ‚ÄA”Ž®‹L†ƒCƒ[ƒW“ü—̓‚[ƒh‚Å +@code{\leftarrow}‚ð“ü—Í‚·‚é‚É‚ÍA@kbd{;}(ƒZƒ~ƒRƒƒ“)‚ð‘Å‚Á‚Ä‚©‚ç@kbd{<-}‚Æ +“ü—Í‚µ‚Ü‚·B“¯—l‚ÉA’·‚¢–îˆó©-(long-leftarrow) ‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚é +ê‡u<--v‚Æ‚·‚é‚Ì‚ÅA@code{\longleftarrow}‚ð“ü—Í‚·‚邽‚ß‚É‚ÍA@kbd{;<--} +‚Æ“ü—Í‚µ‚Ü‚·B‚ ‚é‚¢‚Í–³ŒÀ‘å‹L†‚ðASCII•¶Žš‚¾‚¯‚Å•\Œ»‚·‚鎞‚Íuoov‚̂悤 +‚É‚·‚邱‚Æ‚©‚çA@code{\infty} ‚ð“ü—Í‚·‚鎞‚ÍA@kbd{;oo}‚ƃL[“ü—Í‚µ‚Ü‚·B + + ‚±‚ê‚ç‚Ì‘€ì‚ð‚Ü‚Æ‚ß‚é‚ÆŽŸ‚̂悤‚É‚È‚è‚Ü‚·B + +@example +INPUT “ü—Í‚³‚ê‚é La@TeX{} ƒRƒ}ƒ“ƒh +; < - @code{\leftarrow} +; < - - @code{\longleftarrow} +; < - - > @code{\longleftrightarrow} +; o @code{\circ} +; o o @code{\infty} +@end example + + + + ‚¢‚¸‚ê‚ÌꇂàAƒCƒ[ƒW“ü—Í‚ðs‚Á‚Ä‚¢‚é“r’†‚Å–]‚Ý‚Ì‚à‚Ì‚ªƒoƒbƒtƒ@ +‚É•\Ž¦‚³‚ꂽ‚È‚çA‚»‚±‚ŃCƒ[ƒW“ü—Í‚ðŽ~‚ß‚ÄŽŸ‚Ì•ÒW“®ì‚ɈڂÁ‚Ä‚à +\‚¢‚Ü‚¹‚ñB + +@cindex ;Ž©g[;‚µ‚µ‚ñ] + ”Ž®ŠÂ‹«’†‚Å@samp{;}Ž©g‚ð“ü—Í‚·‚é‚É‚Í@kbd{;;}‚̂悤‚É‚µ‚Ü‚·BƒCƒ[ƒW +“ü—Í‚Ì“r’†‚ÅTAB‚ð‰Ÿ‚·‚ÆA‚»‚ê‚Ü‚Å“ü—Í‚µ‚½•¶Žš‚ÅŽn‚Ü‚é‚à‚̈ꗗ‚ª•\Ž¦‚³‚ê‚Ü +‚·B‚±‚±‚Å–Ú“I‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚܂ŃJ[ƒ\ƒ‹‚ðˆÚ“®‚µÄ“xTAB‚ð‰Ÿ‚·‚±‚Æ‚Å +‚»‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚ªƒoƒbƒtƒ@‚É‘}“ü‚³‚ê‚Ü‚·B + + ‚ǂ̃L[“ü—Í‚É‚Ç‚Ì‹L†‚ª‘Ήž‚µ‚Ä‚¢‚é‚©‘S‚Ä’m‚肽‚¢Žž‚ÍA@kbd{;}‚ð‰Ÿ‚µ‚½ +’¼Œã‚ÉTAB‚ð‰Ÿ‚µ‚Ä‚­‚¾‚³‚¢BˆÈ‰º‚Ì—á‚ÍA@kbd{;<}‚ƉŸ‚µ‚½Œã‚ÉTAB‚ð‰Ÿ‚µ‚½‚à‚Ì +‚Å‚·B + +@example +KEY LaTeX sequence sign +< \leq … +<< \ll s +<- \leftarrow © +<= \Leftarrow <= +@end example + +¶‚©‚ç[“ü—̓L[]A[‘Ήž‚·‚é La@TeX{} ƒRƒ}ƒ“ƒh]A[(‹[Ž—)‹L†}Ž¦]A‚Æ +‚¢‚¤‡‚Ńƒjƒ…[‚ªo‚Ä—ˆ‚é‚Ì‚ÅA‚æ‚­Žg‚¤‚à‚Ì‚ðŠo‚¦‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚å +‚¤B‚à‚Ì‚É‚æ‚Á‚Ä‚ÍASCII•¶Žš‚Å•\Œ»‚·‚邱‚Æ‚ª¢“ï‚È‚Ì‚ÅA‚ ‚Ü‚èŠo‚¦ +‚â‚·‚¢ƒL[•À‚Ñ‚Å‚Í‚È‚¢‚à‚Ì‚ª‚ ‚é‚Å‚µ‚傤‚©‚çA‚»‚̂悤‚Èê‡‚Í +\maketitle Œ^•âŠ®‚Å“ü—Í‚·‚é‚©AˆÈ‰º‚Éq‚ׂé‘Ήž•\‚ÌÝ’è‚ðs‚Á‚Ä’P +ƒ‚ȃL[•À‚Ñ‚Ì‚à‚Ì‚ðÝ’è‚·‚é‚Æ—Ç‚¢‚Å‚µ‚傤B + + “ü—̓L[‚Æ La@TeX{} ƒRƒ}ƒ“ƒhA‹L†‚̑Ήž•\‚ðŒÂl“I‚Éݒ肵‚½‚¢ê‡‚Í +Emacs-Lisp •Ï” @code{YaTeX-math-sign-alist-private} ‚É’è‹`‚µ‚Ä‚­‚¾‚³‚¢B +‚»‚Ì“à—e‚ƃfƒtƒHƒ‹ƒg‚Ì‚à‚Ì‚ð‡‚킹‚½‚à‚Ì‚ª‘Ήž•\‚Æ‚µ‚ÄŽg—p‚³‚ê‚Ü‚·(private +‚Ì•û‚ª—D悳‚ê‚é)B‚È‚¨A‚±‚Ì•Ï”‚Ì\‘¢‚ɂ‚¢‚Ä‚Í @file{yatexmth.el} ‚ðŽQ +Æ‚µ‚Ä‚­‚¾‚³‚¢B +@cindex YaTeX-math-sign-alist-private + +@node Greek letter completion, , Image completion, Completion +@comment node-name, next, previous, up +@section ƒMƒŠƒVƒƒ•¶Žš•âŠ® +@cindex ƒMƒŠƒVƒƒ•¶Žš•âŠ®[‚«‚肵‚â‚à‚µ‚Ù‚©‚ñ] +@cindex : + + ‚à‚¤ˆê‚ÂA”Ž®ŠÂ‹«’†‚Å@kbd{:}‚ð‰Ÿ‚·‚ƃMƒŠƒVƒƒ•¶Žš“ü—̓‚[ƒh‚É“ü‚è‚Ü‚·B +@kbd{:}‚ð‰Ÿ‚µ‚½’¼Œã‚É@kbd{a}‚ð‰Ÿ‚·‚Æ@code{\alpha}‚ªA@kbd{g} ‚ð‰Ÿ‚·‚Æ +@code{\gamma}‚ªA‚ȂǃAƒ‹ƒtƒ@ƒxƒbƒg‚ɑΉž‚µ‚½ƒMƒŠƒVƒƒ•¶Žš‚ª‘}“ü‚³‚ê‚Ü‚·B +‘€ì•û–@‚Í;‚Ì”Ž®‹L†•âŠ®‚Æ‚Ü‚Á‚½‚­“¯‚¶‚Å‚·B‚Ü‚¸‚Í@kbd{:}‚Ì’¼Œã‚É +TAB‚ð‰Ÿ‚µ‚Ăǂ̃Aƒ‹ƒtƒ@ƒxƒbƒg‚ɂǂ̃MƒŠƒVƒƒ•¶Žš‚ª‘Ήž‚µ‚Ä‚¢‚é‚©’²‚×‚Ä‚Ý‚Ä +‚­‚¾‚³‚¢B + + @kbd{;}‚Æ@kbd{:}‚𔎮ŠÂ‹«’†‚ʼnŸ‚µ‚Ä‚¢‚é‚É‚à‚©‚©‚í‚炸AƒCƒ[ƒW•âŠ®‚ª“­ +‚©‚È‚¢ê‡‚ÍA@kbd{C-u ;}‚̂悤‚É universal-argument ‚ð‚‚¯‚ăL[‚ð‰Ÿ‚·‚± +‚Æ‚É‚æ‚èA‹­§“I‚ɃCƒ[ƒW•âŠ®‚É“ü‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚Ü‚½A‚±‚ÌŽž‚ɂǂ̂悤 +‚Èó‘Ô‚Å”Ž®ŠÂ‹«“à”»’è‚ÉŽ¸”s‚µ‚½‚©‚ð‚²˜A—‰º‚³‚¢B + +@node Local dictionary, Commenting out, Completion, Top +@comment node-name, next, previous, up +@chapter ƒ[ƒJƒ‹Ž«‘ +@cindex ƒ[ƒJƒ‹Ž«‘[‚남‚©‚邵‚µ‚æ] +@cindex .yatexrc + + •âŠ®“ü—Í—p‚ÌŒó•â‚ÍŽOŽí—Þ‚ÌŽ«‘‚©‚ç\¬‚³‚ê‚Ä‚¢‚Ü‚·Bˆê‚Â‚Í +@file{yatex.el}‚É‘g‚Ýž‚܂ꂽu•W€Ž«‘vA‚à‚¤ˆê‚‚̓†[ƒU‚ªŒÂl“I‚Éí—p +‚·‚éƒRƒ}ƒ“ƒh‚ð•Û‘¶‚·‚éuƒ†[ƒUŽ«‘vA‚»‚µ‚Ä‚à‚¤‚ЂƂ‚͂ ‚éƒfƒBƒŒƒNƒgƒŠ‚Å +‚Ì‚Ý—LŒø‚ȃRƒ}ƒ“ƒh‚ð•Û‘¶‚·‚éuƒ[ƒJƒ‹Ž«‘v‚Å‚·B + + •âŠ®“ü—ÍŽž‚ÉV‚µ‚¢’PŒê‚ð“ü‚ꂽꇂÉA‚»‚Ì’PŒê‚ð‚Ç‚ÌŽ«‘‚É“ü‚ê‚é‚©•·‚¢‚Ä +—ˆ‚Ü‚·B + +@example + `foo' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard +@end example + +@noindent +‚Æ‚¢‚¤ƒvƒƒ“ƒvƒg‚ɑ΂µA@kbd{u}‚Æ“š‚¦‚é‚Æuƒ†[ƒUŽ«‘v‚ðA@kbd{l}‚Æ“š‚¦‚é +‚ƃ[ƒJƒ‹Ž«‘‚ðXV‚µA@kbd{n}‚Æ“š‚¦‚é‚ÆŽ«‘ƒtƒ@ƒCƒ‹‚ÍXV‚¹‚¸Œ»Ý‚ÌEmacs +ƒZƒbƒVƒ‡ƒ“‚Ì‚Ý—LŒø‚È’PŒê‚Æ‚µA@kbd{d}‚Æ“š‚¦‚é‚ÆV‚½‚È’PŒê‚ðŠwK‚¹‚¸‚ÉŽÌ‚Ä +‚邱‚Æ‚É‚È‚è‚Ü‚·B + + ‚à‚µAƒ[ƒJƒ‹Ž«‘‚Ì‹@”\‚Í‚¢‚炸A‘S‚ă†[ƒUŽ«‘‚ÌXV‚Ì‚Ý‚Å‚æ‚¢‚ÆŒ¾‚¤ê +‡‚É‚Í@file{~/.emacs}‚È‚Ç‚ÅA +@cindex YaTeX-nervous + +@lisp + (setq YaTeX-nervous nil) +@end lisp + +@noindent +‚Æ‚µ‚ĉº‚³‚¢B + +@node Commenting out, Cursor jump, Local dictionary, Top +@comment node-name, next, previous, up +@chapter ƒRƒƒ“ƒgƒAƒEƒg +@cindex ƒRƒƒ“ƒgƒAƒEƒg[‚±‚ß‚ñ‚Æ‚ ‚¤‚Æ] +@cindex prefix < +@cindex prefix > +@cindex prefix . +@cindex prefix , + + + La@TeX{}‚Ì•ÒW‚É‚ÍŽŽsöŒë‚ª‚‚«‚à‚Ì‚Å‚·B‚ ‚é•”•ª‚ðˆêŠ‡‚ŃRƒƒ“ƒgƒAƒEƒg +‚µ‚½‚èAƒRƒƒ“ƒg‚ðŠO‚µ‚½‚肵‚½‚¢‚±‚Æ‚ª‚ ‚è‚Ü‚·B + +@table @kbd +@item [prefix] > + @dots{} ƒŠƒWƒ‡ƒ“‚ð % ‚ŃRƒƒ“ƒgƒAƒEƒg +@item [prefix] < + @dots{} ƒŠƒWƒ‡ƒ“‚Ì % ‚̃Rƒƒ“ƒg‚ðŠO‚· +@end table + +@noindent +‚ÍA‚ ‚ç‚©‚¶‚ßݒ肵‚½ƒŠƒWƒ‡ƒ“‚ɑ΂µ‚Ä‚Ì‘€ìA + +@table @kbd +@item [prefix] . + @dots{} Œ»Ý‚̃pƒ‰ƒOƒ‰ƒt‚ðƒRƒƒ“ƒgƒAƒEƒg +@item [prefix] , + @dots{} Œ»Ý‚̃pƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŠO‚· +@end table + +@noindent +‚ÍAƒJ[ƒ\ƒ‹‚̈ʒu‚·‚éƒpƒ‰ƒOƒ‰ƒt‘S‘̂ɑ΂µ‚Ä‚Ì‘€ì‚Å‚·B‚È‚¨A‚±‚±‚Å‚¢‚¤ +uƒpƒ‰ƒOƒ‰ƒtv‚Í (@code{mark-paragraph}) ŠÖ”‚É‚æ‚èƒ}[ƒN‚³‚ê‚é”͈͂ðŽw‚µ +‚Ü‚·(•W€Ý’è‚Å@kbd{ESC h}‚ɃoƒCƒ“ƒh‚³‚ê‚Ä‚¢‚é)B‚È‚¨AŠù‚É@code{%}‚ŃRƒ +ƒ“ƒgƒAƒEƒg‚³‚ê‚Ä‚¢‚éƒpƒ‰ƒOƒ‰ƒt‚ɑ΂µ‚ÄŒJ‚è•Ô‚µƒpƒ‰ƒOƒ‰ƒt‚̃Rƒƒ“ƒg‚ðŽg—p‚µ +‚½ê‡‚Ì“®ì‚Í•ÛØ‚µ‚Ü‚¹‚ñ‚̂Ō䒈ӂ­‚¾‚³‚¢B + + ‚³‚ÄA•¶Í‚ɑ΂µ‚Ä‚¾‚¯‚Å‚È‚­AŽž‚É‚Í@code{\begin}, @code{\end} Ž©‘Ì‚É‘Î +‚µ‚Ä‚àƒRƒƒ“ƒgƒAƒEƒg‚Ì‘€ì‚ð‚µ‚½‚¢‚Æ‚«‚ª‚ ‚è‚Ü‚·B‚±‚̂悤‚È‚Æ‚«‚ÍA +@code{\begin@{@}} ‚ ‚é‚¢‚Í @code{\end@{@}} ‚Ìs‚ɃJ[ƒ\ƒ‹‚ð‡‚킹A + +@table @kbd +@item [prefix] > + @dots{} @code{\begin@{@}}`@code{\end@{@}} ‘S‚ăRƒƒ“ƒgƒAƒEƒg +@item [prefix] < + @dots{} @code{\begin@{@}}`@code{\end@{@}} ‘S‚ăRƒƒ“ƒg‚ðŠO‚· +@end table + +@noindent +‚Æ‚·‚邱‚Æ‚ÅA@code{\begin`\end}‚ň͂܂ê‚éŠÂ‹«‘S‚Ăɑ΂µ‚ăRƒƒ“ƒg‘€ì‚µA + +@table @kbd +@item [prefix] . + @dots{} @code{\begin@{@}} ‚Æ @code{\end@{@}} ‚ðƒRƒƒ“ƒgƒAƒEƒg +@item [prefix] , + @dots{} @code{\begin@{@}} ‚Æ @code{\end@{@}} ‚̃Rƒƒ“ƒg‚ðŠO‚· +@end table + +‚ÍA‘Ήž‚·‚é @code{\begin} ‚Æ @code{\end} 2s‚¾‚¯‚ðAƒRƒƒ“ƒg‘€ì‚Ì‘ÎÛ‚Æ +‚µ‚Ü‚·BƒŠƒWƒ‡ƒ“‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚悤‚Æ‚µ‚ÄAƒ}[ƒN‚ðݒ肵‚½‚Ì‚¿‚ɃJ[ƒ\ +ƒ‹‚ðˆÚ“®‚µ@kbd{[preifx] >} ‚ð‰Ÿ‚µ‚Ä‚àƒJ[ƒ\ƒ‹‚ª @code{\begin@{@}} ‚Ìã‚É‚  +‚é‚Æ@code{\begin@{@}}`@code{\end@{@}}ƒ‚[ƒh‚ŃRƒƒ“ƒg‹@”\‚ª“­‚¢‚Ä‚µ‚Ü‚¤‚Ì +‚Å’ˆÓ‚µ‚ĉº‚³‚¢B + +@node Cursor jump, Modifying/Deleting, Commenting out, Top +@comment node-name, next, previous, up +@chapter ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv +@cindex ƒJ[ƒ\ƒ‹ƒWƒƒƒ“ƒv[‚©‚ ‚»‚邵‚â‚ñ‚Ó] +@cindex prefix g + + +@menu +* ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv:: +* ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®:: +* ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv:: +* ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv:: +* ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv:: +@end menu + +@node ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv, ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, Cursor jump, Cursor jump +@comment node-name, next, previous, up +@section ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv + + •¶‘’†‚Ì‚¢‚ë‚¢‚ë‚ÈꊂŠ+ +@table @kbd +@item [prefix] g + @dots{} ‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv +@end table + +@noindent +‚ð‰Ÿ‚·‚±‚Æ‚É‚æ‚èAƒJ[ƒ\ƒ‹ˆÊ’u‚ÌLa@TeX{}ƒRƒ}ƒ“ƒh‚ɑΉž‚·‚éꊂɃWƒƒƒ“ƒv +‚µ‚Ü‚·B‘ΉžŠÖŒW‚ª‘¶Ý‚·‚é‚ƉðŽß‚³‚ê‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + +@itemize @bullet +@item @code{\begin@{@}} ©¨ @code{\end@{@}} +@item @code{%#BEGIN} ©¨ @code{%#END} +@item ‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒ ¨ ‘Ήž‚·‚éviewer/‚¨ŠG‚©‚«ƒc[ƒ‹‹N“® +@item @code{\label@{@}} ©¨ @code{\ref@{@}} +@item @code{\include(\input)} ¨ ‘Ήž‚·‚éƒtƒ@ƒCƒ‹ +@item @code{\bibitem@{@}} ©¨ @code{\cite@{@}} +@end itemize + + @code{\begin@{@}} ‚© @code{\end@{@}} ‚Ìs‚Å@kbd{[prefix] g}‚ð‰Ÿ‚·‚±‚Æ‚É +‚æ‚èA‘Ήž‚·‚é@code{end/begin}‚Ìs‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B‚à‚¿‚ë‚ñ‘Ήž‚·‚é‚à‚Ì‚ª +‚È‚¢ê‡‚̓Gƒ‰[‚É‚È‚è‚Ü‚·B‚Ü‚½‚±‚ê‚ÍA—̈æŒÅ’è‚Ì‚½‚ß‚Ì @code{%#BEGIN} ‚Æ +@code{%#END} ‚̃yƒA‚ɑ΂µ‚Ä‚à“¯—l‚É“®ì‚µ‚Ü‚·B‚È‚¨A@code{label/ref}‚â +@code{cite/bibitem}‘Ήž‚·‚é‚à‚Ì‚ª•Êƒtƒ@ƒCƒ‹‚É‚ ‚鎞‚ÍAƒWƒƒƒ“ƒvæ‚Æ‚È‚éƒtƒ@ +ƒCƒ‹‚ªƒI[ƒvƒ“‚³‚ê‚Ä‚¢‚È‚¯‚ê‚΂Ȃè‚Ü‚¹‚ñB@xref{%#notation}. +ƒƒCƒ“‚Ì .tex ƒtƒ@ƒCƒ‹‚Ì @code{\include@{chap1@}} ‚ȂǂɃJ[ƒ\ƒ‹‚ð‡‚킹A +@kbd{[prefix] g} ‚ð‰Ÿ‚·‚ÆA@file{chap1.tex} ‚ɃWƒƒƒ“ƒv‚µ‚Ü‚·B + +‚Ü‚½A + +@table @kbd +@item [prefix] 4 g + @dots{} •ÊƒEƒBƒ“ƒhƒE‚őΉžƒIƒuƒWƒFƒNƒg‚ɃWƒƒƒ“ƒv +@end table + +@noindent +‚ð‰Ÿ‚·‚ÆA‘Ήž‚·‚éƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv‚ð•ÊƒEƒBƒ“ƒhƒE‚Ås‚¢‚Ü‚·B‚½‚¾‚µA +‚±‚Ì‹@”\‚Í @code{begin/end}, @code{%#BEGIN/%#END} ŠÔ‚̃Wƒƒƒ“ƒv‚ɑ΂µ‚Ä‚Í +(ˆÓ–¡‚ª‚È‚¢‚ÆŽv‚í‚ê‚é‚Ì‚Å)‹@”\‚µ‚È‚¢‚Ì‚Å’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B + +@node ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, ‘ΉžƒIƒuƒWƒFƒNƒg‚ւ̃Wƒƒƒ“ƒv, Cursor jump +@comment node-name, next, previous, up +@section ‚¨ŠG•`‚«ƒc[ƒ‹‹N“® +@cindex ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®[‚¨‚¦‚©‚«‚‚¤‚é‚«‚Æ‚¤] + +ã‹L‚Ìu‰æ‘œƒtƒ@ƒCƒ‹‚ÌŽæ‚螂݃}ƒNƒv‚Æ‚ÍA—Ⴆ‚Î +@code{\epsfile@{file=foo@}} ‚̂悤‚È‘}ŠGŽæ‚螂݃Rƒ}ƒ“ƒh‚Ì‚±‚Æ‚ÅA‚±‚Ìs‚É +ƒJ[ƒ\ƒ‹‚ð‡‚킹‚Ä@kbd{[prefix] g}‚ð‰Ÿ‚·‚Æ‚»‚̉摜ƒtƒ@ƒCƒ‹‚ÌŒ³‚Æ‚È‚Á‚½ƒtƒ@ +ƒCƒ‹‚ð‘Ήž‚·‚邨ŠG•`‚«ƒc[ƒ‹‚ð‹N“®‚µ‚ăI[ƒvƒ“‚µ‚Ü‚·B‹N“®‚·‚éƒc[ƒ‹‚Ì”»’è +‚͈ȉº‚̂悤‚É‚È‚³‚ê‚Ü‚·B + +@enumerate +@item +ƒJƒŒƒ“ƒgs‚ª•Ï” @code{YaTeX-processed-file-regexp-alist} ‚É’è‹`‚³ +‚ê‚Ä‚¢‚鳋K•\Œ»‚Ì‚¢‚¸‚ê‚©‚ƃ}ƒbƒ`‚µ‚½‚çAƒtƒ@ƒCƒ‹–¼‚É‘Š“–‚·‚é•”•ª‚ð +\\(\\)‚©‚甲‚«o‚µ‚ÄŠo‚¦‚Ä‚¨‚­(‰½”Ô–Ú‚Ì\\(\\)‚©‚Í•Ï”‚ÌŠeƒŠƒXƒg‚Ì cdr •”‚É +“ü‚ê‚Ä‚¨‚­)Bƒ}ƒbƒ`‚µ‚È‚¯‚ê‚Ή½‚à‚µ‚È‚¢B +@item +s––‚ÉA•Ï” @code{YaTeX-file-processor-alist} ‚É“o˜^‚³‚ê‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ª +u%ƒRƒ}ƒ“ƒhv ‚̂悤‚É‘‚¢‚Ä‚ ‚ê‚΋­§“I‚ÉuƒRƒ}ƒ“ƒh ƒtƒ@ƒCƒ‹–¼.Šg’£Žqv‚ð +‹N“®B +@item +‚È‚¯‚ê‚ÎA•Ï” @code{YaTeX-file-processor-alist} ‚ÌŠeƒŠƒXƒg‚Ìcdr•”‚É“ü‚Á‚Ä +‚¢‚éŠg’£Žq‚ðuƒtƒ@ƒCƒ‹–¼v‚ÌŒã‚ë‚É‘«‚µ‚½ƒtƒ@ƒCƒ‹‚ª‘¶Ý‚·‚é‚©‡ŽŸ’²‚ׂÄA‘¶ +Ý‚µ‚½ê‡car•”‚É“ü‚Á‚Ä‚¢‚éƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éB +@item +ˆÈã‚Ç‚ê‚©‚Ƀ}ƒbƒ`‚µ‚È‚¯‚ê‚΂ ‚«‚ç‚ß‚éB +@end enumerate + + +•Ï” @code{YaTeX-file-processor-alist} ‚Æ•Ï” +@code{YaTeX-file-processor-alist} ‚ÌÝ’è•û–@‚ɂ‚¢‚Ä‚Í‚»‚ꂼ‚ê‚Ì•Ï”‚ɂ‚¢ +‚Ä describe-variable ‚µ‚Äà–¾‚ð“Ç‚ñ‚ʼnº‚³‚¢B‚¤‚Ü‚­Ý’è‚·‚é‚ÆA‰æ‘œƒtƒ@ƒC +ƒ‹‚É‚©‚¬‚炸A”CˆÓ‚ÌŒ`Ž®‚̃tƒ@ƒCƒ‹‚ð”CˆÓ‚̃vƒƒZƒbƒT‚ň—‚·‚éƒRƒ}ƒ“ƒh‚ðŠÈ +’P‚ɌĂÑo‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B + +@node ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, ‚¨ŠG•`‚«ƒc[ƒ‹‹N“®, Cursor jump +@comment node-name, next, previous, up +@section ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv + +@file{chap1.tex}‚̂悤‚ȃTƒuƒtƒ@ƒCƒ‹‚ÅA + +@table @kbd +@item [prefix] ^ + @dots{} ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ɃWƒƒƒ“ƒv +@item [prefix] 4 ^ + @dots{} •ÊƒEƒBƒ“ƒhƒE‚ŃƒCƒ“ƒtƒ@ƒCƒ‹‚ɃWƒƒƒ“ƒv +@end table + +@noindent +‚ð‰Ÿ‚·‚ÆAƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì•ÒWƒoƒbƒtƒ@‚ÉØ‘Ö‚¦‚Ü‚·B‚à‚µAƒƒCƒ“ƒtƒ@ƒCƒ‹‚ð +ƒI[ƒvƒ“‚µ‚Ä‚¢‚È‚¢ê‡‚ÍAƒJƒŒƒ“ƒgƒfƒBƒŒƒNƒgƒŠ‚©‚ç’T‚µ‚ÄŽ©“®“I‚ɃI[ƒvƒ“‚µ +‚Ü‚·B + +@node ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv, ƒƒCƒ“ƒtƒ@ƒCƒ‹‚ւ̃Wƒƒƒ“ƒv, Cursor jump +@comment node-name, next, previous, up +@section ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv + +‚³‚ç‚ÉŒ»Ý‚̊‹«‚ð’PˆÊ‚Æ‚µ‚Ä‹@”\‚·‚éƒRƒ}ƒ“ƒh‚Ɉȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + +@cindex ŠÂ‹«‚Ì擪‚Ö[‚©‚ñ‚«‚悤‚Ì‚¹‚ñ‚Æ‚¤‚Ö] +@cindex ŠÂ‹«‚Ì––”ö‚Ö[‚©‚ñ‚«‚悤‚̂܂‚ЂÖ] +@cindex ŠÂ‹«‚ðƒ}[ƒN[‚©‚ñ‚«‚悤‚ð‚Ü‚ ‚­] +@cindex M-C-a +@cindex M-C-e +@cindex M-C-@@ +@table @kbd +@item M-C-a + @dots{} ŠÂ‹«‚Ì擪(@code{\begin})‚ÖƒWƒƒƒ“ƒv +@item M-C-e + @dots{} ŠÂ‹«‚Ì––”ö(@code{\end})‚ÖƒWƒƒƒ“ƒv +@item M-C-@@ + @dots{} ŠÂ‹«‘S‘Ì‚ðƒ}[ƒN +@end table + +ã‹L‚̃Rƒ}ƒ“ƒh‚Í’Êí‚Ì@kbd{[prefix]}ƒL[‚Å‚Í‚È‚­@kbd{META}ƒL[‚ðƒvƒŠƒtƒBƒN +ƒX‚Æ‚µ‚Ä‹@”\‚·‚é‚Ì‚Å‚²’ˆÓ‰º‚³‚¢B + +@node ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv, , ŠÂ‹«‚ð’PˆÊ‚Æ‚µ‚½ƒWƒƒƒ“ƒv, Cursor jump +@comment node-name, next, previous, up +@section ÅŒã‚̕⊮ˆÊ’u‚ւ̃Wƒƒƒ“ƒv + +–ì’¹‚͕⊮“ü—Í‚µ‚½ˆÊ’u‚ðí‚ɃŒƒWƒXƒ^ @code{3}‚É•Û‘¶‚µ‚Ä‚¢‚Ü‚·B +“ü—Í“r’†‚Å”@‰½‚È‚éƒtƒ@ƒCƒ‹‚Ì”@‰½‚È‚éˆÊ’u‚És‚Á‚½‚Æ‚µ‚Ä‚àA +@kbd{C-x j 3}(@code{jump-to-register})‚ðŽg‚Á‚Ä’¼‚¿‚ÉÅŒã‚̕⊮“ü—͈ʒu‚É–ß +‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +@node Modifying/Deleting, Filling, Cursor jump, Top +@comment node-name, next, previous, up +@chapter •ÏX/íœ +@cindex •ÏX/íœ[‚Ö‚ñ‚±‚¤/‚³‚­‚µ‚æ] +@cindex prefix c +@cindex prefix k + + Šù‚É“ü—Í‚³‚ê‚Ä‚¢‚é La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX/휂̂½‚߂Ɉȉº‚Ì‹@”\‚ª—pˆÓ +‚³‚ê‚Ä‚¢‚Ü‚·B + +@table @kbd +@item [prefix] c + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX +@item [prefix] k + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ +@end table + + +‚±‚ê‚ç‚̃Rƒ}ƒ“ƒh‚ÍAƒRƒ}ƒ“ƒh‚ð‹N“®‚·‚éꊂɂæ‚Á‚Ä“®ì‚ðŒˆ’è‚·‚é‚Ì‚Å’ˆÓ‚µ +‚ĉº‚³‚¢B + +@menu +* Changing LaTeX command:: La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX +* Killing LaTeX command:: La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ +@end menu + +@node Changing LaTeX command, Killing LaTeX command, Modifying/Deleting, Modifying/Deleting +@comment node-name, next, previous, up +@section La@TeX{} ƒRƒ}ƒ“ƒh‚Ì•ÏX + +•ÏX‚µ‚½‚¢ La@TeX{} ƒRƒ}ƒ“ƒh‚ɃJ[ƒ\ƒ‹‚ð‡‚킹‚Ä @kbd{[prefix] c} +‚ð‰Ÿ‚·‚Æ‚»‚̃Rƒ}ƒ“ƒh‚ð•âŠ®“ü—Í‚È‚Ç‚ð—p‚¢‚ÄŽèŒy‚É•Ï‚¦‚邱‚Æ‚ª‚Å‚«‚Ü‚·B +@kbd{[prefix] c} ‚Å•ÏX‚Å‚«‚éƒRƒ}ƒ“ƒh‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + +@itemize +@item @code{begin/end} ‚̊‹«–¼ +@item sectionŒ^ƒRƒ}ƒ“ƒh‚̃Rƒ}ƒ“ƒh–¼ +@item sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø” +@item sectionŒ^ƒRƒ}ƒ“ƒh‚̃IƒvƒVƒ‡ƒ“ƒpƒ‰ƒ[ƒ^([]‚ň͂܂ꂽ‚à‚Ì) +@item largeŒ^ƒRƒ}ƒ“ƒh +@item (ƒCƒ[ƒW•âŠ®‚Å“ü—͉”\‚È)”Ž®ƒ‚[ƒhê—p‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh +@end itemize + + •Ï‚¦‚½‚¢sectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”‚ª‚³‚ç‚É La@TeX{} ƒRƒ}ƒ“ƒh‚ðŠÜ‚ÞꇂÍA +‚»‚̈ø”‚ðˆÍ‚Þ’†Š‡ŒÊ‚Ìã‚Å @kbd{[prefix] c} ‚ð‰Ÿ‚·‚±‚Æ‚Å’†‚̃Rƒ}ƒ“ƒh‚ð•ÏX +‘ÎÛ”»’è‚©‚眊O‚·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B + +@cindex ŠÂ‹«–¼‚Ì•ÏX[‚©‚ñ‚«‚悤‚ß‚¢‚Ì‚Ö‚ñ‚±‚¤] + +@node Killing LaTeX command, , Changing LaTeX command, Modifying/Deleting +@comment node-name, next, previous, up +@section La@TeX{} ƒRƒ}ƒ“ƒh‚Ìíœ + +@kbd{[prefix] k} ‚Í‹N“®‚·‚éˆÊ’u‚É‚æ‚è +ŽŸ‚̂悤‚È“®ì‚ðs‚¢‚Ü‚·B +@cindex ŠÂ‹«‚Ìíœ[‚©‚ñ‚«‚悤‚Ì‚³‚­‚µ‚æ] + + +@example +‹N“®ˆÊ’u “®ì +\begin, \end‚Ìs @code{\begin\end}ƒyƒA‚Ìíœ +%#BEGIN, %#END ‚Ìs %#BEGIN,%#ENDƒyƒA‚Ìíœ +sectionŒ^ƒRƒ}ƒ“ƒh‚Ìã(’†) sectionŒ^ƒRƒ}ƒ“ƒh‚Ìíœ +ƒtƒHƒ“ƒgŽw’芇ŒÊ‚Ìã ƒtƒHƒ“ƒgŽw’è‚Ìíœ +Š‡ŒÊ‚Ì㠑΂ð‚È‚·Š‡ŒÊ‚Ìíœ +@end example + + +@code{\begin, \end} ‚¨‚æ‚Ñ @code{%#BEGIN, %#END} ‚ð휂·‚éê‡A +@code{\begin, \end} ‚â @code{%#BEGIN, %#END} ‚Ì‘¶Ý‚·‚és‚Í +‚܂邲‚Æ휂³‚ê‚é‚Ì‚ÅA‚»‚ê‚ç‚̈ês‚É @code{\begin} ‚È‚Ç‚ð“ñ‚ˆÈã˜A‚Ë‚Ä +‘‚©‚È‚¢‚悤‚É’ˆÓ‚µ‚Ä‚­‚¾‚³‚¢B +ã‹L‚Ì‚à‚Ì‚Í‚·‚ׂĖ{•¶‚ðˆÍ‚¤u—eŠív‚ð휂·‚é‚悤‚É“­‚«‚Ü‚·‚ªA +universal-argument (@kbd{C-u}) ‚ð‘Å‚Á‚½Œã‚Å@kbd{[prefix] k}‚ðƒ^ƒCƒv‚·‚é‚ÆA +‚»‚ꂼ‚ê‚Ìu—eŠív‚ÉŠÜ‚Ü‚ê‚éu’†gv‚àˆê‹C‚É휂µ‚Ü‚·BˆÈ‰º‚Ì—á‚ðŽQl‚É‚µ +‚ĉº‚³‚¢B + +@example + Œ³‚̃eƒLƒXƒg: [prefix] k C-u [prefix] k + –{•¶\footnote@{‹r’@}‚Å‚·B –{•¶‹r’‚Å‚·B –{•¶‚Å‚·B + ª(ƒJ[ƒ\ƒ‹ˆÊ’u) +@end example + +@node Filling, Includeonly, Modifying/Deleting, Top +@comment node-name, next, previous, up +@chapter Œ…‘µ‚¦ +@cindex Œ…‘µ‚¦[‚¯‚½‚»‚낦] + +@section item‚ÌŒ…‘µ‚¦ +@cindex item‚È‚Ç‚ÌŒ…‘µ‚¦[item‚È‚Æ‚Ì‚¯‚½‚»‚낦] +@cindex prefix i + + itemize ŠÂ‹«’†‚É‚ ‚é@code{\item}‚Ì€–Ú(•¶Í)‚ª•¡”s‚É“n‚éꇂÉA€ +–Ú‚Ì擪‚ðŒ…‘µ‚¦‚µ‚½‚¢ê‡‚É‚ÍA + +@c @table @kbd +@c @item [prefix] i +@c @dots{} item‚ÌŒ…‘µ‚¦ +@c @end table + +@table @kbd +@item M-q + @dots{} Œ…‘µ‚¦ +@end table +@cindex NTT-jTeX[‚¦‚Ê‚Ä‚¢‚¢‚Ä‚¢‚¢‚µ‚¦‚¢‚­] + +@noindent +‚É‚æ‚Á‚ÄA‚»‚Ì item ‚̃Cƒ“ƒfƒ“ƒg‚Ì[‚³‚ɉž‚¶‚Ä fill ‚³‚ê‚Ü‚·B‚È‚¨AŒÃ‚¢ +NTT jTeX ‚ðŽg—p‚µ‚Ä‚¢‚éꇂɂÍALisp •Ï”@code{NTT-jTeX}‚ð@code{t}‚ɃZƒb +ƒg‚µ‚ĉº‚³‚¢B + +@cindex YaTeX-item-regexp + ‚±‚Ì‚Æ‚«A•Ï”@code{YaTeX-item-regexp}‚Ì’l(•W€‚Å‚Í @code{"\\\\item"})‚ð +€–ÚŽw’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ»‚Æ‚µ‚ÄŒŸõ‚ÉŽg—p‚µ‚Ü‚·Bitemize ŠÂ‹«‚ÅA“ÆŽ©‚̃R +ƒ}ƒ“ƒh‚ð’è‹`‚µ‚Ä€–Ú‚ð—ñ‹“‚µ‚Ä‚¢‚éê‡(—Ⴆ‚Î@code{\underlineitem})‚ÍA +@file{~/.emacs} ‚ÅŽŸ‚̂悤‚ÉŽw’肵‚ĉº‚³‚¢B + +@lisp + (setq YaTeX-item-regexp + "\\(\\\\\\(sub\\)*item\\)\\|\\(\\\\underlineitem\\)") +@end lisp + + +‚±‚Ì•Ï”‚ÌŽw’è‚ÌŽd•û‚ª‚æ‚­•ª‚©‚ç‚È‚¢ê‡‚ÍA“ÆŽ©‚Ì€–Ú—ñ‹“ƒRƒ}ƒ“ƒh‚Ì–¼‘O‚ð +@code{@code{"\item"}‚ÅŽn‚Ü‚é‚à‚Ì‚É‚µ‚ĉº‚³‚¢(—Ⴆ‚Î"\itembf"})B + +–ì’¹‚Ì @kbd{M-q} ‚Å‚Í @code{\item} ‚ðŠÂ‹«‚ɉž‚¶‚Ĉȉº‚̂悤‚Éuƒnƒ“ƒOƒCƒ“ +ƒfƒ“ƒgv‚µ‚Ü‚·B + +@example +itemize, enumerateŠÂ‹«: + >\item[‚Ù‚°‚Ù‚°] ‰pŒê‚Å‚ÍA“Á‚ɈӖ¡‚Ì‚È‚¢’PŒê‚ð `foo' ‚Å‚ ‚ç‚킵‚Ü + > ‚·‚ªA‚±‚ê‚Ì“ú–{Œê”Å‚Æ‚à‚¢‚¦‚é’PŒê‚ªu‚Ù‚°‚Ù‚°v + > ‚Å‚·B +descriptionŠÂ‹«: + > \item[‚Ö‚ë‚Ö‚ë] u‚Ù‚°‚Ù‚°v‚ð‚Å‚½‚ç‚ß‚ª’PŒê‚Æ‚µ‚ÄŽg‚Á‚½Žž‚ÉA‘æ + > 2‚Ì‚Å‚½‚ç‚ß‚È’PŒê‚Æ‚µ‚Äu‚Ö‚ë‚Ö‚ëv‚ªŽg‚í‚ê‚邱‚Æ‚ª‘½ + > ‚¢‚悤‚Å‚·B +@end example + +@section ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦ +@cindex ƒpƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦[‚Í‚ç‚­‚ç‚Ó‚Ì‚¯‚½‚»‚낦] +@cindex M-q + + itemizeŠÂ‹«ˆÈŠO‚ł̃pƒ‰ƒOƒ‰ƒt‚ÌŒ…‘µ‚¦(fill)‚ÍAŠî–{“I‚É‘¼‚̃‚[ƒh‚Æ“¯‚¶ +‚悤‚É‹@”\‚µ‚Ü‚·‚ªAverbatimŠÂ‹«‚âAtabularŠÂ‹«‚È‚ÇŒ…‘µ‚¦‚ð‚·‚é‚ƔߎS‚Èó +‹µ‚É‚È‚é‚悤‚Ȋ‹«’†‚Å‚Í‹@”\‚µ‚Ü‚¹‚ñB‚Ü‚½A\verb ‚ÅŠ‡‚Á‚Ä‚ ‚é‚à‚Ì‚ÍŒˆ‚µ‚Ä +s•ªŠ„‚³‚ê‚Ü‚¹‚ñ(•Ï” @code{YaTeX-verb-regexp} ‚ŧŒä) )B‚³‚ç‚ÉAˆêŽž“I‚É +ƒCƒ“ƒfƒ“ƒg‚Ì[‚³‚ð•Ï‚¦‚Ä‚ ‚é‰ÓŠ‚Å‚ÍA‚»‚̃Cƒ“ƒfƒ“ƒg‚Ì擪‚Å@kbd{M-q}‚ð‰Ÿ +‚·‚±‚Æ‚É‚æ‚è fill-prefix ‚ð‚¢‚¿‚¢‚¿•ÏX‚µ‚È‚­‚ÄŒ…‘µ‚¦‚ª‚Å‚«‚Ü‚·B + + +@node Includeonly, What column, Filling, Top +@comment node-name, next, previous, up +@chapter ŸŽè‚Éincludeonly +@cindex ŸŽè‚Éincludeonly[‚©‚‚ĂÉincludeonly] +@cindex includeonly + + ƒtƒ@ƒCƒ‹‚𕪊„‚µ‚Ä•¶Í‚ð“ü—Í‚µ‚Ä‚¢‚鎞‚É‚ÍAƒƒCƒ“ƒtƒ@ƒCƒ‹’†‚É + +@example + \includeonly@{Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹–¼@} +@end example + +@noindent +‚̂悤‚É‘‚¢‚Ä‚¨‚­‚±‚Æ‚ÅAƒ^ƒCƒvƒZƒbƒg‚ÌŽžŠÔ‚ðß–ñ‚Å‚«‚Ü‚·‚ªA‚¿‚å‚Á‚Æ‘¼‚Ì +ƒtƒ@ƒCƒ‹‚ðŽè’¼‚µ‚µ‚½‚¢Žž‚É‚Í +@cindex ‘¼‚̃tƒ@ƒCƒ‹‚ÌŽè’¼‚µ[‚Ù‚©‚Ì‚Ó‚ ‚¢‚é‚Ì‚Ä‚È‚¨‚µ] + +@example + \includeonly@{‚¿‚å‚Á‚ÆŽè’¼‚µ‚µ‚½‚¢ƒtƒ@ƒCƒ‹–¼@} +@end example + + +‚Æ‘‚«’¼‚³‚È‚¯‚ê‚΂Ȃ炸ŽèŠÔ‚ª‚©‚©‚è‚Ü‚·B–ì’¹‚Å‚ÍŒ»Ý•ÒW‚µ‚Ä‚¢‚éƒtƒ@ƒCƒ‹ +–¼‚ªƒƒCƒ“ƒtƒ@ƒCƒ‹‚Ì@code{\includeonly}‚É‚È‚¢ê‡‚É‚ÍŽ©“®“I‚É‚±‚ê‚ðŒŸo‚µA +ŽŸ‚ÌŽwŽ¦‚ð‹Â‚¬‚Ü‚·B + +@example + A)dd R)eplace %)comment? +@end example + + +Œ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚ð @code{\includeonly} ‚̃ŠƒXƒg‚ɉÁ‚¦‚½‚¢Žž‚É‚Í@kbd{a} +‚ðAŒ»Ý•ÒW’†‚̃tƒ@ƒCƒ‹‚¾‚¯‚ð @code{\includeonly} ‚É‚µ‚½‚¢Žž‚Í@kbd{r}‚ðA +@code{\includeonly} ‚Ìs‚ðƒRƒƒ“ƒgƒAƒEƒg‚µ‚Ä–³Œø‰»‚µ‚½‚¢Žž‚É‚ÍA@kbd{%}‚ð +‚»‚ꂼ‚ꉟ‚µ‚ĉº‚³‚¢B + +@node What column, Intelligent newline, Includeonly, Top +@comment node-name, next, previous, up +@chapter ‚±‚±‚Í‚Ç‚±? +@cindex ‚±‚±‚Í‚Ç‚±?[‚±‚±‚Í‚Æ‚±?] +@cindex prefix & +@cindex •¡ŽG‚Ètabular[‚Ó‚­‚³‚‚Ètabular] + + €–Ú”‚Ì‘½‚¢ tabular ‚È‚Ç‚ð‚½‚­‚³‚ñ‘‚¢‚Ä‚¢‚é‚Ɖº‚Ì•û‚Ìs‚ÅA‚¢‚Ü‘‚¢‚Ä +‚¢‚錅‚ª‚Ç‚±‚ɑΉž‚·‚é‚Ì‚©‚í‚©‚ç‚È‚­‚È‚Á‚Ä‚µ‚Ü‚¤‚±‚Æ‚ª‚ ‚è‚Ü‚·B—Ⴆ‚ÎAˆÈ +‰º‚̂悤‚È tabular ‚É‚¨‚¢‚ÄA + +@example + \begin@{tabular@}@{|c|c|c|c|c|c|c|c|@}\hline + Ž–¼&Š‘®&§&ZŠ&“d˜b&FAX&‹AÈæ&‹AÈæ“d˜b\\ \hline + –îã“ñ˜Y & 6 & 223 & ‰¡•lŽs`–k‹æ“ú‹g & xxx-yyy & + zzz-www & ƒgƒ“ƒK & 9876-54321 \\ + “ú‹g¬‘m & 2 & \multicolumn@{2@}@{c|@}@{‹³‚¦‚È‚¢@} + &&&(???) + \\ \hline + \end@{tabular@} +@end example + + +(???)‚Ì•”•ª‚ª‚Ç‚Ì€–Ú‚È‚Ì‚©‚·‚®‚É”»’f‚·‚é‚͓̂‚¢‚Å‚µ‚傤B‚±‚ñ‚ÈŽž‚ÍA + +@table @kbd +@item [prefix] & + @dots{} Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦ +@end table +@cindex Œ»Ý‚̃Jƒ‰ƒ€•\Ž¦[‚¯‚ñ‚³‚¢‚Ì‚©‚ç‚ނЂ悤‚µ] + +@noindent +‚ð‰Ÿ‚·‚ƃJ[ƒ\ƒ‹ˆÊ’u‚̃Jƒ‰ƒ€‚ª‚Ç‚Ì€–Ú‚ÉŠY“–‚·‚é‚©‚ðƒ~ƒjƒoƒbƒtƒ@‚É•\Ž¦‚µ‚Ü +‚·Btabular/arrayŠÂ‹«‚Ì‘æ1s–Ú‚ð€–Ú–¼‚Ì•À‚Ñ‚Æ‚Ý‚È‚µ‚đΉž‚·‚é‚à‚Ì‚ð’T‚µ‚Ü +‚·B‚à‚µ€–Ú–¼‚Æ‚µ‚Ä•Ê‚Ì‚à‚Ì‚ð•\Ž¦‚µ‚Ä—~‚µ‚¢ê‡‚ÍAs“ª‚ð@code{%}‚É‚µ‚ă_ +ƒ~[‚Ì€–Ú•À‚Ñ‚ðì‚Á‚Ä‚¨‚­‚Æ—Ç‚¢‚Å‚µ‚傤B + +@node Intelligent newline, Usepackage cheker, What column, Top +@comment node-name, next, previous, up +@chapter ‚¨‚Ü‚©‚¹‰üs +@cindex ‚¨‚Ü‚©‚¹‰üs[‚¨‚Ü‚©‚¹‚©‚¢‚«‚悤] +@cindex &“ü—Í[&‚ɂ䂤‚è‚æ‚­] + + tabular[*], array, itemize, enumerate, tabbing ŠÂ‹«‚ðbeginŒ^•âŠ®‚Å“ü—Í‚µ +‚½ŽžA‚Ü‚½‚ÍŠeŠÂ‹«“à‚Å + +@table @kbd +@item ESC RET + @dots{} ‚¨‚Ü‚©‚¹‰üs +@end table + + +‚ð‰Ÿ‚·‚ÆA‚»‚̊‹«‚ɉž‚¶‚½sƒGƒ“ƒgƒŠ‚ðŽŸ‚Ìs‚É‘}“ü‚µ‚Ü‚·(beginŒ^•âŠ®Žž‚ÉŽ© +“®‘}“ü‚³‚ꂽƒGƒ“ƒgƒŠ‚ª•s—v‚Èê‡‚Í undo ‚É‚æ‚Á‚ÄÁ‹Ž‚Å‚«‚Ü‚·)B—Ⴆ‚ÎA +tabularŠÂ‹«‚Å‚ÍA‚»‚̊‹«‚̃Jƒ‰ƒ€”‚ɑΉž‚µ‚½ŒÂ”‚Ì @code{&} ‚ɉÁ‚¦As–– +‚Ì @code{\\} ‚ð“ü‚ê‚Ü‚·B‚±‚ÌŽž‚»‚êˆÈ‘O‚É @code{\hline} ‚ª‚ ‚ê‚΂»‚ê‚à•t‚¯ +‰Á‚¦‚Ü‚·BŠÂ‹«‚Æ‚»‚ê‚ɉž‚¶‚ÄŽ©“®“ü—Í‚·‚é‚à‚̂̑Ήž‚͈ȉº‚̂悤‚É‚È‚è‚Ü‚·B + +@itemize +@item @code{tabular}, @code{tabular*}, @code{array} + + ƒJƒ‰ƒ€”-1 ‚¾‚¯‚Ì @code{&} ‚Æ @code{\\}B•K—v‚ɉž‚¶‚Ä @code{\hline} + +@item @code{tabbing} + + ˆês–Ú‚Å’è‹`‚µ‚Ä‚¢‚é @code{\=} ‚Æ“¯‚¶ŒÂ”‚Ì @code{\>}B + +@item @code{itemize}, @code{enumerate}, @code{description}, @code{list} + + @code{\item} ‚Ü‚½‚Í @code{item[]} +@end itemize + + tabular ŠÂ‹«‚Ì—á‚̂悤‚ÉA–{‹@”\‚ÍŠeŠÂ‹«‚̈ês–Ú‚Ì“à—e‚ðŽQl‚É‚µ‚Ä“®ì‚· +‚é‚Ì‚ÅA‚È‚é‚ׂ­“ñs–ÚˆÈ~‚ŌĂÑo‚·‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B + + ‚à‚µA‚»‚Ì‘¼‚̊‹«A—Ⴆ‚Î @code{foo}A‚ɑ΂µ‚Ä@code{‚¨‚Ü‚©‚¹‰üs}‚ð“®ì +‚³‚¹‚½‚¢Žž‚ÍA@code{YaTeX-intelligent-newline-foo} ‚Æ‚¢‚¤–¼‘O‚ÌŠÖ”‚ð’è‹` +‚µ‚Ü‚·B’è‹`‚µ‚½ŠÖ”‚ÍAŒ»Ý‚Ìs‚ɉüs‚ð‘}“ü‚µ‚½’¼Œã‚Ìs“ª‚̈ʒu‚ŌĂ΂ê‚Ü +‚·BŠÖ” @code{YaTeX-indent-line} ‚ðŒÄ‚Ô‚ÆŒ»Ý‚̊‹«‚̃lƒXƒg‚ɉž‚¶‚½[‚³‚É +ƒCƒ“ƒfƒ“ƒg‚³‚ê‚é‚Ì‚ÅA‚±‚ê‚ðŒÄ‚ñ‚Å‚©‚牽‚©‚ð‘}“ü‚·‚é‚悤‚ȃR[ƒh‚ð‘‚­‚Æ‚æ +‚¢‚Å‚µ‚傤B@file{yatexenv.el}“à‚ÌŠÖ” +@code{YaTeX-intelligent-newline-itemize} ‚Ì’è‹`‚È‚Ç‚ðŽQl‚É‚µ‚Ä‚­‚¾‚³‚¢B + + +@node Usepackage cheker, Changing mode of YaTeX, Intelligent newline, Top +@comment node-name, next, previous, up +@chapter æ‰ñ‚èusepackage +@cindex æ‰ñ‚èusepackage[‚³‚«‚Ü‚í‚è] + + beginŒ^AsectionŒ^AmaketitleŒ^A‚¢‚¸‚ê‚©‚ÌLaTeX2eƒ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚ÆA +‚»‚̃}ƒNƒ‚Ì—˜—p‚ÉŠO•”ƒpƒbƒP[ƒW‚ð•K—v‚Æ‚·‚éê‡A‚»‚̃pƒbƒP[ƒW‚ð +–{•¶’†‚Å @code{\usepackage@{@}} ‚µ‚Ä‚¢‚é‚©‚Ç‚¤‚©‚𒲸‚µA‚à‚µ‚µ‚Ä‚¢‚È‚¯‚ê‚Î +ƒvƒŠƒAƒ“ƒuƒ‹‚ɑΉž‚·‚éƒpƒbƒP[ƒW‚ðˆø”‚É‚µ‚½ @code{\usepackage} •¶‚ð +(Šm”FŒã‚É)‘}“ü‚µ‚Ü‚·B + + ‚½‚¾‚µ‚±‚Ì‹@”\‚ª“­‚­‚½‚ß‚É‚ÍAƒpƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚Å’è‹`‚³‚ê‚Ä‚¢‚éƒ}ƒNƒ +ŒQ‚ðalist‚ÌŒ`Ž®‚Å•Ï” @code{YaTeX-package-alist-private} ‚Éݒ肵‚Ä‚¨‚­•K +—v‚ª‚ ‚è‚Ü‚·B + +@node Changing mode of YaTeX, Online help, Usepackage cheker, Top +@comment node-name, next, previous, up +@chapter –ì’¹‚Ì“®ìƒ‚[ƒhØ‚è‘Ö‚¦ +@cindex ƒ‚[ƒhØ‚è‘Ö‚¦[‚à‚¤‚Æ‚«‚è‚©‚¦] +@cindex prefix w + +@table @kbd +@item [prefix] w + @dots{} –ì’¹“®ìƒ‚[ƒhØ‚è‘Ö‚¦ƒƒjƒ…[ +@end table + +@noindent +‚Å–ì’¹Ž©g‚Ì“®ì‚ðŒˆ’è‚·‚éˆÈ‰º‚̃‚[ƒh‚ðØ‚è‘Ö‚¦‚Ü‚·B + +@itemize @bullet +@item C³ƒ‚[ƒh +@item –ì’¹”Ž®ƒ‚[ƒh +@end itemize + +C³ƒ‚[ƒh‚ÍAŠJ‚«Š‡ŒÊ“ü—ÍŽž‚̈—‚ðƒRƒ“ƒgƒ[ƒ‹‚µAC³ƒ‚[ƒhON‚ÌŽž‚ÍŠJ‚« +Š‡ŒÊ‚Ì“ü—Í‚ÍŠJ‚«Š‡ŒÊ‚Ì‚Ý‚Ì“ü—Í‚É‚È‚èAC³ƒ‚[ƒhOFF‚ÌŽž‚ÍŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚¾ +‚¯‚ŕ‚¶Š‡ŒÊ‚Ü‚Å“ü—Í‚µ‚Ü‚·BƒfƒtƒHƒ‹ƒg(‹N“®Žž)‚ÌÝ’è‚Í@emph{OFF}‚Å‚·B + + –ì’¹”Ž®ƒ‚[ƒh‚ÍA•Ï” @code{YaTeX-auto-math-mode} ‚ª @code{nil} ‚ÌŽž‚Ì +‚Ý—LŒø‚ÅA‚±‚Ì‚Æ‚«@kbd{;}‚â@kbd{:}‚ð‰Ÿ‚µ‚½Žž(@ref{Image completion}ŽQÆ)‚ÉA +‚ǂ̂悤‚ȃCƒ[ƒW•âŠ®‚ð‹@”\‚³‚¹‚é‚©A’Êí‚̃L[‚Æ‚µ‚Ä‹@”\‚³‚¹‚é‚©‚ðŽè“®‚Å +Ø‚è‘Ö‚¦‚Ü‚·BŽ©“®”»’肪’x‚¢ƒ}ƒVƒ“‚Å‚Í@code{YaTeX-auto-math-mode} +@code{nil}‚ɃZƒbƒg‚µA–ì’¹”Ž®ƒ‚[ƒh‚ðŽè“®‚ÅØ‚è‘Ö‚¦‚é‚Æ—Ç‚¢‚Å‚µ‚傤B + + +@node Online help, Inclusion hierarchy browser, Changing mode of YaTeX, Top +@comment node-name, next, previous, up +@chapter ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv +@cindex ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv[‚¨‚ñ‚ç‚¢‚ñ‚Ö‚é‚Ó] +@cindex apropos +@cindex ƒL[ƒ[ƒhŒŸõ[‚«‚¢‚í‚ ‚Æ‚¯‚ñ‚³‚­] +@cindex prefix ? +@cindex prefix / + + Žg‚¨‚¤‚Æ‚·‚é La@TeX{} ƒRƒ}ƒ“ƒh‚Ì—p–@‚ª‚æ‚­•ª‚©‚ç‚È‚¢Žž‚ÍAƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ +ƒv‚ð‚Ђ«‚Ü‚µ‚傤Bƒwƒ‹ƒv‚ÉŠÖ‚·‚éƒL[‚ɂ͈ȉº‚Ì‚à‚Ì‚ª‚ ‚è‚Ü‚·B + +@table @kbd +@item [prefix] ? + @dots{} ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv +@item [prefix] / + @dots{} ƒIƒ“ƒ‰ƒCƒ“apropos +@end table + +@section ƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒv +@cindex ƒOƒ[ƒoƒ‹ƒwƒ‹ƒv[‚­‚남‚Í‚é‚Ö‚é‚Ó] +@cindex ƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒv[‚Ó‚ç‚¢‚Ö‚¦‚Æ‚Ö‚é‚Ó] +@cindex YaTeX-help-file +@cindex YaTeX-help-file-private + + uƒIƒ“ƒ‰ƒCƒ“ƒwƒ‹ƒvv‚ÍAˆê”Ê“I‚È La@TeX{} ƒRƒ}ƒ“ƒh(ƒfƒtƒHƒ‹ƒg‚ŃJ[ƒ\ƒ‹ +ˆÊ’u‚̃Rƒ}ƒ“ƒh)‚ɑ΂·‚éà–¾‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B‚±‚ÌŽžŽQÆ‚³‚ê‚éƒw +ƒ‹ƒv—pƒtƒ@ƒCƒ‹‚É‚ÍuƒOƒ[ƒoƒ‹ƒwƒ‹ƒvv‚Æuƒvƒ‰ƒCƒx[ƒgƒwƒ‹ƒvv‚Ì“ñŽí—Þ‚ª‚  +‚èA‘OŽÒ‚Í La@TeX{} ‚Ì•W€ƒRƒ}ƒ“ƒh‚ÌŽå‚È‚à‚Ì‚Ìà–¾‚ðŠÜ‚Þƒtƒ@ƒCƒ‹‚ÅA•Ï” +@code{YaTeX-help-file}‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚̃tƒ@ƒCƒ‹‚Í’ÊíŒö‹¤‚ÌêŠ(ƒf +ƒtƒHƒ‹ƒg‚Å@code{$EMACSEXECPATH})‚É’u‚©‚êA’N‚à‚ª‚»‚Ì“à—e‚ðXV‚Å‚«‚é‚悤‚É +‘Sˆõ‚É‘‚«ž‚ÝŒ ‚ª—^‚¦‚ç‚ê‚é‚ׂ«‚à‚Ì‚Å‚·BŒãŽÒ‚ÍA”ñ•W€‚à‚µ‚­‚ÍŒÂl“I‚ȃ} +ƒNƒ’è‹`‚ÉŠÖ‚·‚éà–¾‚ª‘‚©‚ê‚Ä‚¢‚éƒtƒ@ƒCƒ‹‚ÅA•Ï” +@code{YaTeX-help-file-private}‚Ì’l‚ÅŽw’肳‚ê‚Ü‚·B‚±‚¿‚ç‚̓†[ƒU‚̃z[ƒ€ƒfƒB +ƒŒƒNƒgƒŠ‚̉º‚È‚Ç‚É’u‚©‚ê‚Ü‚·B + +@section ƒIƒ“ƒ‰ƒCƒ“apropos + + uƒIƒ“ƒ‰ƒCƒ“aproposv‚Í GNU Emacs ‚Ì apropos ‚Æ“¯—lAƒ†[ƒU‚ªŽw’肵‚½ƒL[ +ƒ[ƒh‚ðà–¾•¶‚ÉŠÜ‚Þ€–Ú‚·‚ׂĂð—ׂ̃oƒbƒtƒ@‚É•\Ž¦‚µ‚Ü‚·B + + ‚à‚µA’²‚ׂ悤‚Æ‚µ‚½La@TeX{}ƒRƒ}ƒ“ƒh‚ɑ΂·‚éà–¾‚ªƒwƒ‹ƒvƒtƒ@ƒCƒ‹’†‚ÉŒ©‚ +‚©‚ç‚È‚©‚Á‚½ê‡‚ÍAà–¾•¶‚Ì“ü—Í‚ð‹‚ß‚Ä‚­‚é‚Ì‚ÅA‰Â”\‚Å‚ ‚ê‚ÎŽQl‘‚È‚Ç‚ð +’²‚ׂĂ»‚̃Rƒ}ƒ“ƒh‚Ìà–¾‚ð“ü—Í‚µ‚Ä‚­‚¾‚³‚¢B‚à‚µA‚È‚É‚©•W€“I‚ȃRƒ}ƒ“ƒh‚É +‘΂·‚éà–¾‚ð‘‚¢‚½‚È‚ç‚΂º‚ÐŽ„‚Ü‚Å‚»‚Ìà–¾‚ð‚¨‘—‚艺‚³‚¢BŽŸ‰ñ‚Ì”z•z‚ÉŠÜ‚ß +‚½‚¢‚ÆŽv‚¢‚Ü‚·B + +@node Inclusion hierarchy browser, Cooperation with other packages, Online help, Top +@comment node-name, next, previous, up +@chapter ƒCƒ“ƒNƒ‹[ƒh\‘¢ƒuƒ‰ƒEƒU +@cindex ƒCƒ“ƒNƒ‹[ƒh\‘¢[‚¢‚ñ‚­‚邤‚Æ‚±‚¤‚»‚¤] +@cindex prefix d + +•¡”‚̃tƒ@ƒCƒ‹‚É•ªŠ„‚µ‚Ä‚¢‚éƒhƒLƒ…ƒƒ“ƒg‚ð‘‚¢‚Ä‚¢‚éê‡A + +@table @kbd +@item [prefix] d + @dots{} ƒCƒ“ƒNƒ‹[ƒh\‘¢ƒuƒ‰ƒEƒY +@end table + +@noindent +‚ð‰Ÿ‚·‚ÆA‚»‚̃hƒLƒ…ƒƒ“ƒg‚Ìeƒtƒ@ƒCƒ‹‚ð•·‚¢‚Ä—ˆ‚Ü‚·B‚±‚±‚Å‘S‚Ẵtƒ@ƒCƒ‹ +‚Ìe‚Æ‚È‚éƒtƒ@ƒCƒ‹(ƒfƒtƒHƒ‹ƒg‚ªŽ¦‚³‚ê‚Ä‚¢‚é‚Ì‚Å‘å’ï‚ÍRET‚Ì‚Ý)‚ð“ü—Í‚·‚é‚Æ +ƒCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‘S‚Ẵtƒ@ƒCƒ‹‚ð‰ðÍ‚µAƒCƒ“ƒNƒ‹[ƒhó‹µ‚ðŽ‹Šo“I‚É•\Ž¦ +‚µ‚Ü‚·B‚±‚̃oƒbƒtƒ@‚ł͈ȉº‚̃L[‘€ì‚ª—LŒø‚Å‚·B + +@table @kbd +@item n + @dots{} ŽŸ‚Ìs‚Ɉړ®‚µ‘Ήž‚·‚éƒtƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ +@item p + @dots{} ã‚Ìs‚Ɉړ®‚µ‘Ήž‚·‚éƒtƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ +@item N + @dots{} “¯‚¶ƒCƒ“ƒNƒ‹[ƒhƒŒƒxƒ‹‚ÌŽŸ‚̃tƒ@ƒCƒ‹‚Ɉړ® +@item P + @dots{} “¯‚¶ƒCƒ“ƒNƒ‹[ƒhƒŒƒxƒ‹‚Ì‘O‚̃tƒ@ƒCƒ‹‚Ɉړ® +@item j + @dots{} ŽŸ‚Ìs‚Ɉړ® +@item k + @dots{} ã‚Ìs‚Ɉړ® +@item u + @dots{} ˆê‘ãe‚É‚ ‚½‚éƒtƒ@ƒCƒ‹‚Ɉړ® +@item . + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚̃tƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚É•\Ž¦ +@item SPC + @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚ðƒXƒNƒ[ƒ‹ƒAƒbƒv +@item DEL, b + @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚ðƒXƒNƒ[ƒ‹ƒ_ƒEƒ“ +@item < + @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚Ì擪‚ð•\Ž¦ +@item > + @dots{} —ׂ̃oƒbƒtƒ@‚̑Ήžƒtƒ@ƒCƒ‹‚Ì––”ö‚ð•\Ž¦ +@item ' + @dots{} (@kbd{<}‚â@kbd{>}‚ÌŒã‚Å)Œ³‚Ì•\Ž¦ˆÊ’u‚É–ß‚é +@item RET, g + @dots{} ƒJ[ƒ\ƒ‹ˆÊ’u‚̃tƒ@ƒCƒ‹‚ð—ׂ̃oƒbƒtƒ@‚ŃI[ƒvƒ“ +@item mouse-2 + @dots{} RET‚Æ“¯‚¶(ƒEƒBƒ“ƒhƒEŽg—pŽž‚Ì‚Ý) +@item o + @dots{} —ׂ̃EƒBƒ“ƒhƒE‚Ɉړ® +@item 1 + @dots{} ‘¼‚̃EƒBƒ“ƒhƒE‚ðÁ‚· +@item - + @dots{} ƒuƒ‰ƒEƒYƒEƒBƒ“ƒhƒE‚𬂳‚­‚·‚é +@item + + @dots{} ƒuƒ‰ƒEƒYƒEƒBƒ“ƒhƒE‚ð‘å‚«‚­‚·‚é +@item ? + @dots{} ƒwƒ‹ƒv•\Ž¦ +@item q + @dots{} •\Ž¦‘O‚Ìó‘Ô‚É–ß‚é +@end table + + ‚½‚¾‚µA—ׂ̃EƒBƒ“ƒhƒE‚̃tƒ@ƒCƒ‹‚Ì“à—e‚ð•\Ž¦‚·‚é‹@”\‚ÉŠÖ‚µ‚Ä‚ÍA‘Ήž‚·‚é +ƒtƒ@ƒCƒ‹‚ðƒNƒ[ƒY‚µ‚Ä‚µ‚Ü‚¤‚Æ‚¤‚Ü‚­“­‚«‚Ü‚¹‚ñ‚Ì‚Å‚²’ˆÓ‚­‚¾‚³‚¢B + +@node Cooperation with other packages, Customizations, Inclusion hierarchy browser, Top +@comment node-name, next, previous, up +@chapter ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg +@cindex ‘¼ƒpƒbƒP[ƒW‚Ƃ̘AŒg[‚½‚͂‚¯‚¦‚µ‚Æ‚Ì‚ê‚ñ‚¯‚¢] + +@section gmhist +@cindex gmhist +@cindex ƒRƒ}ƒ“ƒhƒqƒXƒgƒŠ[‚±‚Ü‚ñ‚ƂЂ·‚Æ‚è] +@cindex ƒqƒXƒgƒŠ[‚Ђ·‚Æ‚è] + + @file{gmhist.el}‚Æ@file{gmhist-mh.el} ‚ðƒ[ƒh‚µ‚Ä‚¢‚éê‡AƒvƒŒƒ”ƒ…[ƒR +ƒ}ƒ“ƒh‚Ì“ü—Í(@kbd{[prefix] tp]})AˆóüƒRƒ}ƒ“ƒh‚Ì“ü—Í(@kbd{[prefix] tl})‚Ì +Žž‚É“Æ—§‚µ‚½ƒqƒXƒgƒŠ‚ð—˜—p‚Å‚«‚Ü‚·B‚»‚ꂼ‚ê‚̃vƒƒ“ƒvƒg‚ÅA@kbd{M-p} ‚ð‰Ÿ +‚·‚Æ’¼‘O‚É—˜—p‚µ‚½ƒRƒ}ƒ“ƒh•¶Žš—ñ‚ð‚­‚è•Ô‚µŒÄ‚Ño‚·‚±‚Æ‚ª‚Å‚«‚Ü‚·B + +@section min-out +@cindex min-out + + @file{min-out.el} (@code{outline-minor-mode}) ‚Æ–ì’¹‚ð‘g‚݇‚킹‚ÄŽg‚¤‚± +‚Æ‚à‚à‚¿‚ë‚ñ‰Â”\‚Å‚·BÝ’è‚Ì•û–@‚ÉŠÖ‚µ‚Ä‚Í@file{yatexm-o.el}‚ð‚²——‚­‚¾‚³‚¢B + +@node Customizations, Etc, Cooperation with other packages, Top +@comment node-name, next, previous, up +@chapter ƒJƒXƒ^ƒ}ƒCƒY +@cindex ƒJƒXƒ^ƒ}ƒCƒY[‚©‚·‚½‚Ü‚¢‚·] +@cindex ƒL[ƒAƒTƒCƒ“[‚«‚¢‚ ‚³‚¢‚ñ] + + –ì’¹‚Ì“®ì‚ð§Œä‚·‚éŽíX‚Ì•Ï”‚ð“ÆŽ©‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA•âŠ®“ü +—Í‚ð‹N“®‚·‚éƒL[ƒAƒTƒCƒ“‚ð•Ï‚¦‚½‚èAŠÂ‹«–¼‚̕⊮Œó•â‚ð‚³‚ç‚É[ŽÀ‚³ +‚¹‚邱‚Æ‚È‚Ç‚ª‚Å‚«‚Ü‚·B + +@menu +* Lisp variables:: lisp •Ï” +* Add-in functions:: •t‰ÁŠÖ”(ƒAƒhƒCƒ“ŠÖ”) +@end menu + +@node Lisp variables, Add-in functions, Customizations, Customizations +@comment node-name, next, previous, up +@section lisp •Ï” +@cindex prefixƒL[•ÏX[prefix‚«‚¢‚Ö‚ñ‚±‚¤] + + —Ⴆ‚Î prefix ƒL[‚ð @kbd{C-c} ˆÈŠO‚̃L[‚É‚µ‚½‚¢ê‡‚ÍA +@code{YaTeX-prefix}‚É prefix ƒL[‚É‚µ‚½‚¢ƒVƒ“ƒ{ƒ‹‚ð’è‹`‚µ‚Ä‚­‚¾‚³‚¢B‚³‚ç +‚ÉAu@kbd{C-c ‰pŽš}v‚Æ‚¢‚¤ƒL[ƒoƒCƒ“ƒh‚Í“ÆŽ©‚ÌŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚é‚Ì‚ÅŽg +‚¢‚½‚­‚È‚¢B‚±‚̂悤‚ÈŽž‚ÍA@code{YaTeX-inhibit-prefix-letter} ‚ð @code{t} +‚ÉÝ’è‚·‚邱‚Æ‚É‚æ‚èA@kbd{C-c ‰pŽšc}‚̃oƒCƒ“ƒh‚ª‘S‚ÄA‘Ήž‚·‚é@kbd{C-c +C-‰pŽšc}‚É•Ï‚í‚è‚Ü‚·(‚½‚¾‚µAbeginŒ^ largeŒ^•âŠ®‚̑啶Žš‹N“®‚É‚æ‚郊ƒWƒ‡ +ƒ“Žw’è‚͉”\‚È‚Ü‚Ü‚Å‚·B‚±‚ê‚à–³Œø‚É‚µ‚½‚¢ê‡‚Í@code{t}‚Å‚Í‚È‚­ 1 ‚ɃZƒb +ƒg‚µ‚ĉº‚³‚¢B)B + +@menu +* All customizable variables:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— +* Sample definitions:: ƒJƒXƒ^ƒ}ƒCƒY•Ï”Ý’è—á +* Hook variables:: hook•Ï” +* Hook file:: hook—pƒtƒ@ƒCƒ‹ +@end menu + +@node All customizable variables, Sample definitions, Lisp variables, Lisp variables +@comment node-name, next, previous, up +@subsection ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê—— +@cindex ƒJƒXƒ^ƒ}ƒCƒY•Ï”ˆê——[‚©‚·‚½‚Ü‚¢‚·‚Ö‚ñ‚·‚¤‚¢‚¿‚ç‚ñ] + + yatex-mode ‚É‚¨‚¯‚鎟‚Ì•Ï”‚ªƒJƒXƒ^ƒ}ƒCƒY‰Â”\‚Å‚·B@file{~/.emacs} ‚Å +@code{setq} ‚µ‚Ä‚¨‚¯‚ÎA‚»‚¿‚ç‚Ì’è‹`‚ª—D悳‚ê‚Ü‚·BŠ‡ŒÊ‚Ì’†‚̓fƒtƒHƒ‹ƒg’l +‚Å‚·BŽÀÛ‚É•Ï”‚Ì’l‚ð•ÏX‚·‚éê‡‚Í @kbd{M-x describe-variable} ‚Å +•Ï”‚ÌÚׂÈà–¾‚ðŽQÆ‚µ‚Ä‚­‚¾‚³‚¢B + +@defvar YaTeX-prefix +yatex-mode ’†‚̃vƒŠƒtƒBƒNƒXƒL[ (@kbd{\C-c}) +@end defvar + +@defvar YaTeX-inhibit-prefix-letter +prefix ƒL[‚Ì’¼Œã‚̃L[ƒoƒCƒ“ƒh‚Å @kbd{‰pŽš} ‚Ì‚à‚Ì‚ð @kbd{C-‰pŽš} ‚É•ÏX +(@code{nil}) +@end defvar + +@defvar YaTeX-fill-prefix +–{•¶‚ð‘‚­Žž‚Ìs“ª‚É‘}“ü‚·‚éÚ“ªŽ«‚·‚È‚í‚¿ fill-prefix (@code{""(nil)}) +@end defvar + +@defvar YaTeX-user-completion-table +ŠwK‚µ‚½La@TeX{}ƒRƒ}ƒ“ƒh•Û‘¶ƒtƒ@ƒCƒ‹–¼ (@code{"~/.yatexrc"}) +@end defvar + +@defvar YaTeX-kanji-code +•¶‘‚ð쬂·‚鎞‚ÌŠ¿ŽšƒR[ƒh +nil=Šù‘¶‚̃R[ƒh‚Ì‚Ü‚Ü 0=no-conversion 1=Shift JIS, +2=JIS, 3=EUC, 4=UTF-8 (2 (MS-DOS‚Å‚Í1)) +@end defvar + +@defvar tex-command +La@TeX{}ƒ^ƒCƒvƒZƒbƒ^ƒRƒ}ƒ“ƒh–¼ (@code{"platex"}) +@end defvar + +@defvar dvi2-command +ƒvƒŒƒ”ƒ…[ƒAƒRƒ}ƒ“ƒh–¼ (@code{"xdvi -geo +0+0 -s 4"}) +@end defvar + +@defvar dviprint-command-format +dviƒtƒ@ƒCƒ‹‚̈óü‚ÉŽg‚í‚ê‚éƒRƒ}ƒ“ƒhŽ® (@code{"dvi2ps %f %t %s | lpr"}) +@end defvar + +@defvar dviprint-from-format +ã‚Ì@code{%f}‚É‘Š“–‚·‚éŠJŽnƒy[ƒWŽw’è‘Ž®A@code{%b} ‚ªŠJŽnƒy[ƒW”Ô†‚É•Ï +‚í‚é (@code{"-f %b"}) +@end defvar + +@defvar dviprint-to-format +@code{%t} ‚É‘Š“–‚·‚éI—¹ƒy[ƒWŽw’è‘Ž®A@code{%e}‚ªI—¹ƒy[ƒW”Ô†‚É•Ï‚í‚é +(@code{"-t %e"}) +@end defvar + +@defvar makeindex-command +makeindexƒRƒ}ƒ“ƒh (@code{"makeindex"} (MS-DOS‚Å‚Í@code{"makeind"})) +@end defvar + +@defvar YaTeX-dvipdf-command +dvi‚ðPDF‚É•ÏŠ·‚·‚éƒRƒ}ƒ“ƒh (@code{"dvipdfmx"}) +@end defvar + +@defvar YaTeX-need-nonstop +@code{\nonstopmode@{@}}‚ðŽ©“®“I‚É•t‰Á‚·‚é‚© (@code{nil}) +@end defvar + +@defvar latex-warning-regexp +latexƒRƒ}ƒ“ƒh‚Ìo—Í‚·‚éƒEƒH[ƒjƒ“ƒOs‚̳‹K•\Œ» (@code{"line.* [0-9]*"}) +@end defvar + +@defvar latex-error-regexp +“¯‚¶‚­ƒGƒ‰[s‚̳‹K•\Œ» (@code{"l\\.[1-9][0-9]*"}) +@end defvar + +@defvar latex-dos-emergency-message +MS-DOSã‚Å“®ì‚·‚é latex ƒRƒ}ƒ“ƒh‚ªAƒGƒ‰[‚É‚æ‚è’âŽ~‚·‚é‚Æ‚«o—Í‚·‚郃b +ƒZ[ƒW (@code{"Emergency stop"}) +@end defvar + +@defvar latex-message-kanji-code +ƒ^ƒCƒvƒZƒbƒ^‚Ìo—Í‚·‚郃bƒZ[ƒW‚ÌŠ¿ŽšƒR[ƒh.ƒ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@ +‚Ìo—Í‚ª‰»‚¯‚鎞‚ÍA‚±‚ê‚ðÝ’è‚·‚é (2, Nemacs‚Å‚Ì‚Ý—LŒø) +@end defvar + +@defvar NTT-jTeX +ŒÃ‚¢NTT-j@TeX{}Žg—pŽž‚̂悤‚ɃCƒ“ƒfƒ“ƒg‚µ‚½s‚Ì擪‚Æ‘O‚Ìs‚Ì +(ƒ^ƒCƒvƒZƒbƒgŒã‚Ì)ŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ðŒ™‚¤ê‡‚Í@code{t}‚É‚·‚é +(@code{nil}) +@end defvar + +@defvar YaTeX-item-regexp +item‚ÌŒ…‘µ‚¦‚ÌŽž‚É—p‚¢‚éAitem‚̳‹K•\Œ» (@code{"\\\\(sub\\)*item"}) +@end defvar + +@defvar YaTeX-verb-regexp +verbƒRƒ}ƒ“ƒh‚̳‹K•\Œ»B擪‚Ì\\\\‚͂‚¯‚È‚¢ (@code{"verb\\*?\\|path"}) +@end defvar + +@defvar YaTeX-nervous +ƒ[ƒJƒ‹Ž«‘‚ð—p‚¢‚鎞 @code{t} (@code{t}) +@end defvar + +@defvar YaTeX-sectioning-regexp +ƒZƒNƒVƒ‡ƒ“‹æØ‚èÝ’èƒRƒ}ƒ“ƒh‚̳‹K•\Œ» +(@code{"\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"}) +@end defvar + +@defvar YaTeX-fill-inhibit-environments +fill ‚ð—}Ž~‚·‚éŠÂ‹«–¼‚̃ŠƒXƒg +(@code{'("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*" "equation" "math" "displaymath" "verbatim" "verbatim*")}) +@end defvar + +@defvar YaTeX-uncomment-once +—̈æuncomment‚Ås“ª‚Ì•¡”‚Ì@code{%}‚ð‘S‚Ä휂·‚é‚© (@code{nil}) +@end defvar + +@defvar YaTeX-close-paren-always +ŠJ‚«Š‡ŒÊ‚Ì“ü—Í‚Åí‚ɕ‚¶Š‡ŒÊ‚ð“ü—Í‚·‚é (@code{t}) +@end defvar + +@defvar YaTeX-auto-math-mode +”Ž®ƒ‚[ƒh‚ÌØ‚è‘Ö‚¦‚ðŽ©“®“I‚És‚¤ (@code{t}) +@end defvar + +@defvar YaTeX-math-key-list-private +”Ž®ƒCƒ[ƒW•âŠ®‚Å—p‚¢‚é (ƒvƒŠƒtƒBƒNƒXƒL[ . ‘Ήž•âŠ®ƒe[ƒuƒ‹) ‚Ì +alist (@code{nil})B•âŠ®ƒe[ƒuƒ‹‚Ì‘‚«•û‚ɂ‚¢‚Ä‚Í@file{yatexmth.el}‚ðŽQÆB +@end defvar + +@defvar YaTeX-default-pop-window-height +1‰æ–Ê‚ÌŽž‚Ƀ^ƒCƒvƒZƒbƒgƒoƒbƒtƒ@‚ð‰‚ß‚Ä쬂·‚鎞‚Ì‚‚³B”’l‚Ås”A”Žš +•¶Žš—ñ‚ÅEmacsƒEƒBƒ“ƒhƒE‚ɑ΂·‚é•S•ª—¦ (10) +@end defvar + +@defvar YaTeX-help-file +‹¤—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (@file{$doc-directory/../../site-lisp/YATEXHLP.jp}) +@end defvar + +@defvar YaTeX-help-file-private +ŒÂl—pƒwƒ‹ƒvƒtƒ@ƒCƒ‹ (@file{"~/YATEXHLP.jp"}) +@end defvar + +@defvar YaTeX-no-begend-shortcut +@kbd{[prefix] b ??} ‚̃Vƒ‡[ƒgƒJƒbƒg‚ðŽg‚킸A@kbd{[prefix] b} ‚¾‚¯‚ŕ⊮ +“ü—Í‚É“ü‚é (@code{nil}) +@end defvar + +@defvar YaTeX-hilit-pattern-adjustment-private +³‹K•\Œ»‚Æ‚»‚ê‚Ƀ}ƒbƒ`‚·‚é‚à‚̘̂_—“IˆÓ–¡‚ðƒVƒ“ƒ{ƒ‹‚Å‚ ‚ç‚킵‚½‚à‚Ì‚Ì +ƒŠƒXƒgc‚̃ŠƒXƒgBhilit19 ‚ð‘g‚Ýž‚ñ‚Å‚¢‚鎞‚Ì‚Ý—LŒøB +Ú‚µ‚­‚Í @code{(assq 'yatex-mode hilit-patterns-alist)} +‚µ‚½Œ‹‰Ê‚ÆA•Ï” @code{YaTeX-hilit-pattern-adjustment-default} ‚Ì’l(‚Æê‡ +‚É‚æ‚Á‚Ä‚Í hilit19 ‚̃hƒLƒ…ƒƒ“ƒg)‚ðŽQÆ‚¹‚æB +@end defvar + +@defvar YaTeX-sectioning-level +LaTeX‚̃ZƒNƒVƒ‡ƒ“’PˆÊ錾ƒRƒ}ƒ“ƒh‚Æ‚»‚̘_—“I‚‚³‚ÌalistB +@end defvar + +@defvar YaTeX-hierarchy-ignore-heading-regexp +Hierarchy ƒoƒbƒtƒ@‚Í’Êíƒtƒ@ƒCƒ‹ƒwƒbƒ_‚Æ‚µ‚ÄALaTeX‚̃ZƒNƒVƒ‡ƒ“錾ƒRƒ}ƒ“ +ƒh‚̈ø”‚ðŒŸõ‚µA‚»‚ꂪ‚È‚¯‚ê‚΃Rƒƒ“ƒgs‚ð’T‚·‚ªA‚»‚ÌۂɃwƒbƒ_‚Æ‚µ‚Ä‚Í +ˆÓ–¡‚ðŽ‚½‚È‚¢ƒpƒ^[ƒ“‚ð‚±‚Ì•Ï”‚ÉÝ’è‚·‚éBƒfƒtƒHƒ‹ƒg‚Å‚Í RCS ƒwƒbƒ_‚ƃ‚[ +ƒhŽw’ès(-*- xxx -*-)‚ªÝ’肳‚ê‚Ä‚¢‚éB +@end defvar + +@defvar YaTeX-skip-default-reader +Non-nil ‚ÉÝ’è‚·‚é‚ÆsectionŒ^ƒRƒ}ƒ“ƒh‚̈ø”“ü—ÍŽžAƒAƒhƒCƒ“ŠÖ”‚ª‚È‚¯‚ê‚Î +ƒ~ƒjƒoƒbƒtƒ@‚Å‚Ì“Ç‚Ýž‚Ý‚ð‚¹‚¸‚É“ü—Í‚ðŠ®—¹‚³‚¹‚é (@code{nil}) +@end defvar + +@defvar YaTeX-create-file-prefix-g +@code{\include}‚È‚Ç‚Å @kbd{prefix g}‚µ‚½Žž‚ÉAƒWƒƒƒ“ƒv悪‘¶Ý‚µ‚È‚¢ƒtƒ@ƒC +ƒ‹‚Å‚ ‚Á‚Ä‚àƒI[ƒvƒ“‚·‚é (@code{nil}) +@end defvar + +@defvar YaTeX-simple-messages +ŠeŽí•âŠ®Žž‚̃ƒbƒZ[ƒWo—Í‚ðŠÈ‘f‰»‚·‚é (@code{nil}) +@end defvar + +@defvar YaTeX-hilit-sectioning-face +F•t‚¯‚ª—LŒø‚ÈŽž‚Ì @code{\part} ‚ÌF +(@code{'(yellow/dodgerblue yellow/slateblue)})B +ƒŠƒXƒg‚Ì‘æˆê—v‘f‚Í @code{hilit-background-mode} ‚ª @code{'light} ‚ÌŽž‚ÌA +‘æ“ñ—v‘f‚Í @code{'dark} ‚ÌŽž‚Ì @code{\chapter} ‚ÌF‚ÅA•¶ŽšF/”wŒiF ‚Ì‚æ +‚¤‚ÉŽw’è‚·‚éB +@end defvar + +@defvar YaTeX-hilit-sectioning-attenuation-rate +F•t‚¯‚ª—LŒø‚ÈŽž‚ÌA@code{\subparagraph} ‚ÌF‚ð @code{\chapter} ‚Ì”Z“x‚̉½ +%”–‚­‚µ‚½‚à‚Ì‚É‚·‚é‚© (@code{'(15 40)}) @code{YaTeX-hilit-sectioning-face} +‚Ì€ŽQÆB +@end defvar + +@defvar YaTeX-use-AMS-LaTeX +AMS-LaTeX ‚ðŽg—p‚·‚éê‡‚Í @code{t} ‚ÉÝ’è‚·‚é (@code{nil}) +@end defvar + +@defvar YaTeX-use-LaTeX2e +LaTeX2e ‚ðŽg—p‚·‚éê‡‚Í @code{t} ‚ÉÝ’è‚·‚é (@code{t}) +@end defvar + +@defvar YaTeX-template-file +V‹Kƒtƒ@ƒCƒ‹ì¬Žž‚ÉŽ©“®‘}“ü‚·‚éƒtƒ@ƒCƒ‹–¼ (@code{~/work/template.tex}) +@end defvar + +@defvar YaTeX-search-file-from-top-directory +input‚·‚éƒtƒ@ƒCƒ‹‚ð’T‚·‚Æ‚«‚̊fƒBƒŒƒNƒgƒŠ‚ðmainƒtƒ@ƒCƒ‹‚Ì‚ ‚éƒfƒBƒŒƒNƒg +ƒŠ‚É‚·‚é‚© (@code{t}) +@end defvar +@defvar YaTeX-use-font-lock +ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä font-lock ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© +(@code{(featurep 'font-lock)}) +@end defvar + +@defvar YaTeX-use-hilit19 +ƒ\[ƒX‚ÌF‚¯ƒpƒbƒP[ƒW‚Æ‚µ‚Ä hilit19 ‚ð—˜—p‚·‚é‚©‚Ç‚¤‚© +(@code{(featurep 'hilit19)}) +@end defvar + +@defvar YaTeX-use-italic-bold +italic, boldƒtƒHƒ“ƒg‚ð–ì’¹‚ª’T‚·‚©‚Ç‚¤‚© (Emacs20ˆÈ~‚È‚ç@code{t}) +font-lock—˜—pŽž‚Ì‚Ý—LŒøB +(@code{(featurep 'hilit19)} +@end defvar + +@defvar YaTeX-singlecmd-suffix +‘S‚Ä‚ÌmaketitleŒ^ƒRƒ}ƒ“ƒh‚̕⊮“ü—Í’¼Œã‚É‘}“ü‚·‚镶Žš—ñB +@code{"@{@}"} ‚È‚Ç‚ª‚¨Š©‚ßB +@end defvar + +@defvar YaTeX-package-alist-private +LaTeX2e‚̃pƒbƒP[ƒW–¼‚Æ‚»‚Ì’†‚ÉŠÜ‚Ü‚ê‚éƒ}ƒNƒ‚̃ŠƒXƒgB +“KØ‚Éݒ肵‚Ä‚¨‚­‚Æ–{•¶“ü—ÍŽž‚Ƀ}ƒNƒ‚ð•âŠ®“ü—Í‚·‚é‚Æ +‚»‚̃}ƒNƒ‚É•K—v‚ȃpƒbƒP[ƒW‚ð usepackage ‚·‚é‚©Ž©“®“I‚ÉŒŸ¸‚µ‚Ä‚­‚ê‚éB +‚µ‚Ä‚¢‚È‚¯‚ê‚Î \usepackage ‚ðŽ©“®’ljÁ‚·‚邱‚Æ‚à‚Å‚«‚éB +ƒŠƒXƒg‚Í +@lisp + '((ƒpƒbƒP[ƒW–¼1 + (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) + (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc)) + (ƒpƒbƒP[ƒW–¼2 + (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc) + (•âŠ®ƒ^ƒCƒv ƒ}ƒNƒ‚̃ŠƒXƒgcc))ccc) +@end lisp +‚Æ‚¢‚¤Œ`Ž®‚É‚·‚éB•âŠ®ƒ^ƒCƒv‚Í @code{env, section, maketitle} ‚Ì‚Ç‚ê‚©B +‹ï‘Ì—á‚Í•Ï” @code{YaTeX-package-alist-default} +‚Ì’lŽQÆB +@end defvar + +@defvar YaTeX-tabular-indentation +tabular/array ŠÂ‹«‚ÅŒ»Ýs‚Ì擪ˆÊ’u‚ª•\‚Ì‘æNƒJƒ‰ƒ€‚Ì‚Æ‚«‚Í +•W€ƒCƒ“ƒfƒ“ƒgˆÊ’u‚©‚ç N*YaTeX-tabular-indentation Œ…‰º‚°‚½ +ƒCƒ“ƒfƒ“ƒg‚É‚·‚éB +@end defvar + +@defvar YaTeX-noindent-env-regexp +•Ê‚̊‹«“à‚É‚ ‚Á‚Ä‚à \begin@{@} ‚ªs“ª‚©‚çŽn‚Ü‚é‚ׂ«ŠÂ‹«–¼‚̳‹K•\Œ»B +verbatimŠÂ‹«‚È‚Ç‚ðŽw’è‚·‚éB +@end defvar + +@defvar YaTeX-ref-default-label-string +\ref@{@} ‚̃‰ƒxƒ‹•âŠ®‚щƒxƒ‹–¢Ý’è‚Ì‚à‚Ì‚ÉŽ©“®“I‚ɶ¬‚·‚é +ƒ‰ƒxƒ‹–¼‚Ì‘Ž®Bstrftime(3)ŠÖ”‚ÉŽ—‚½“ú•tƒx[ƒX‚ÅŽw’è‚·‚éB +—˜—p‚Å‚«‚é‘Ž®‚͈ȉº‚Ì‚Æ‚¨‚èB +%y -> ¼—“ñŒ…, %b -> ŒŽ‚̉p–¼, %m -> ŒŽ(1`12) +%d -> “ú, %H -> Žž, %M -> •ª, %S -> •b, +%qx -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ yymmdd. +%qX -> ƒAƒ‹ƒtƒ@ƒxƒbƒg‚Å26i”‰»‚µ‚½ HHMMSS. +ƒfƒtƒHƒ‹ƒg‚Í "%H%M%S_%d%b%y" +@end defvar + +@defvar YaTeX-ref-generate-label-function +\ref@{@}‚̃‰ƒxƒ‹–¼Ž©“®¶¬‚Ì‚Æ‚«‚ÉŽg‚¤ŠÖ”‚̃Vƒ“ƒ{ƒ‹B +ƒfƒtƒHƒ‹ƒg‚Í•W€‚Ì YaTeX::ref-generate-label ŠÖ”‚ªŠ„‚è“–‚Ä‚Ä‚ ‚éB +ˆø”‚ð2‚ÂŽæ‚éŠÖ”‚ð’è‹`‚µ‚ÄA‚±‚Ì•Ï”‚ɃZƒbƒg‚·‚é‚Æ‚»‚ÌŠÖ”‚ðŒÄ‚ñ‚¾ +Œ‹‰Ê‚ðƒfƒtƒHƒ‹ƒg‚̃‰ƒxƒ‹–¼Œó•â‚Æ‚·‚éBÝ’è—á: +@lisp + (setq YaTeX-ref-generate-label-function 'my-yatex-generate-label) + (defun my-yatex-generate-label (command value) + (and (string= command "caption") + (re-search-backward "\\\\begin@{\\(figure\\|table\\)@}" nil t) + (setq command (match-string 1))) + (let ((alist '(("chapter" . "chap") + ("section" . "sec") + ("subsection" . "subsec") + ("figure" . "fig") + ("table" . "tbl")))) + (if (setq command (cdr (assoc command alist))) + (concat command ":" value) + (YaTeX::ref-generate-label nil nil)))) +@end lisp +@end defvar + +@node Sample definitions, Hook variables, All customizable variables, Lisp variables +@comment node-name, next, previous, up +@subsection ƒJƒXƒ^ƒ}ƒCƒY•Ï”Ý’è—á +@cindex Ý’è—á[‚¹‚‚Ă¢‚ê‚¢] + + ‚½‚Æ‚¦‚ÎAprefix ƒL[‚Æ‚µ‚Ä@kbd{ESC}‚ðŽg—p‚µAV‚½‚ȕ⊮Œó•â‚ðŠi”[‚·‚éƒtƒ@ +ƒCƒ‹‚ðA@file{~/src/emacs/yatexrc} ‚É‚µAs“ª‚Ì prefix ‚ðƒ^ƒu•¶Žšˆê‚Â‚É•Ï +‚¦‚½‚¢‚Æ‚«‚ÍA + +@lisp + (setq YaTeX-prefix "\e" + YaTeX-user-completion-table "~/src/emacs/yatexrc" + YaTeX-fill-prefix " ") +@end lisp + +@noindent +‚ð @file{~/.emacs} ‚ɉÁ‚¦‚Ü‚·B + +@node Hook variables, Hook file, Sample definitions, Lisp variables +@comment node-name, next, previous, up +@subsection hook•Ï” +@cindex hook•Ï”[hook‚Ö‚ñ‚·‚¤] +@cindex yatex-mode-hook +@cindex yatex-mode-load-hook + + ‚Ü‚½Ahook •Ï” @code{yatex-mode-hook}, @code{yatex-mode-load-hook} ‚ð—p +ˆÓ‚µ‚Ä‚¢‚Ü‚·B‚·‚×‚Ä‚Ì yatex-mode ‚̃oƒbƒtƒ@‚Åì—p‚³‚¹‚½‚¢‚à‚Ì‚ÍA +@code{yatex-mode-hook} ‚É‹Lq‚µA@file{yatex.el} ‚ðƒ[ƒh‚·‚鎞‚¾‚¯ì—p‚³ +‚¹‚½‚¢‚à‚Ì‚Í@code{yatex-mode-load-hook} ‚É‹Lq‚µ‚Ü‚·B—Ⴆ‚ÎA +@code{outline-minor-mode} ‚ð—˜—p‚·‚éê‡A‚»‚ꂼ‚ê‚̃oƒbƒtƒ@‚Å +@code{outline-minor-mode} ‚ð—LŒø‚É‚µ‚½‚¢‚Ì‚ÅA@code{yatex-mode-hook} ‚ðŽŸ +‚̂悤‚Éݒ肵‚Ü‚·B + +@lisp + (setq yatex-mode-hook + '(lambda () (outline-minor-mode t))) +@end lisp + + +‹t‚ÉA“ÆŽ©‚̃L[’è‹`‚ðs‚¢‚½‚¢Žž‚È‚Ç‚ÍA@code{yatex-mode-load-hook} ‚ð—˜—p +‚µ‚Ü‚·B—Ⴆ‚ÎAbegin Œ^•âŠ®‚É‚¨‚¢‚ÄA document ‚âAenumerate ˆÈŠO‚̊‹«–¼ +‚àƒVƒ‡[ƒgƒJƒbƒgƒL[‚Å“ü‚ꂽ‚¢‚È‚Ç‚Æ‚¢‚¤Žž‚ÍAŽŸ‚̂悤‚É‚µ‚Ü‚·BˆÈ‰º‚Ì—á‚ÍA +@kbd{[prefix] ba} ‚Å @code{\begin@{abstract@}}, @code{\end@{abstract@}} ‚ð +‘}“ü‚µ‚Ü‚·B + +@lisp + (setq yatex-mode-load-hook + '(lambda() (YaTeX-define-begend-key "ba" "abstract"))) +@end lisp + +‚È‚¨AV‚½‚ȃL[‚Ì’è‹`‚É‚ÍAŠÖ” @code{YaTeX-define-key} +@code{YaTeX-define-begend-key}‚ð—˜—p‚·‚é‚悤‚É‚µ‚Ä‚­‚¾‚³‚¢B + +@node Hook file, , Hook variables, Lisp variables +@comment node-name, next, previous, up +@subsection hook—pƒtƒ@ƒCƒ‹ + + •Ï” @code{yatex-mode-load-hook} ‚Å’è‹`‚·‚é“à—e‚ª‘½‚¢Žž‚ÍA +@file{yatexhks.el}‚Æ‚¢‚¤ƒtƒ@ƒCƒ‹‚ðì‚èA‚»‚Ì’†‚É–ì’¹ŠÖ˜A‚ÌÝ’è‚ð‘‚­Ž–‚ÅA +‰Šú‰»‚ÌŽž‚ÉŽ©“®“I‚Ƀ[ƒh‚µ‚Ü‚·B + + +@node Add-in functions, , Lisp variables, Customizations +@comment node-name, next, previous, up +@section •t‰ÁŠÖ”(ƒAƒhƒCƒ“ŠÖ”) + + ŠeŽí•âŠ®Žž‚ÉAŠÂ‹«–¼‚âƒRƒ}ƒ“ƒh–¼‚ɉž‚¶‚½‚«‚ßׂ₩‚ȕ⊮“ü—Í‹@”\‚ðŽÀŒ»‚· +‚邽‚ß‚ÌŠÖ”‚ð쬂·‚邱‚Æ‚ª‚Å‚«‚Ü‚·B‚±‚ÌŠÖ”‚Ì쬕û–@‚âA‘g‚Ýž‚Ý•û–@‚É +ŠÖ‚µ‚Ä‚ÍA@code{yatexadd.doc} ‚ð‚²——‚­‚¾‚³‚¢B + +@node Etc, Copying, Customizations, Top +@comment node-name, next, previous, up +@chapter ‚»‚Ì‘¼ + + –ì’¹‚Ì•W€‚Ì La@TeX{} ƒRƒ}ƒ“ƒh‚ÌŽ«‘‚É‚ÍAìŽÒ‚ª•p”É‚ÉŽg‚¤‚à‚Ì‚µ‚©“o˜^‚³ +‚ê‚Ä‚¢‚Ü‚¹‚ñB‚±‚ê‚ÍA•âŠ®Œó•â‚ÉŽg‚¢‚»‚¤‚à‚È‚¢ƒRƒ}ƒ“ƒh‚ª‘¶Ý‚µ‚ÄA•âŠ®‚µ‚½ +‚¢ƒRƒ}ƒ“ƒh‚ðo‚·‚܂ł̃Xƒgƒ[ƒN”‚ð‘‚₵‚Ä‚µ‚Ü‚¤Ž–‚ð–hŽ~‚·‚邽‚ß‚Å‚·B•W +€Ž«‘‚É‚È‚¢ƒRƒ}ƒ“ƒh‚àA‚Å‚«‚邾‚¯•âŠ®“ü—Í•ûŽ®‚ð—˜—p‚µAƒ†[ƒUŽ«‘‚ð[ŽÀ‚³ +‚¹‚邱‚Æ‚ÅA‚ ‚È‚½‚Ì La@TeX{} ƒXƒ^ƒCƒ‹‚É‚ ‚Á‚½–ì’¹‚ւƈç‚Á‚Ä‚¢‚­‚±‚Æ‚Å‚µ‚å +‚¤B + +@node Copying, Concept Index, Etc, Top +@comment node-name, next, previous, up +@chapter Žæ‚舵‚¢ + + –{ƒvƒƒOƒ‰ƒ€‚̓tƒŠ[ƒ\ƒtƒgƒEƒFƒA‚Å‚·B–{ƒvƒƒOƒ‰ƒ€‚ðŽg—p‚µ‚Ķ‚¶‚½‚¢‚©‚È +‚錋‰Ê‚ɑ΂µ‚Ä‚àìŽÒ‚ÍÓ”C‚𕉂í‚È‚¢‚±‚Æ‚Æ‚µ‚Ü‚·B“]Ú“™‚ÉŠÖ‚µ‚ĂͧŒÀ‚¢‚½ +‚µ‚Ü‚¹‚ñB펯“I‚Ɉµ‚Á‚Ä‚­‚¾‚³‚¢B‚Ü‚½A–{ƒvƒƒOƒ‰ƒ€‚ÉŠÜ‚Ü‚ê‚éƒR[ƒh‚ð—˜—p +‚·‚邱‚ÆA‰ü‘¢‚·‚邱‚Æ‚àŽ©—R‚És‚È‚Á‚Ä\‚¢‚Ü‚¹‚ñ‚ªA—¬—p‚·‚邱‚Æ‚É‚æ‚èŒ_–ñ +’÷Œ‹‚Ì•K—v‚ª¶‚¶‚éê‡AŽ„‚Í‚¢‚©‚È‚éŒ_–ñ‚à’÷Œ‹‚µ‚Ü‚¹‚ñB‹ï‘Ì“I‚É‚ÍGPL‚Ö‚Ì +ƒTƒCƒ“‚Í‚µ‚Ü‚¹‚ñ‚Ì‚ÅAGNU‚ÉŠñ‘¡‚·‚é‚à‚Ì‚ðì‚Á‚Ä‚¢‚éꇎ„‚Ìì•i‚©‚çŽæ‚èž +‚ñ‚¾ƒR[ƒh‚ð—¬—p‚·‚é‚Æ‹ê˜J‚·‚é‚©‚à‚µ‚ê‚Ü‚¹‚ñB‚¢‚©‚È‚éƒR[ƒh—¬—p‚à‹‘”Û‚µ‚Ü +‚¹‚ñ‚ªŒ_–ñ’÷Œ‹‚ÍŽ«‘Þ‚µ‚Ü‚·B + + ‹êîAŠó–]AƒoƒO•ñAŠ´‘z“™‚ÍŠ½Œ}‚¢‚½‚µ‚Ü‚·B +˜A—‚Í yuuji@@yatex.org ‚Ü‚Å(2004”N1ŒŽŒ»Ý)B +Œp‘±“I‚ÉŽg—p‚µ‚Ä‚­‚¾‚³‚é•û‚̓ƒCƒŠƒ“ƒOƒŠƒXƒgufj–ì’¹‚̉ïv‚É +¥”ñ‰Á“ü‚µ‚Ä‚­‚¾‚³‚¢B‰Á“ü•û–@‚ɂ‚¢‚Ä‚Í–{ƒpƒbƒP[ƒW‚Ì @file{docs/qanda} +ƒtƒ@ƒCƒ‹‚Ìu‚»‚Ì‘¼v‚ÌÍ‚ðŒä——‚­‚¾‚³‚¢B + +Žd—l‚ÍA—\‚È‚­ŠmŽÀ‚É(‹C•ªŽŸ‘æ‚Å)•ÏX‚³‚ê‚Ü‚·:-pB + +@flushright +L£—Y“ñ +@end flushright + +@node Concept Index, , Copying, Top +@comment node-name, next, previous, up +@unnumbered õˆø +@printindex cp + +@c ƒJƒXƒ^ƒ}ƒCƒY•Ï”õˆø‚ðõˆø‚Æ•ª—£‚·‚éꇂɂ̓Rƒƒ“ƒgƒAƒEƒg‚ðŠO‚·!!! +@c @node Variable Index +@c @comment node-name, next, previous, up +@c @unnumbered ƒJƒXƒ^ƒ}ƒCƒY•Ï”õˆø +@c @printindex vr + +@contents + +@bye + +@c Local Variables: +@c fill-column: 74 +@c fill-prefix: nil +@c buffer-file-coding-system: sjis-dos +@c End: + +Tag table: + +End tag table diff -r 1b4e0acd0106 -r d467c0fb6083 makefile --- a/makefile Thu May 10 11:10:13 2012 +0900 +++ b/makefile Thu May 10 11:40:02 2012 +0900 @@ -49,7 +49,7 @@ # make clean to delete all producted files # make ci to check in all # make co to check out all -MVER = 1.75 +MVER = 1.76 LISP = ${LISP18} ${LISP19} YAHTML = yahtml.el COMMON = yatexlib.el yatexprc.el diff -r 1b4e0acd0106 -r d467c0fb6083 yahtml.el --- a/yahtml.el Thu May 10 11:10:13 2012 +0900 +++ b/yahtml.el Thu May 10 11:40:02 2012 +0900 @@ -1,9 +1,9 @@ ;;; -*- Emacs-Lisp -*- ;;; (c) 1994-2012 by HIROSE Yuuji [yuuji(@)yatex.org] -;;; Last modified Thu Feb 9 08:36:16 2012 on firestorm +;;; Last modified Thu May 10 11:06:39 2012 on firestorm ;;; $Id$ -(defconst yahtml-revision-number "1.75" +(defconst yahtml-revision-number "1.76" "Revision number of running yahtml.el") ;;;[Installation] diff -r 1b4e0acd0106 -r d467c0fb6083 yatex.el --- a/yatex.el Thu May 10 11:10:13 2012 +0900 +++ b/yatex.el Thu May 10 11:40:02 2012 +0900 @@ -1,15 +1,15 @@ ;;; -*- Emacs-Lisp -*- ;;; Yet Another tex-mode for emacs - //–ì’¹// -;;; yatex.el rev. 1.75.3 +;;; yatex.el rev. 1.76 ;;; (c)1991-2012 by HIROSE Yuuji.[yuuji@yatex.org] -;;; Last modified Thu Feb 9 09:52:41 2012 on firestorm +;;; Last modified Thu May 10 11:06:33 2012 on firestorm ;;; $Id$ ;;; The latest version of this software is always available at; ;;; http://www.yatex.org/ (require 'comment) (require 'yatexlib) -(defconst YaTeX-revision-number "1.75.3" +(defconst YaTeX-revision-number "1.76" "Revision number of running yatex.el") ;---------- Local variables ----------