2017-06-29 09:09:33 +00:00
committed by Git OBS Bridge
parent 09e8f81148
commit ea34a29a0c
6 changed files with 83 additions and 40 deletions

View File

@@ -1,3 +1,78 @@
-------------------------------------------------------------------
Thu Jun 29 09:00:16 UTC 2017 - werner@suse.de
- Update to 11.90
* In addition to the completion performed by 'TeX-complete-symbol',
AUCTeX now also supports the new Emacs standard completion-at-point
facility (see the Emacs command 'completion-at-point'). This also
means that modern completion UIs like company-mode work out of the
box in TeX and LaTeX buffers.
* Completion is now aware of being inside a math environment and then
completes math macros.
* AUCTeX is able to display several levels of super- and subscripts,
each one raised above and a bit smaller than its basis. For this
feature, have a look at the customize options
'font-latex-fontify-script' (especially the new values
'multi-level' and 'invisible') and
'font-latex-fontify-script-max-level'. Also, the script characters
'^' and '_' are also fontified with a special face named
'font-latex-script-char-face'.
* Parsing of format specification in various tabular environments has
been improved. The function 'LaTeX-insert-item' ('C-c <LFD>')
inserts suitable number of ampersands for '*{num}{cols}'
constructs. Style files for LaTeX packages 'tabularx', 'tabulary',
'longtable', 'dcolumn' and 'siunitx' are adapted to take advantage
of this improvement.
* AUCTeX has a new Ispell dictionary 'tex-ispell.el' for macros and
environments which will be skipped during spell checking. The
activiation of this feature is controlled by a new customize option
'TeX-ispell-extend-skip-list', which is set to 't' and activated by
default.
* AUCTeX has a new customize option 'TeX-raise-frame-function' that
is currently only used by Evince and Atril inverse search to raise
the Emacs frame.
* When inserting a new float, AUCTeX will now prompt for a
short-caption if the length of the caption provided is greater than
a certain size. This size is controlled via a new user option
'LaTeX-short-caption-prompt-length'.
* Parsing of the compilation log has been reworked. You should
encounter fewer mistaken files while navigating through errors and
warnings.
* Two new user options, 'TeX-ignore-warnings' and
'TeX-suppress-ignored-warnings', allow ignoring certain warnings
after compilation of the document.
* 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.
* Support for a number of external viewers has been added
* A new function, 'TeX-documentation-texdoc', for reading
documentation with 'texdoc' has been added. 'TeX-doc' is still
available but now 'C-c ?' runs 'TeX-documentation-texdoc'.
* AUCTeX has a new custom option
'LaTeX-reftex-cite-format-auto-activate' which controls the
automatic activation of citation formats provided by RefTeX when a
style file is loaded and RefTeX is enabled. Currently,
'biblatex.el', 'harvard.el', 'jurabib.el' and 'natbib.el' use this
feature. If you have customized 'reftex-cite-format' and want to
use your settings, you should set this variable to 'nil'.
* AUCTeX now has limited support for the TikZ package. For the
moment, this includes some basic support for prompting the user of
arguments to the '\draw' macro.
* The style 'graphicx.el' went through a bigger overhaul. The
optional argument of command '\includegraphics' now supports
key-val query; keys can independently be chosen anytime by pressing
the <,> key. As a side effect, the variable
'LaTeX-includegraphics-options-alist' is now no-op and is removed
from 'tex-style.el'. You can safely remove any customization of it
from your init file. The mandatory argument of '\includegraphics'
knows about image file extensions supported by the used engine and
offers them for inclusion.
* Support for other LaTeX packages was improved, and style files for
several new packages were added.
* Many bugs were crushed along the way.
- Remove patch 0001-Fix_bug_in_subfigure_style_filee.patch as now upstream
-------------------------------------------------------------------
Tue Sep 20 14:20:47 UTC 2016 - werner@suse.de