branch: main commit ebf4b8a03ae4dbe2df73cf108688b7b04a8c9d9d Author: Tassilo Horn <t...@gnu.org> Commit: Tassilo Horn <t...@gnu.org>
Release GNU AUCTeX 11.89.4 * Version 11.89.4 released. --- auctex.el | 4 +- auctex.info | 208 +++++++++++++++++++++++++++++------------------------ preview-latex.info | 4 +- tex-site.el | 6 +- 4 files changed, 121 insertions(+), 101 deletions(-) diff --git a/auctex.el b/auctex.el index ca3a900c..ac3a61da 100644 --- a/auctex.el +++ b/auctex.el @@ -1,8 +1,8 @@ ;;; auctex.el --- Integrated environment for *TeX* -;; Copyright (C) 2014, 2015 Free Software Foundation, Inc. +;; Copyright (C) 2014-2016 Free Software Foundation, Inc. -;; Version: 11.89.3 +;; Version: 11.89.4 ;; URL: http://www.gnu.org/software/auctex/ ;; Maintainer: auctex-devel@gnu.org ;; Notifications-To: auctex-di...@gnu.org diff --git a/auctex.info b/auctex.info index 6d80d24f..ad9ff2d9 100644 --- a/auctex.info +++ b/auctex.info @@ -1,6 +1,6 @@ This is auctex.info, produced by makeinfo version 6.1 from auctex.texi. -This manual is for AUCTeX (version 11.89.3 from 2016-03-30), a +This manual is for AUCTeX (version 11.89.4 from 2016-05-22), a sophisticated TeX environment for Emacs. Copyright (C) 1992-1995, 2001, 2002, 2004-2016 Free Software @@ -3638,20 +3638,34 @@ are printed with. the document into DVI output. Thus, if you want a PDF document in the end you can either use XeTeX engine, see below for information about how to set engines, or compile the document with 'tex' and then convert to -PDF with 'dvips'-'ps2pdf' before viewing it. The latter can be done -automatically in AUCTeX by setting the 'TeX-PDF-via-dvips-ps2pdf' -variable to a non-nil value. - - -- User Option: TeX-PDF-via-dvips-ps2pdf - With 'TeX-PDF-mode' set to non-nil, if 'TeX-PDF-via-dvips-ps2pdf' - is non-nil too, the document is compiled with 'tex' (or 'latex') - instead of 'pdftex' (or 'pdflatex'). When the document is ready, - 'C-c C-c' will suggest to run 'dvips' and then 'ps2pdf' in order to - convert the DVI file to PDF. When the PDF file is finally ready, - the next suggested command will be to open the viewer. +PDF with 'dvips'-'ps2pdf' before viewing it. In addition, current +Japanese TeX engines cannot generate PDF directly so they rely on +DVI-to-PDF converters. Usually 'dvipdfmx' command is used for this +purpose. You can use the 'TeX-PDF-from-DVI' variable to let AUCTeX know +you want to generate the final PDF by converting a DVI file. + + -- User Option: TeX-PDF-from-DVI + This option controls if and how to produce a PDF file by converting + a DVI file. + + When 'TeX-PDF-mode' is non-nil, if 'TeX-PDF-from-DVI' is non-nil + too the document is compiled to DVI instead of PDF. When the + document is ready, 'C-c C-c' will suggest to run the converter to + PDF or an intermediate format. + + If non-nil, 'TeX-PDF-from-DVI' should be the name of the command, + as a string, used to convert the DVI file to PDF or to an + intermediate format. Values currently supported are: + * '"Dvips"': the DVI file is converted to PS with 'dvips'. + After successfully running it, 'ps2pdf' will be the default + command to convert the PS file to PDF. + * '"Dvipdfmx"': the DVI file is converted to PDF with + 'dvipdfmx'. + When the PDF file is finally ready, the next suggested command will + be to open the viewer. This option can also be set as a file local variable, in order to - use the sequence 'tex'-'dvips'-'ps2pdf' on a per-document basis. + use this conversion on a per-document basis. Recall the whole sequence of 'C-c C-c' commands can be replace by the single 'C-c C-a'. @@ -4873,7 +4887,7 @@ File: auctex.info, Node: Automatic Local, Prev: Automatic Private, Up: Automa --------------------------------------------- AUCTeX can update the style information about a file each time you save -it, and it will do this if the directory 'TeX-auto-local' exist. +it, and it will do this if the directory 'TeX-auto-local' exists. 'TeX-auto-local' is by default set to '"auto"', so simply creating an 'auto' directory will enable automatic saving of style information. @@ -5532,7 +5546,7 @@ A.1 Copying this Manual The copyright notice for this manual is: - This manual is for AUCTeX (version 11.89.3 from 2016-03-30), a + This manual is for AUCTeX (version 11.89.4 from 2016-05-22), a sophisticated TeX environment for Emacs. Copyright (C) 1992-1995, 2001, 2002, 2004-2016 Free Software @@ -6060,21 +6074,27 @@ News since 11.89 after compilation of the document. *Note Ignoring warnings::, for details. - * Added support for Atril viewer. Forward and inverse search - requires version 1.9.1 or later to work. + * A new option, 'TeX-PDF-from-DVI', controls if and how to produce a + PDF file by converting a DVI file. This supersedes + 'TeX-PDF-via-dvips-ps2pdf' which is still recognized but marked as + obsolete and may be removed in future releases. - * Added support for dviout viewer on Windows. Note that this setup - works when 'TeX-source-correlate-method' is set to use - 'source-specials' for DVI, e.g.: - (setq TeX-source-correlate-method - '((dvi . source-specials) - (pdf . synctex))) - which is the default. + * Support for a number of external viewers has been addedd: + * Atril viewer. Forward and inverse search requires version + 1.9.1 or later to work. - * Added support for SumatraPDF viewer on Windows. + * dviout viewer on Windows. Note that this setup works when + 'TeX-source-correlate-method' is set to use 'source-specials' + for DVI, e.g.: + (setq TeX-source-correlate-method + '((dvi . source-specials) + (pdf . synctex))) + which is the default. - * Added support for Zathura viewer. Forward and inverse search - requires a recent version of the program to work (3.4 or later). + * SumatraPDF viewer on Windows. + + * Zathura viewer. Forward and inverse search requires a recent + version of the program to work (3.4 or later). * A new function, 'TeX-documentation-texdoc', for reading documentation with 'texdoc' has been added. 'TeX-doc' is still @@ -7682,10 +7702,10 @@ Variable Index * AmS-TeX-mode-hook: Modes and Hooks. (line 21) * ConTeXt-clean-intermediate-suffixes: Cleaning. (line 7) * ConTeXt-clean-output-suffixes: Cleaning. (line 7) -* ConTeXt-engine: Processor Options. (line 106) -* ConTeXt-Mark-version: Processor Options. (line 183) +* ConTeXt-engine: Processor Options. (line 120) +* ConTeXt-Mark-version: Processor Options. (line 197) * ConTeXt-mode-hook: Modes and Hooks. (line 21) -* ConTeXt-Omega-engine: Processor Options. (line 106) +* ConTeXt-Omega-engine: Processor Options. (line 120) * docTeX-clean-intermediate-suffixes: Cleaning. (line 7) * docTeX-clean-output-suffixes: Cleaning. (line 7) * docTeX-mode-hook: Modes and Hooks. (line 21) @@ -7779,7 +7799,7 @@ Variable Index * LaTeX-biblatex-use-Biber: Selecting a Command. (line 51) * LaTeX-clean-intermediate-suffixes: Cleaning. (line 7) * LaTeX-clean-output-suffixes: Cleaning. (line 7) -* LaTeX-command: Processor Options. (line 106) +* LaTeX-command: Processor Options. (line 120) * LaTeX-csquotes-close-quote: Quotes. (line 43) * LaTeX-csquotes-open-quote: Quotes. (line 43) * LaTeX-csquotes-quote-after-quote: Quotes. (line 43) @@ -7821,7 +7841,7 @@ Variable Index * LaTeX-math-list: Mathematics. (line 36) * LaTeX-math-menu-unicode: Mathematics. (line 54) * LaTeX-mode-hook: Modes and Hooks. (line 21) -* LaTeX-Omega-command: Processor Options. (line 106) +* LaTeX-Omega-command: Processor Options. (line 120) * LaTeX-paragraph-commands: Filling. (line 55) * LaTeX-section-hook: Sectioning. (line 40) * LaTeX-section-hook <1>: Sectioning. (line 48) @@ -7865,16 +7885,16 @@ Variable Index * TeX-auto-save: Parsing Files. (line 40) * TeX-auto-untabify: Parsing Files. (line 57) * TeX-brace-indent-level: Indenting. (line 102) -* TeX-check-engine: Processor Options. (line 149) +* TeX-check-engine: Processor Options. (line 163) * TeX-check-path: Selecting a Command. (line 67) -* TeX-check-TeX: Processor Options. (line 134) -* TeX-check-TeX-command-not-found: Processor Options. (line 135) +* TeX-check-TeX: Processor Options. (line 148) +* TeX-check-TeX-command-not-found: Processor Options. (line 149) * TeX-clean-confirm: Cleaning. (line 26) * TeX-close-quote: Quotes. (line 25) -* TeX-command: Processor Options. (line 106) -* TeX-command <1>: Processor Options. (line 135) +* TeX-command: Processor Options. (line 120) +* TeX-command <1>: Processor Options. (line 149) * TeX-command-default: Selecting a Command. (line 42) -* TeX-command-extra-options: Processor Options. (line 157) +* TeX-command-extra-options: Processor Options. (line 171) * TeX-command-list: Starting a Command. (line 16) * TeX-command-list <1>: Starting a Command. (line 32) * TeX-command-list <2>: Selecting a Command. (line 14) @@ -7891,15 +7911,15 @@ Variable Index * TeX-electric-escape: Completion. (line 58) * TeX-electric-math: Quotes. (line 72) * TeX-electric-sub-and-superscript: Mathematics. (line 68) -* TeX-engine: Processor Options. (line 89) -* TeX-engine-alist: Processor Options. (line 106) -* TeX-engine-alist <1>: Processor Options. (line 117) -* TeX-engine-alist-builtin: Processor Options. (line 106) +* TeX-engine: Processor Options. (line 103) +* TeX-engine-alist: Processor Options. (line 120) +* TeX-engine-alist <1>: Processor Options. (line 131) +* TeX-engine-alist-builtin: Processor Options. (line 120) * TeX-error-overview-frame-parameters: Error overview. (line 44) * TeX-error-overview-open-after-TeX-run: Error overview. (line 26) * TeX-error-overview-setup: Error overview. (line 35) * TeX-expand-list: Selecting a Command. (line 14) -* TeX-file-line-error: Processor Options. (line 177) +* TeX-file-line-error: Processor Options. (line 191) * TeX-file-recurse: Automatic. (line 44) * TeX-fold-auto: Folding. (line 71) * TeX-fold-command-prefix: Folding. (line 146) @@ -7943,21 +7963,21 @@ Variable Index * TeX-master <2>: Multifile. (line 40) * TeX-newline-function: Indenting. (line 29) * TeX-newline-function <1>: Indenting. (line 110) -* TeX-Omega-command: Processor Options. (line 106) +* TeX-Omega-command: Processor Options. (line 120) * TeX-one-master: Multifile. (line 58) * TeX-open-quote: Quotes. (line 21) * TeX-outline-extra: Outline. (line 13) * TeX-output-view-style: Starting Viewers. (line 105) * TeX-parse-all-errors: Debugging. (line 35) * TeX-parse-self: Parsing Files. (line 37) +* TeX-PDF-from-DVI: Processor Options. (line 71) * TeX-PDF-mode: Processor Options. (line 16) -* TeX-PDF-via-dvips-ps2pdf: Processor Options. (line 69) * TeX-quote-after-quote: Quotes. (line 29) * TeX-quote-language-alist: European. (line 126) * TeX-region: Starting a Command. (line 32) * TeX-region <1>: Starting a Command. (line 65) * TeX-save-query: Multifile. (line 103) -* TeX-show-compilation: Processor Options. (line 170) +* TeX-show-compilation: Processor Options. (line 184) * TeX-source-correlate-method: Processor Options. (line 48) * TeX-source-correlate-method <1>: I/O Correlation. (line 21) * TeX-source-correlate-mode: Processor Options. (line 37) @@ -8037,7 +8057,7 @@ Concept Index (line 6) * ASCII pTeX <1>: Japanese. (line 6) * auctex.el: Loading the package. (line 14) -* auctex.el <1>: Changes. (line 372) +* auctex.el <1>: Changes. (line 378) * auto directories.: Automatic. (line 6) * Auto-Reveal: Folding. (line 6) * Automatic: Automatic. (line 6) @@ -8338,7 +8358,7 @@ Concept Index (line 286) * tex-site.el: Loading the package. (line 14) * tex-site.el <1>: Customizing. (line 6) -* tex-site.el <2>: Changes. (line 372) +* tex-site.el <2>: Changes. (line 378) * tool bar, toolbar: Processing. (line 11) * Trailer: Commands. (line 6) * Underfull boxes: Debugging. (line 6) @@ -8409,51 +8429,51 @@ Node: Commands144409 Node: Starting a Command144965 Node: Selecting a Command149868 Node: Processor Options153394 -Node: Viewing163047 -Node: Starting Viewers163421 -Node: I/O Correlation169998 -Node: Debugging173444 -Node: Ignoring warnings176098 -Node: Error overview178158 -Node: Checking180151 -Node: Control181313 -Node: Cleaning182040 -Node: Documentation183253 -Node: Customization183968 -Node: Modes and Hooks184461 -Node: Multifile186281 -Node: Parsing Files191093 -Node: Internationalization196005 -Node: European197186 -Node: Japanese204066 -Node: Automatic205763 -Node: Automatic Global208254 -Node: Automatic Private209386 -Node: Automatic Local210699 -Node: Style Files211730 -Node: Simple Style212523 -Node: Adding Macros215796 -Node: Adding Environments224917 -Node: Adding Other229578 -Node: Hacking the Parser230165 -Node: Appendices234034 -Node: Copying this Manual234418 -Node: GNU Free Documentation License235302 -Node: Changes260421 -Node: Development293126 -Node: Mid-term Goals293772 -Node: Wishlist294989 -Node: Bugs300529 -Node: FAQ302059 -Node: Texinfo mode308232 -Node: Exploiting309368 -Node: Superseding310188 -Node: Mapping314392 -Node: Unbinding316221 -Node: Indices317042 -Node: Key Index317267 -Node: Function Index323445 -Node: Variable Index334109 -Node: Concept Index355808 +Node: Viewing163674 +Node: Starting Viewers164048 +Node: I/O Correlation170625 +Node: Debugging174071 +Node: Ignoring warnings176725 +Node: Error overview178785 +Node: Checking180778 +Node: Control181940 +Node: Cleaning182667 +Node: Documentation183880 +Node: Customization184595 +Node: Modes and Hooks185088 +Node: Multifile186908 +Node: Parsing Files191720 +Node: Internationalization196632 +Node: European197813 +Node: Japanese204693 +Node: Automatic206390 +Node: Automatic Global208881 +Node: Automatic Private210013 +Node: Automatic Local211326 +Node: Style Files212358 +Node: Simple Style213151 +Node: Adding Macros216424 +Node: Adding Environments225545 +Node: Adding Other230206 +Node: Hacking the Parser230793 +Node: Appendices234662 +Node: Copying this Manual235046 +Node: GNU Free Documentation License235930 +Node: Changes261049 +Node: Development294060 +Node: Mid-term Goals294706 +Node: Wishlist295923 +Node: Bugs301463 +Node: FAQ302993 +Node: Texinfo mode309166 +Node: Exploiting310302 +Node: Superseding311122 +Node: Mapping315326 +Node: Unbinding317155 +Node: Indices317976 +Node: Key Index318201 +Node: Function Index324379 +Node: Variable Index335043 +Node: Concept Index356742 End Tag Table diff --git a/preview-latex.info b/preview-latex.info index 732b9594..e847d79a 100644 --- a/preview-latex.info +++ b/preview-latex.info @@ -2,7 +2,7 @@ This is preview-latex.info, produced by makeinfo version 6.1 from preview-latex.texi. This manual is for preview-latex, a LaTeX preview mode for AUCTeX -(version 11.89.3 from 2016-03-30). +(version 11.89.4 from 2016-05-22). Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @@ -1900,7 +1900,7 @@ Appendix C Copying this Manual The copyright notice for this manual is: This manual is for preview-latex, a LaTeX preview mode for AUCTeX -(version 11.89.3 from 2016-03-30). +(version 11.89.4 from 2016-05-22). Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. diff --git a/tex-site.el b/tex-site.el index 03324fc1..44edc546 100644 --- a/tex-site.el +++ b/tex-site.el @@ -148,11 +148,11 @@ set it with `TeX-modes-set'." `(TeX-modes-set ',var ,var t)) (setq list (cdr list)))))) ) -(defconst AUCTeX-version "11.89.3" - "AUCTeX version. +(defconst AUCTeX-version "11.89.4" + "AUCTeX version. If not a regular release, the date of the last change.") -(defconst AUCTeX-date "2016-01-31" +(defconst AUCTeX-date "2016-05-22" "AUCTeX release date using the ISO 8601 format, yyyy-mm-dd.") ;; Store bibitems when saving a BibTeX buffer