branch: main commit 3653ef07555d97feeeda762b1a47df78a156d0fd Author: Tassilo Horn <t...@gnu.org> Commit: Tassilo Horn <t...@gnu.org>
Add auctex-pkg.el and move version definition there --- .gitignore | 1 - auctex-pkg.el | 33 +++++ auctex.el | 3 +- auctex.info | 357 +++++++++++++++++++++++++++++++---------------------- preview-latex.info | 54 ++++---- tex-site.el | 4 +- 6 files changed, 271 insertions(+), 181 deletions(-) diff --git a/.gitignore b/.gitignore index d185fdb8..00158670 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,5 @@ preview-latex.el /preview.el PROBLEMS.preview # Files generated when installing/compiling the package in place. -auctex-pkg.el auctex-autoloads.el tests/*/auto/* diff --git a/auctex-pkg.el b/auctex-pkg.el new file mode 100644 index 00000000..1b669f17 --- /dev/null +++ b/auctex-pkg.el @@ -0,0 +1,33 @@ +;;; auctex-pkg.el --- The ELPA package definition for GNU AUCTeX + +;; Copyright (C) 2019 Free Software Foundation, Inc. + +;; URL: http://www.gnu.org/software/auctex/ +;; Maintainer: auctex-devel@gnu.org +;; Notifications-To: auctex-di...@gnu.org +;; Keywords: tex + +;; This file is part of AUCTeX. + +;; AUCTeX is free software; you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3, or (at your option) +;; any later version. + +;; AUCTeX is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with AUCTeX; see the file COPYING. If not, write to the Free +;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +;; 02110-1301, USA. + +(define-package "auctex" "12.1.1" "Integrated environment for *TeX*" + '((emacs "24.1") + (cl-lib "0.5")) + :url "https://www.gnu.org/software/auctex/" + :keywords '("TeX" "LaTeX" "Texinfo" "ConTeXt" "docTeX" "preview-latex")) + +(setq byte-compile-warnings '(not unresolved)) diff --git a/auctex.el b/auctex.el index 8aac43f9..2410da50 100644 --- a/auctex.el +++ b/auctex.el @@ -1,8 +1,7 @@ ;;; auctex.el --- Integrated environment for *TeX* -;; Copyright (C) 2014-2017 Free Software Foundation, Inc. +;; Copyright (C) 2014-2017, 2019 Free Software Foundation, Inc. -;; Version: 12.1.1 ;; 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 f991aa74..1b175c0d 100644 --- a/auctex.info +++ b/auctex.info @@ -1,6 +1,6 @@ This is auctex.info, produced by makeinfo version 6.5 from auctex.texi. -This manual is for AUCTeX (version 12.1.1.2018-09-07 from 2018-09-07), a +This manual is for AUCTeX (version 12.1.1.2019-02-08 from 2019-02-08), a sophisticated TeX environment for Emacs. Copyright (C) 1992-1995, 2001, 2002, 2004-2018 Free Software @@ -437,22 +437,24 @@ it out with one of these options: '/usr/local' is the default PREFIX, intended to be suitable for a site-wide installation. If you are packaging this as an operating system component for distribution, the setting '/usr' will probably - be the right choice. If you are planning to install the package as - a single non-priviledged user, you will typically set PREFIX to - your home directory. + be the right choice. See *note Advice for package providers:: for + detail. + + If you are planning to install the package as a single + non-priviledged user, you will typically set PREFIX to your home + directory. Consult *note Advice for non-privileged users:: for + addtional instructions. '--with-emacs[=/PATH/TO/EMACS]' If you are using a pretest which isn't in your '$PATH', or 'configure' is not finding the right Emacs executable, you can specify it with this option. - The Emacs installation scheme has the following options: - '--with-lispdir=/DIR' - This Emacs-only option specifies the location of the 'site-lisp' - directory within 'load-path' under which the files will get - installed (the bulk will get installed in a subdirectory). - './configure' should figure this out by itself. + This option specifies the location of the 'site-lisp' directory + within 'load-path' under which the files will get installed (the + bulk will get installed in a subdirectory). './configure' should + figure this out by itself. '--with-auctexstartfile=auctex.el' '--with-previewstartfile=preview-latex.el' @@ -658,10 +660,30 @@ your home directory, manual pages under 'man' and so on. It is reasonably easy to maintain a bunch of personal software, since the prefix argument is supported by most 'configure' scripts. + You often need to specify '--with-lispdir' option as well. If you +haven't installed Emacs under your home directory and use Emacs +installed in system directories, the 'configure' script might not be +able to figure out suitable place to install lisp files under your home +directory. In that case, the 'configure' script would silently choose, +by default, the 'site-lisp' directory within 'load-path' for the place, +where administration privileges are usually required to put relevant +files. Thus you will have to tell the 'configure' script explicitly +where to put those files by, e.g., +'--with-lispdir=/home/myself/share/emacs/site-lisp'. + You'll have to add something like '/home/myself/share/emacs/site-lisp' to your 'load-path' variable, if it isn't there already. + In addition, you will have to tell 'configure' script where to +install TeX-related files such as 'preview.sty' if preview-latex isn't +disabled. It is enough to specify '--with-texmf-dir=$HOME/texmf' for +most typical cases, but you have to create the direcotry '$HOME/texmf' +in advance if it doesn't exist. If this prescription doesn't work, +consider using one or more of the options '--with-texmf-dir=/DIR', +'--without-texmf-dir', '--with-tex-dir=/DIR' and '--with-doc-dir=/DIR'. +See *note Configure:: for detail of these options. + Now here is another thing to ponder: perhaps you want to make it easy for other users to share parts of your personal Emacs configuration. In general, you can do this by writing '~myself/' anywhere where you @@ -974,8 +996,8 @@ single quotes for that. in order to customize more stuff, or use the 'Customize' menu. - 12. Load 'preview/circ.tex' into Emacs and see if you get the - 'Command' menu. Try using it to LaTeX the file. + 12. Load 'circ.tex' into Emacs and see if you get the 'Command' menu. + Try using it to LaTeX the file. 13. Check whether the 'Preview' menu is available in this file. Use it to generate previews for the document. @@ -1516,7 +1538,7 @@ when typing '(', '{' and '['. after the opening brace. If there is an active region, braces are put around it. - They recognize the preceeding backslash or size adjusting macros + They recognize the preceding backslash or size adjusting macros such as '\left', '\bigl' etc., so the following completions will occur: @@ -2167,12 +2189,13 @@ or, as the first choice the value of the variable 'TeX-default-macro'. Default macro to insert when invoking 'TeX-insert-macro' first time. - A faster alternative is to bind the function 'TeX-electric-macro' to -'\'. This can be done by setting the variable 'TeX-electric-escape' + A faster alternative is to enable the option 'TeX-electric-escape'. -- User Option: TeX-electric-escape - If this is non-nil when AUCTeX is loaded, the TeX escape character - '\' will be bound to 'TeX-electric-macro' + If this is non-nil, typing the TeX escape character '\' will invoke + the command 'TeX-electric-macro'. + + In Texinfo mode, the command is invoked by '@' instead. The difference between 'TeX-insert-macro' and 'TeX-electric-macro' is that space will complete and exit from the minibuffer in @@ -2184,12 +2207,13 @@ that space will complete and exit from the minibuffer in exit. By default AUCTeX will put an empty set braces '{}' after a macro -with no arguments to stop it from eating the next whitespace. This can -be stopped by entering 'LaTeX-math-mode', *note Mathematics::, or by -setting 'TeX-insert-braces' to nil. +with no arguments to stop it from eating the next whitespace. This is +suppressed inside math mode and can be disabled totally by setting +'TeX-insert-braces' to nil. -- User Option: TeX-insert-braces - If non-nil, append a empty pair of braces after inserting a macro. + If non-nil, append a empty pair of braces after inserting a macro + with no arguments. -- User Option: TeX-insert-braces-alist Control the insertion of a pair of braces after a macro on a per @@ -2201,7 +2225,7 @@ setting 'TeX-insert-braces' to nil. to the macro. If a macro has an element in this variable, 'TeX-parse-macro' will - use its value to decided what to do, whatever the value of the + use its value to decide what to do, whatever the value of the variable 'TeX-insert-braces'. Completions work because AUCTeX can analyze TeX files, and store @@ -4179,7 +4203,7 @@ Atril, you can customize the following option. (lambda () (call-process "wmctrl" nil nil nil "-i" "-R" - (frame-parameter (selected-frame) ’outer-window-id)))) + (frame-parameter (selected-frame) 'outer-window-id)))) File: auctex.info, Node: Debugging, Next: Checking, Prev: Viewing, Up: Processing @@ -4411,8 +4435,10 @@ File: auctex.info, Node: Cleaning, Next: Documentation, Prev: Control, Up: P 'docTeX-clean-output-suffixes', 'Texinfo-clean-intermediate-suffixes', 'Texinfo-clean-output-suffixes', - 'ConTeXt-clean-intermediate-suffixes' and - 'ConTeXt-clean-output-suffixes'. + 'ConTeXt-clean-intermediate-suffixes', + 'ConTeXt-clean-output-suffixes', + 'AmSTeX-clean-intermediate-suffixes' and + 'AmSTeX-clean-output-suffixes'. -- User Option: TeX-clean-confirm Control if deletion of intermediate and output files has to be @@ -4738,16 +4764,21 @@ TeX and Emacs are usable for European (Latin, Cyrillic, Greek) based languages. Some LaTeX and EmacsLisp packages are available for easy typesetting and editing documents in European languages. - For CJK (Chinese, Japanese, and Korean) languages, Emacs with MULE -(MULtilingual Enhancement to GNU Emacs) support is required. MULE is -part of Emacs by default since Emacs 20. Special versions of TeX are -needed for CJK languages: CTeX and ChinaTeX for Chinese, ASCII pTeX and -NTT jTeX for Japanese, HLaTeX and kTeX for Korean. The CJK-LaTeX -package is required for supporting multiple CJK scripts within a single -document. + All Emacs versions supported by current AUCTeX can handle CJK +languages by default. - CJK characters are not usable. Please use the MULE-UCS EmacsLisp -package or Emacs 22 and later if you need CJK. + In most cases, special versions of TeX engines are needed for +high-quality typesetting of CJK languages: CTeX and ChinaTeX for +Chinese, ASCII pTeX, upTeX and NTT jTeX for Japanese, HLaTeX and kTeX +for Korean. They are necessary as well when you want to typeset +documents saved in their domestic encodings such as Shift-JIS. +Currently, AUCTeX offers native support for pTeX, upTeX and jTeX only. + + If you don't need fine tuning in the result with respect to the +typesetting rules of their respective national standards, most unicode +based TeX engines e.g. LuaTeX and XeTeX can handle CJK languages by +default if they are encoded in UTF-8. The CJK-LaTeX package is provided +for supporting CJK scripts in a standard LaTeX document. * Menu: @@ -5032,7 +5063,7 @@ options for them, or both, customize 'TeX-engine-alist'. mode buffer. 'C-c C-f g' - Insert gothic face font command '\textbf{-!-}' or '\mathbf{-!-}' + Insert gothic face font command '\textgt{-!-}' or '\mathgt{-!-}' depending on the context. 'C-c C-f m' @@ -5256,11 +5287,21 @@ hook should usually be identical. * A symbol indicating a singleton containing one basic TeX dialect, this symbol shall be selected among: ':latex' - For all files in LaTeX mode, or any mode derived thereof + For all files in LaTeX mode, or any mode derived thereof. ':bibtex' - For all files in BibTeX mode, or any mode derived thereof + For all files in BibTeX mode, or any mode derived + thereof. ':texinfo' For all files in Texinfo mode. + ':plain-tex' + For all files in plain-TeX mode, or any mode derived + thereof. + ':context' + For all files in ConTeXt mode. + ':classopt' + For class options of LaTeX document. This is provided as + pseudo-dialect for style hooks associated with class + options. * A logical expression like: '(or DIALECT-EXPRESSION1 ... DIALECT-EXPRESSION_N)' For union of the sets of dialects corresponding to @@ -5324,7 +5365,7 @@ point inside braces. Otherwise, each argument of this function should match an argument of the TeX macro. What is done depends on the argument type. - If a macro is defined multiple times, AUCTeX will chose the one with + If a macro is defined multiple times, AUCTeX will choose the one with the longest definition (i.e. the one with the most arguments). Thus, to overwrite @@ -5835,8 +5876,8 @@ A.1 Copying this Manual The copyright notice for this manual is: - This manual is for AUCTeX (version 12.1.1.2018-09-07 from -2018-09-07), a sophisticated TeX environment for Emacs. + This manual is for AUCTeX (version 12.1.1.2019-02-08 from +2019-02-08), a sophisticated TeX environment for Emacs. Copyright (C) 1992-1995, 2001, 2002, 2004-2018 Free Software Foundation, Inc. @@ -6369,6 +6410,20 @@ News in 12.2 for standard LaTeX by default long ago. LaTeX variants such as XeLaTeX and LuaLaTeX are not affected. + * Key binds in Texinfo mode are improved. Typing '$', '^', '_' and + '\' now just self-inserts without pointless side effects in Texinfo + mode. + + In addition, the option 'TeX-electric-escape' is now effective in + Texinfo mode. When it is enabled, typing '@' will invoke + 'TeX-electric-macro' offering completion in similar style with + other TeX modes of AUCTeX. + + * Support for column specifiers 'w' and 'W' provided by 'array' + package is added to 'array.el'. The correct counting of columns + only works when the 'align' parameter is enclosed in braces, e.g., + 'w{l}{3cm}'. The short version 'wl{3cm}' is not supported. + News in 12.1 ------------ @@ -8104,7 +8159,7 @@ Function Index * TeX-complete-symbol: Completion. (line 23) * TeX-declare-expert-macros: Adding Macros. (line 266) * TeX-documentation-texdoc: Documentation. (line 6) -* TeX-electric-macro: Completion. (line 106) +* TeX-electric-macro: Completion. (line 107) * TeX-error-overview: Error overview. (line 10) * TeX-fold-buffer: Folding. (line 43) * TeX-fold-clearout-buffer: Folding. (line 121) @@ -8162,6 +8217,8 @@ Variable Index * Menu: * AmS-TeX-mode-hook: Modes and Hooks. (line 21) +* AmSTeX-clean-intermediate-suffixes: Cleaning. (line 7) +* AmSTeX-clean-output-suffixes: Cleaning. (line 7) * ConTeXt-clean-intermediate-suffixes: Cleaning. (line 7) * ConTeXt-clean-output-suffixes: Cleaning. (line 7) * ConTeXt-engine: Processor Options. (line 121) @@ -8275,7 +8332,7 @@ Variable Index * LaTeX-default-position: Tabular-like. (line 16) * LaTeX-default-style: Adding Macros. (line 192) * LaTeX-default-width: Tabular-like. (line 13) -* LaTeX-dialect: Simple Style. (line 71) +* LaTeX-dialect: Simple Style. (line 81) * LaTeX-electric-left-right-brace: Quotes. (line 154) * LaTeX-enable-toolbar: Processing. (line 11) * LaTeX-eqnarray-label: Equations. (line 12) @@ -8353,7 +8410,7 @@ Variable Index * TeX-check-path: Selecting a Command. (line 67) * TeX-check-TeX: Processor Options. (line 149) * TeX-check-TeX-command-not-found: Processor Options. (line 150) -* TeX-clean-confirm: Cleaning. (line 26) +* TeX-clean-confirm: Cleaning. (line 28) * TeX-close-quote: Quotes. (line 25) * TeX-command: Processor Options. (line 121) * TeX-command <1>: Processor Options. (line 150) @@ -8363,7 +8420,7 @@ Variable Index * TeX-command-list <1>: Starting a Command. (line 32) * TeX-command-list <2>: Selecting a Command. (line 14) * TeX-complete-expert-commands: Environments. (line 78) -* TeX-complete-expert-commands <1>: Completion. (line 140) +* TeX-complete-expert-commands <1>: Completion. (line 142) * TeX-complete-list: Completion. (line 26) * TeX-date-format: Adding Macros. (line 123) * TeX-debug-bad-boxes: Ignoring warnings. (line 10) @@ -8373,7 +8430,7 @@ Variable Index * TeX-default-mode <1>: Japanese. (line 67) * TeX-display-help: Debugging. (line 47) * TeX-DVI-via-PDFTeX: Processor Options. (line 22) -* TeX-electric-escape: Completion. (line 98) +* TeX-electric-escape: Completion. (line 97) * TeX-electric-math: Quotes. (line 72) * TeX-electric-sub-and-superscript: Mathematics. (line 68) * TeX-engine: Processor Options. (line 104) @@ -8406,8 +8463,8 @@ Variable Index * TeX-header-end <1>: Starting a Command. (line 69) * TeX-ignore-file: Automatic. (line 52) * TeX-ignore-warnings: Ignoring warnings. (line 25) -* TeX-insert-braces: Completion. (line 116) -* TeX-insert-braces-alist: Completion. (line 119) +* TeX-insert-braces: Completion. (line 117) +* TeX-insert-braces-alist: Completion. (line 121) * TeX-insert-macro-default-style: Completion. (line 76) * TeX-install-font-lock: Font Locking. (line 13) * TeX-interactive-mode: Processor Options. (line 30) @@ -8489,7 +8546,7 @@ Concept Index * \begin: Environments. (line 6) * \chapter: Editing Facilities. (line 26) * \chapter <1>: Sectioning. (line 6) -* \cite, completion of: Completion. (line 152) +* \cite, completion of: Completion. (line 154) * \emph: Editing Facilities. (line 79) * \emph <1>: Font Specifiers. (line 22) * \end: Environments. (line 6) @@ -8498,8 +8555,10 @@ Concept Index * \item: Itemize-like. (line 6) * \label: Editing Facilities. (line 26) * \label <1>: Sectioning. (line 6) -* \label, completion: Completion. (line 152) -* \ref, completion: Completion. (line 152) +* \label, completion: Completion. (line 154) +* \mathgt: Japanese. (line 113) +* \mathmc: Japanese. (line 117) +* \ref, completion: Completion. (line 154) * \section: Editing Facilities. (line 26) * \section <1>: Sectioning. (line 6) * \subsection: Editing Facilities. (line 26) @@ -8537,7 +8596,7 @@ Concept Index (line 6) * ASCII pTeX <1>: Japanese. (line 6) * auctex.el: Loading the package. (line 10) -* auctex.el <1>: Changes. (line 577) +* auctex.el <1>: Changes. (line 591) * auto directories.: Automatic. (line 6) * Auto-Reveal: Folding. (line 6) * Automatic: Automatic. (line 6) @@ -8549,9 +8608,9 @@ Concept Index * biblatex: Selecting a Command. (line 46) * Bibliographies, adding: Adding Other. (line 6) * Bibliography: Commands. (line 6) -* bibliography, completion: Completion. (line 152) +* bibliography, completion: Completion. (line 154) * BibTeX: Commands. (line 6) -* BibTeX, completion: Completion. (line 152) +* BibTeX, completion: Completion. (line 154) * book.el: Simple Style. (line 6) * Braces: Quotes. (line 6) * Brackets: Quotes. (line 6) @@ -8566,8 +8625,8 @@ Concept Index * ChinaTeX: Internationalization. (line 6) * chktex: Checking. (line 6) -* citations, completion of: Completion. (line 152) -* cite, completion of: Completion. (line 152) +* citations, completion of: Completion. (line 154) +* cite, completion of: Completion. (line 154) * CJK language: Internationalization. (line 6) * CJK-LaTeX: Internationalization. @@ -8690,7 +8749,7 @@ Concept Index * Labels: Sectioning. (line 110) * Labels <1>: Floats. (line 32) * Labels, adding: Adding Other. (line 6) -* labels, completion of: Completion. (line 152) +* labels, completion of: Completion. (line 154) * lacheck: Checking. (line 6) * Language Support: Internationalization. (line 6) @@ -8761,7 +8820,7 @@ Concept Index * Polish: European. (line 49) * Prefix for labels: Sectioning. (line 110) * Prefix for labels <1>: Floats. (line 32) -* preview-install-styles: Configure. (line 83) +* preview-install-styles: Configure. (line 85) * Previewing: Viewing. (line 6) * Printing: Commands. (line 6) * Private directories: Automatic Private. (line 6) @@ -8841,7 +8900,7 @@ Concept Index (line 257) * tex-site.el: Loading the package. (line 10) * tex-site.el <1>: Customizing. (line 6) -* tex-site.el <2>: Changes. (line 577) +* tex-site.el <2>: Changes. (line 591) * tool bar, toolbar: Processing. (line 11) * Trailer: Commands. (line 6) * Underfull boxes: Debugging. (line 6) @@ -8869,96 +8928,96 @@ Node: Summary9496 Node: Installation12229 Node: Prerequisites13995 Node: Configure16251 -Node: Build/install and uninstall20804 -Node: Loading the package21557 -Node: Advice for package providers23233 -Node: Advice for non-privileged users26038 -Node: Installation under MS Windows28820 -Node: Customizing42567 -Node: Quick Start44150 -Ref: Quick Start-Footnote-146280 -Node: Editing Facilities46374 -Node: Processing Facilities51177 -Node: Editing55878 -Node: Quotes57208 -Node: Font Specifiers65476 -Node: Sectioning67302 -Node: Environments71622 -Node: Equations76776 -Node: Floats77367 -Node: Itemize-like79371 -Node: Tabular-like80092 -Node: Customizing Environments81865 -Node: Mathematics82105 -Node: Completion85391 -Node: Marking92417 -Node: Marking (LaTeX)93041 -Node: Marking (Texinfo)93983 -Node: Commenting95593 -Node: Indenting96918 -Node: Filling102954 -Node: Display108826 -Node: Font Locking111321 -Node: Fontification of macros113396 -Node: Fontification of quotes122919 -Node: Fontification of math124414 -Node: Verbatim content127644 -Node: Faces128418 -Node: Known problems128907 -Node: Folding129836 -Node: Outline140660 -Node: Narrowing141932 -Node: Prettifying143002 -Node: Processing144238 -Node: Commands145401 -Node: Starting a Command145957 -Node: Selecting a Command150860 -Node: Processor Options159944 -Node: Viewing170291 -Node: Starting Viewers170665 -Node: I/O Correlation177792 -Node: Debugging182992 -Node: Ignoring warnings185611 -Node: Error overview187671 -Node: Checking189582 -Node: Control191175 -Node: Cleaning191902 -Node: Documentation193115 -Node: Customization193830 -Node: Modes and Hooks194323 -Node: Multifile196143 -Node: Parsing Files200955 -Node: Internationalization205867 -Node: European206902 -Node: Japanese213712 -Node: Automatic218783 -Node: Automatic Global221274 -Node: Automatic Private222406 -Node: Automatic Local223719 -Node: Style Files224751 -Node: Simple Style225544 -Node: Adding Macros228817 -Node: Adding Environments238147 -Node: Adding Other242808 -Node: Hacking the Parser243395 -Node: Appendices247264 -Node: Copying this Manual247560 -Node: GNU Free Documentation License248454 -Node: Changes273575 -Node: Development315745 -Node: Mid-term Goals316391 -Node: Wishlist317608 -Node: Bugs323049 -Node: FAQ324152 -Node: Texinfo mode329279 -Node: Exploiting330415 -Node: Superseding331235 -Node: Mapping335439 -Node: Unbinding337268 -Node: Indices338089 -Node: Key Index338252 -Node: Function Index344576 -Node: Variable Index355459 -Node: Concept Index378317 +Node: Build/install and uninstall20877 +Node: Loading the package21630 +Node: Advice for package providers23306 +Node: Advice for non-privileged users26111 +Node: Installation under MS Windows30076 +Node: Customizing43814 +Node: Quick Start45397 +Ref: Quick Start-Footnote-147527 +Node: Editing Facilities47621 +Node: Processing Facilities52424 +Node: Editing57125 +Node: Quotes58455 +Node: Font Specifiers66722 +Node: Sectioning68548 +Node: Environments72868 +Node: Equations78022 +Node: Floats78613 +Node: Itemize-like80617 +Node: Tabular-like81338 +Node: Customizing Environments83111 +Node: Mathematics83351 +Node: Completion86637 +Node: Marking93659 +Node: Marking (LaTeX)94283 +Node: Marking (Texinfo)95225 +Node: Commenting96835 +Node: Indenting98160 +Node: Filling104196 +Node: Display110068 +Node: Font Locking112563 +Node: Fontification of macros114638 +Node: Fontification of quotes124161 +Node: Fontification of math125656 +Node: Verbatim content128886 +Node: Faces129660 +Node: Known problems130149 +Node: Folding131078 +Node: Outline141902 +Node: Narrowing143174 +Node: Prettifying144244 +Node: Processing145480 +Node: Commands146643 +Node: Starting a Command147199 +Node: Selecting a Command152102 +Node: Processor Options161186 +Node: Viewing171533 +Node: Starting Viewers171907 +Node: I/O Correlation179034 +Node: Debugging184232 +Node: Ignoring warnings186851 +Node: Error overview188911 +Node: Checking190822 +Node: Control192415 +Node: Cleaning193142 +Node: Documentation194435 +Node: Customization195150 +Node: Modes and Hooks195643 +Node: Multifile197463 +Node: Parsing Files202275 +Node: Internationalization207187 +Node: European208500 +Node: Japanese215310 +Node: Automatic220381 +Node: Automatic Global222872 +Node: Automatic Private224004 +Node: Automatic Local225317 +Node: Style Files226349 +Node: Simple Style227142 +Node: Adding Macros230801 +Node: Adding Environments240132 +Node: Adding Other244793 +Node: Hacking the Parser245380 +Node: Appendices249249 +Node: Copying this Manual249545 +Node: GNU Free Documentation License250439 +Node: Changes275560 +Node: Development318396 +Node: Mid-term Goals319042 +Node: Wishlist320259 +Node: Bugs325700 +Node: FAQ326803 +Node: Texinfo mode331930 +Node: Exploiting333066 +Node: Superseding333886 +Node: Mapping338090 +Node: Unbinding339919 +Node: Indices340740 +Node: Key Index340903 +Node: Function Index347227 +Node: Variable Index358110 +Node: Concept Index381114 End Tag Table diff --git a/preview-latex.info b/preview-latex.info index b0491b1b..ed9f93bc 100644 --- a/preview-latex.info +++ b/preview-latex.info @@ -2,7 +2,7 @@ This is preview-latex.info, produced by makeinfo version 6.5 from preview-latex.texi. This manual is for preview-latex, a LaTeX preview mode for AUCTeX -(version 12.1.1.2018-09-07 from 2018-09-07). +(version 12.1.1.2019-02-08 from 2019-02-08). Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2017, 2018 Free Software Foundation, Inc. @@ -418,7 +418,7 @@ Preview/Turn preamble cache on style file is tampered with. Note that support for preamble cache is limited for LaTeX variants. - c.f. '<URL:https://github.com/davidcarlisle/dpctex/issues/15>' + c.f. <https://github.com/davidcarlisle/dpctex/issues/15> * XeLaTeX cannot use preamble cache at all. The reason is intrinsic in XeLaTeX, so preview-latex can't help. * LuaLaTeX works with preamble cache only when the preamble is @@ -1856,7 +1856,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 12.1.1.2018-09-07 from 2018-09-07). +(version 12.1.1.2019-02-08 from 2019-02-08). Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2017, 2018 Free Software Foundation, Inc. @@ -2486,29 +2486,29 @@ Node: Availability9545 Node: Contacts10154 Node: Installation11427 Node: Keys and lisp11628 -Node: Simple customization18729 -Node: Known problems24392 -Node: Font problems with Dvips25165 -Node: Too small bounding boxes26338 -Node: x-symbol interoperation27734 -Node: Middle-clicks paste instead of toggling29117 -Node: For advanced users29745 -Node: The LaTeX style file30204 -Node: Package options32766 -Node: Provided commands43670 -Node: The Emacs interface51020 -Node: The preview images59731 -Node: Misplaced previews63481 -Node: ToDo66935 -Node: Frequently Asked Questions71706 -Node: Introduction to FAQ72029 -Node: Requirements72368 -Node: Installation Trouble74200 -Node: Customization76463 -Node: Troubleshooting79555 -Node: Other formats82073 -Node: Copying this Manual83388 -Node: GNU Free Documentation License84340 -Node: Index109464 +Node: Simple customization18723 +Node: Known problems24386 +Node: Font problems with Dvips25159 +Node: Too small bounding boxes26332 +Node: x-symbol interoperation27728 +Node: Middle-clicks paste instead of toggling29111 +Node: For advanced users29739 +Node: The LaTeX style file30198 +Node: Package options32760 +Node: Provided commands43664 +Node: The Emacs interface51014 +Node: The preview images59725 +Node: Misplaced previews63475 +Node: ToDo66929 +Node: Frequently Asked Questions71700 +Node: Introduction to FAQ72023 +Node: Requirements72362 +Node: Installation Trouble74194 +Node: Customization76457 +Node: Troubleshooting79549 +Node: Other formats82067 +Node: Copying this Manual83382 +Node: GNU Free Documentation License84334 +Node: Index109458 End Tag Table diff --git a/tex-site.el b/tex-site.el index 4d0ff96b..e2f92025 100644 --- a/tex-site.el +++ b/tex-site.el @@ -157,11 +157,11 @@ set it with `TeX-modes-set'." `(TeX-modes-set ',var ,var t)) (setq list (cdr list)))))) ) -(defconst AUCTeX-version "12.1.1.2018-09-07" +(defconst AUCTeX-version "12.1.1.2019-02-08" "AUCTeX version. If not a regular release, the date of the last change.") -(defconst AUCTeX-date "2018-09-07" +(defconst AUCTeX-date "2019-02-08" "AUCTeX release date using the ISO 8601 format, yyyy-mm-dd.") ;; Store bibitems when saving a BibTeX buffer