Leo Liu submitted an update to the
zhmCJK
package.
Version number: 0.9c 2016-11-23
License type: lppl
Summary description: Simplify configuration of CJK installations for
Chinese
Announcement text:
----------------------------------------------------------------------
* Support new font definition syntax, similar to fontspec.
* Bug fixes and performance improvements.
----------------------------------------------------------------------
The package's Catalogue entry can be viewed at
http://www.ctan.org/pkg/zhmCJK
The package's files themselves can be inspected at
http://mirror.ctan.org/language/chinese/zhmcjk
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
We are supported by the TeX users groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Gerhard Gossen and Boris Veytsman submitted an update to the
bibtexperllibs
package.
Version number: 1.2
License type: gpl
Summary description: BibTeX Perl Libraries
Announcement text:
----------------------------------------------------------------------
version 1.2 Upgraded BibTeX::Parser to v0.70 and LaTeX::ToUnicode to
0.05
----------------------------------------------------------------------
This package is located at
http://mirror.ctan.org/support/bibtexperllibs
More information is at
http://www.ctan.org/pkg/bibtexperllibs
We are supported by the TeX User Groups.
Please join a users group; see http://www.tug.org/usergroups.html .
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Ina Dau
Maïeul Rouquette submitted an update to the
biblatex-morenames
package.
Version: 1.3.0 2016-11-23
License: lppl1.3
Summary description: New names for standard BibLaTeX entry type
Announcement text:
----------------------------------------------------------------------
Add `noinherit=ineditor` and `noinherit=bookineditor` options
for specific entries.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
http://www.ctan.org/pkg/biblatex-morenames
The package’s files themselves can be inspected at
http://mirror.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-moren…
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
We are supported by the TeX users groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Qing Lee submitted an update to the
xecjk
package.
Version number: 3.4.3
License type: lppl1.3
Summary description: Support for CJK documents in XeLaTeX
Announcement text:
----------------------------------------------------------------------
The syntax of main font-selecting commands is synchronized with
fontspec v2.4 (2014/06/01).
----------------------------------------------------------------------
This package is located at
http://mirror.ctan.org/macros/xetex/latex/xecjk
More information is at
http://www.ctan.org/pkg/xecjk
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
We are supported by the TeX user groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Barbara Beeton submitted an update to the
tugboat-toc
package.
Version: 2016-11-21
License: other-free
Summary description: An accumulation of TUGboat tables of contents
Announcement text:
----------------------------------------------------------------------
This collection of TUGboat tables of contents is complete
through the latest published issue, 37:3 (2016).
All known errors have been corrected.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
http://www.ctan.org/pkg/tugboat-toc
The package’s files themselves can be inspected at
http://mirror.ctan.org/info/digests/tugboat/t-of-c/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
We are supported by the TeX users groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Qing Lee submitted an update to the
ctex
package.
Version number: 2.4.6
License type: lppl1.3
Summary description: LaTeX classes and packages for Chinese typesetting
Announcement text:
----------------------------------------------------------------------
The syntax of main font-selecting commands is synchronized with fontspec
v2.4 (2014/06/01).
----------------------------------------------------------------------
The package's Catalogue entry can be viewed at
http://www.ctan.org/pkg/ctex
The package's files themselves can be inspected at
http://mirror.ctan.org/language/chinese/ctex
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
We are supported by the TeX users groups.
Please join a users group; see http://www.tug.org/usergroups.html .
The LaTeX3 Project submitted an update to the
l3build
package.
Version number: SVN 6760 2016-11-21
License type: lppl1.3
Summary description: A testing and building system for (La)TeX
Announcement text:
----------------------------------------------------------------------
Snapshot of SVN 6760
====================
- l3build: Better normalisation of pdftex.map
- New rand() and randint() functions for FPU
(currently awaiting engine support in XeTeX)
- New fp_step_function:nnnnN and related support
- xparse features a new e-type argument and
drops k-type: new type like that dropped is
experimental
----------------------------------------------------------------------
This package is located at
http://mirror.ctan.org/macros/latex/contrib/l3build
More information is at
http://www.ctan.org/pkg/l3build
We are supported by the TeX User Groups.
Please join a users group; see http://www.tug.org/usergroups.html .
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Ina Dau
Rolf Niepraschk submitted an update to the
showexpl
package.
Version number: 0.3n 2016-11-20
License type: lppl1.2
Summary description: Typesetting LaTeX source code
Announcement text:
----------------------------------------------------------------------
Small corrections (Prevent utf8 encoding errors; use ResultBox; Typo)
----------------------------------------------------------------------
This package is located at
http://mirror.ctan.org/macros/latex/contrib/showexpl
More information is at
http://www.ctan.org/pkg/showexpl
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
We are supported by the TeX user groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Jean-François Burnol submitted an update to the
xint
package.
Version number: 1.2h 2016-11-20
License type: lppl1.3
Summary description: Expandable operations on long numbers
Announcement text:
----------------------------------------------------------------------
This release fixes a few bugs (see CHANGES.{pdf,html}) and has a
new macro `xintNewFunction` which allows to extend the expression
parsers with user-defined functions in situations where
`xintdeffunc` is not usable. Indeed, one can not currently do:
xintdeffunc foo(x):= add(i^2, i=1..x);
in part because the dummy variable range is not explicitely known
as it depends on the variable x. But now one can do:
xintNewFunction {foo}[1]{add(i^2, i=1..#1)}
and the full syntax is allowed in the replacement text because its
actual parsing is delayed to the time where `foo()` will actually
be used. The arguments may then be numerical, or dummy variables,
or sub-expressions etc... `foo()` is then like a genuine function
for the three parsers `xintexpr`, `xintiiexpr`, `xintfloatexpr`.
This is very different from `xintdeffunc` and the closely related
`xintNewExpr` which attempt to parse expressions (either with
variables or macro parameters) and convert them in advance into
(possibly very complicated) nested macro calls.
Side note: after three years of strict obedience to xint prefix,
` hexintexpr`, etc... are provided as synonyms to `xinttheexpr`,
etc...
----------------------------------------------------------------------
This package is located at
http://mirror.ctan.org/macros/generic/xint
More information is at
http://www.ctan.org/pkg/xint
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
We are supported by the TeX user groups.
Please join a users group; see http://www.tug.org/usergroups.html .
Xu Cheng submitted an update to the
hustthesis
package.
Version: 1.4 2016-11-17
License: lppl1.3
Summary description: Unofficial thesis template for Huazhong University
Announcement text:
----------------------------------------------------------------------
* Minor update to fulfill school requirement.
* Add command to custom apply name field.
* Fix for XeLaTeX
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
http://www.ctan.org/pkg/hustthesis
The package’s files themselves can be inspected at
http://mirror.ctan.org/macros/latex/contrib/hustthesis/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
We are supported by the TeX users groups.
Please join a users group; see http://www.tug.org/usergroups.html .