diff options
author | Karl Berry <karl@freefriends.org> | 2015-04-19 22:35:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-04-19 22:35:42 +0000 |
commit | 097c178bf0b8453ef67cbe31d6fdb21bdc50bb61 (patch) | |
tree | bb0111b0b2c8580f405b11d6d262e88bbc0b63cf /Master/texmf-dist/doc/latex/cjk | |
parent | e449ed64f8022dfbeb65586ca6c6caf5ac794a2a (diff) |
cjk
git-svn-id: svn://tug.org/texlive/trunk@36951 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/cjk')
84 files changed, 213 insertions, 108 deletions
diff --git a/Master/texmf-dist/doc/latex/cjk/ChangeLog b/Master/texmf-dist/doc/latex/cjk/ChangeLog index e7c27efe761..f943ead7ea7 100644 --- a/Master/texmf-dist/doc/latex/cjk/ChangeLog +++ b/Master/texmf-dist/doc/latex/cjk/ChangeLog @@ -1,3 +1,85 @@ +2015-04-18 Werner LEMBERG <wl@gnu.org> + + Version 4.8.4 released + ====================== + + Set version to 4.8.4. + + * doc/history.txt: Updated. + + * Makefile (distsrc, distdoc): Use tar's `ustar' format. + Compress better. + + Update headers in all text files. + +2015-04-18 Werner LEMBERG <wl@gnu.org> + + [hbf2gf] Update aux scripts. + + * utils/hbf2gf/config.guess, utils/hbf2gf/config.sub, + utils/hbf2gf/install-sh: Updated to current versions. + +2014-08-31 Peter Breitenlohner <peb@mppmu.mpg.de> + + [hbf2gf]: Avoid undefined behaviour when `char' is signed. + + * utils/hbf2gf/hbf.c (match, add_property, skip_word, get_line): Use + proper cast. + * utils/hbf2gf/hbf2gf.w (fsearch, <Check for environment + variables>): Ditto. + +2014-08-31 Peter Breitenlohner <peb@mppmu.mpg.de> + + * utils/hbf2gf/hbf2hf.w (path_open): Drop unused variable. + +2014-06-28 Leo Liu <leoliu.pku@gmail.com> + + [CJKutf8] Fix space handing of non-CJK characters. + + * texinput/CJKutf8.sty (\CJK@XX, \CJK@XXp, \CJK@XXX, \CJK@XXXp): + Only apply \CJK@ignorespaces for CJK characters (or rather, only for + multibyte sequences that don't map to a `\u8:...' macro). + +2012-09-13 Werner LEMBERG <wl@gnu.org> + + * examples/CJKutf8.tex: Add Greek. + + This finally works due to the recent lgrx package which delivers + good Babel UTF8 support for LGR encoding. + + An unsolved problem yet, however, is proper cut-and-paste support. + While dvipdfmx properly generates CMaps for CJK encodings (even + for virtual fonts which pdftex doesn't handle at all), it doesn't + handle encodings like LGR correctly, something the `cmap' package + provides for pdflatex. + +2012-08-26 Werner LEMBERG <wl@gnu.org> + + * texinput/CJK.sty (\Unicode): Fix conditional to allow line breaks. + + Problem reported by Jinsong Zhao <jszhao@yeah.net>; it seems that + this bug has been there since from the beginning. + +2012-06-21 Werner LEMBERG <wl@gnu.org> + + Make some commands robust. + + * texinput/CJK.sty (\CJKtilde, \standardtilde, \CJKspace, + \CJKnospace): Use \DeclareRobustCommand. + +2012-05-20 Peter Breitenlohner <peb@mppmu.mpg.de> + + [hbf2gf] Build fix for 64-bit Mac OS X 10.7.3. + + * utils/hbf2gf/hbf2gf.w: Clang does not like non-static inline + functions as used here. While at it, all local functions are + declared static. + Do not extend #ifdef HAVE_EMTEXDIR...#endif over several sections. + +2012-05-08 Werner LEMBERG <wl@gnu.org> + + * texlive/cjk.pl: Add missing file. + 2012-05-07 Werner LEMBERG <wl@gnu.org> Version 4.8.3 released diff --git a/Master/texmf-dist/doc/latex/cjk/MANIFEST b/Master/texmf-dist/doc/latex/cjk/MANIFEST index e7071f1c5e5..14d9e3d5013 100644 --- a/Master/texmf-dist/doc/latex/cjk/MANIFEST +++ b/Master/texmf-dist/doc/latex/cjk/MANIFEST @@ -1,4 +1,4 @@ -Copyright (C) 1994-2012 Werner Lemberg <wl@gnu.org> +Copyright (C) 1994-2015 Werner Lemberg <wl@gnu.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/Master/texmf-dist/doc/latex/cjk/Makefile b/Master/texmf-dist/doc/latex/cjk/Makefile index 3b72e119ac9..d80bb6fb3aa 100644 --- a/Master/texmf-dist/doc/latex/cjk/Makefile +++ b/Master/texmf-dist/doc/latex/cjk/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1994-2012 Werner Lemberg <wl@gnu.org> +# Copyright (C) 1994-2015 Werner Lemberg <wl@gnu.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -33,7 +33,7 @@ # o The TeXLive version of some font definition files are used (in the # `texlive' subdirectory). -version=4.8.3 +version=4.8.4 distdir=cjk-$(version) abs-distdir=$(shell pwd)/$(distdir) @@ -162,7 +162,7 @@ distsrc: for f in `find $(abs-distdir)/utils -name '*.w'`; do \ ctangle $$f - `echo $$f | sed s/w$$/c/`; \ done - tar cfh - $(distdir) | gzip -c > $(distdir).tar.gz + tar -H ustar -chf - $(distdir) | gzip -9 -c > $(distdir).tar.gz predistdoc: mkdir -p $(distdir)/doc/{cjk,dvi,pdf} @@ -187,7 +187,7 @@ distdoc: $(DISTTARGETS) manpages cweb -for d in `find $(distdir) -depth -type d`; do \ rmdir --ignore-fail-on-non-empty $$d; \ done - tar cfh - $(distdir) | gzip -c > $(distdir)-doc.tar.gz + tar -H ustar -chf - $(distdir) | gzip -9 -c > $(distdir)-doc.tar.gz rm -rf $(distdir) manpages: diff --git a/Master/texmf-dist/doc/latex/cjk/README b/Master/texmf-dist/doc/latex/cjk/README index 6ff91c164e3..cf33f17eb75 100644 --- a/Master/texmf-dist/doc/latex/cjk/README +++ b/Master/texmf-dist/doc/latex/cjk/README @@ -1,11 +1,12 @@ -Welcome to CJK version 4.8.3 (07-May-2012), a LaTeX2e macro package which +Welcome to CJK version 4.8.4 (18-Apr-2015), a LaTeX2e macro package which enables the use of CJK scripts (Chinese/Japanese/Korean) in various encodings, written by Werner Lemberg <wl@gnu.org>. -A mailing list exists at cjk@ffii.org; bugs should be sent to -cjk-bug@ffii.org. To subscribe one of the lists, send a mail with the -subject `subscribe' (without the quotes) to <list>-request@ffii.org, e.g., -cjk-request@ffii.org. +A mailing list exists at cjk-list@nongnu.org; to subscribe, send a mail +with the subject `subscribe' (without the quotes) to +cjk-list-request@nongnu.org. A web interface can be found at + + https://lists.nongnu.org/mailman/listinfo/cjk-list If you are interested in the process of development you may observe @@ -24,8 +25,8 @@ hosts and its mirrors in the directory <CTAN>/language/chinese. The package comes in two parts: - cjk-4.8.3.tar.gz: The source files. Needed for all platforms. - cjk-4.8.3-doc.tar.gz: Preformatted documentation files: DVI, PS, + cjk-4.8.4.tar.gz: The source files. Needed for all platforms. + cjk-4.8.4-doc.tar.gz: Preformatted documentation files: DVI, PS, output from cjk-enc.el, etc. Note that on CTAN and its mirrors, the `src' archive is unpacked; you must diff --git a/Master/texmf-dist/doc/latex/cjk/doc/CEF.txt b/Master/texmf-dist/doc/latex/cjk/doc/CEF.txt index d8d19c370b0..48571c64aca 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/CEF.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/CEF.txt @@ -1,4 +1,4 @@ -This is the file CEF.txt of the CJK macro package ver. 4.8.3 (07-May-2012). +This is the file CEF.txt of the CJK macro package ver. 4.8.4 (18-Apr-2015). The Chinese Encoding Framework (CEF) ------------------------------------ diff --git a/Master/texmf-dist/doc/latex/cjk/doc/CJK.txt b/Master/texmf-dist/doc/latex/cjk/doc/CJK.txt index eddd612aef8..1432ae81be8 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/CJK.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/CJK.txt @@ -1,5 +1,5 @@ -This is the LaTeX2e style package CJK Version 4.8.3 (07-May-2012) +This is the LaTeX2e style package CJK Version 4.8.4 (18-Apr-2015) ================================================================= It is freely distributable under the GNU Public License. @@ -1267,13 +1267,7 @@ Author Werner Lemberg <wl@gnu.org> -Kleine Beurhausstr. 1 -D-44137 Dortmund -Germany - -Tel. +49 231 165290 - -Please report any errors or suggestions to cjk-bug@ffii.org. +Please report any errors or suggestions to cjk-list@nongnu.org. ---End of CJK.txt--- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/CJKnumb.txt b/Master/texmf-dist/doc/latex/cjk/doc/CJKnumb.txt index 1030026187f..5f0ca179f21 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/CJKnumb.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/CJKnumb.txt @@ -1,5 +1,5 @@ -This is the file CJKnumb.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file CJKnumb.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). CJKnumb.sty ------------ diff --git a/Master/texmf-dist/doc/latex/cjk/doc/CJKspace.txt b/Master/texmf-dist/doc/latex/cjk/doc/CJKspace.txt index ea9a2ea4dc9..6743c3b0494 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/CJKspace.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/CJKspace.txt @@ -1,5 +1,5 @@ -This is the file CJKspace.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file CJKspace.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). CJKspace.sty ------------ diff --git a/Master/texmf-dist/doc/latex/cjk/doc/CJKutf8.txt b/Master/texmf-dist/doc/latex/cjk/doc/CJKutf8.txt index c9d974e5a72..f244d233bbc 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/CJKutf8.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/CJKutf8.txt @@ -1,5 +1,5 @@ -This is the file CJKutf8.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file CJKutf8.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). CJKutf8.sty ----------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/INSTALL b/Master/texmf-dist/doc/latex/cjk/doc/INSTALL index 867d279d3b0..6707649932c 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/INSTALL +++ b/Master/texmf-dist/doc/latex/cjk/doc/INSTALL @@ -1,4 +1,4 @@ -This is the file INSTALL of the CJK macro package ver. 4.8.3 (07-May-2012). +This is the file INSTALL of the CJK macro package ver. 4.8.4 (18-Apr-2015). Installation Guide ================== @@ -624,11 +624,11 @@ How to get CJK and related software . The documentation bundle of the CJK package is not unpackaged; download it as - get cjk-4.8.3-doc.tar.gz + get cjk-4.8.4-doc.tar.gz or - get cjk-4.8.3-doc.tar.gz cjkdoc.tgz + get cjk-4.8.4-doc.tar.gz cjkdoc.tgz whatever is appropriate for your system. It contains precompiled versions (in DVI, PDF, text format) of all documentation and example files. diff --git a/Master/texmf-dist/doc/latex/cjk/doc/TDS.txt b/Master/texmf-dist/doc/latex/cjk/doc/TDS.txt index c700ec405ff..81bba5d650c 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/TDS.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/TDS.txt @@ -1,4 +1,4 @@ -This is the file TDS.txt of the CJK macro package ver. 4.8.3 (07-May-2012). +This is the file TDS.txt of the CJK macro package ver. 4.8.4 (18-Apr-2015). The TeX Directory Structure (TDS) --------------------------------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/cjk-enc.txt b/Master/texmf-dist/doc/latex/cjk/doc/cjk-enc.txt index 2d9f8858102..5297236e355 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/cjk-enc.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/cjk-enc.txt @@ -1,5 +1,5 @@ -This is the file cjk-enc.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file cjk-enc.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). cjk-enc.el ---------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/cjk/READMEb5.cjk b/Master/texmf-dist/doc/latex/cjk/doc/cjk/READMEb5.cjk index 24030ebd9a8..03c4332306c 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/cjk/READMEb5.cjk +++ b/Master/texmf-dist/doc/latex/cjk/doc/cjk/READMEb5.cjk @@ -1,4 +1,4 @@ -\def\CJKpreproc{bg5conv (CJK ver. 4.8.2)}%%% The file READMEb5.tex . This file is part of LaTeX2e CJK package. +\def\CJKpreproc{bg5conv (CJK ver. 4.8.3)}%%% The file READMEb5.tex . This file is part of LaTeX2e CJK package. %%% %%% Note that this document is a very first version. Therefore, lots %%% of installation steps and issues are still left blank. Please be diff --git a/Master/texmf-dist/doc/latex/cjk/doc/commands.txt b/Master/texmf-dist/doc/latex/cjk/doc/commands.txt index 9286bdb2a75..1ece44b5eeb 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/commands.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/commands.txt @@ -1,5 +1,5 @@ -This is the file commands.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file commands.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Here is a list of all commands of CJK. diff --git a/Master/texmf-dist/doc/latex/cjk/doc/fdxfiles.txt b/Master/texmf-dist/doc/latex/cjk/doc/fdxfiles.txt index 8273a462dc2..c4bdffa8034 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/fdxfiles.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/fdxfiles.txt @@ -1,5 +1,5 @@ -This is the file fdxfiles.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file fdxfiles.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Extended font definition files diff --git a/Master/texmf-dist/doc/latex/cjk/doc/fonts.txt b/Master/texmf-dist/doc/latex/cjk/doc/fonts.txt index 5f43a9b193a..b68a82838fd 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/fonts.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/fonts.txt @@ -1,5 +1,5 @@ -This is the file fonts.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file fonts.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). The fonts --------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/hbf2gf.txt b/Master/texmf-dist/doc/latex/cjk/doc/hbf2gf.txt index 356d90bb51b..1ebc4e2ccc5 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/hbf2gf.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/hbf2gf.txt @@ -1,5 +1,5 @@ -This is the file hbf2gf.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file hbf2gf.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Using hbf2gf ------------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/history.2_5 b/Master/texmf-dist/doc/latex/cjk/doc/history.2_5 index d135922d191..a9d29ef4c42 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/history.2_5 +++ b/Master/texmf-dist/doc/latex/cjk/doc/history.2_5 @@ -1,4 +1,4 @@ -This file is part of the CJK package Ver. 4.8.3 (07-May-2012). +This file is part of the CJK package Ver. 4.8.4 (18-Apr-2015). The history of the beta versions of the never released version 2.5 . -------------------------------------------------------------------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/history.txt b/Master/texmf-dist/doc/latex/cjk/doc/history.txt index 53e4c84b760..ca35f64de5f 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/history.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/history.txt @@ -1536,4 +1536,14 @@ Version 4.8.3: Fix case where furigana is smaller than base glyph. +Version 4.8.4: +18-Apr-2015 + errors: + CJKutf8.sty: + Fix space handling of non-CJK characters. + + CJK.sty: + In \Unicode, fix conditional to allow line breaks. + + ---End of history.txt--- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEb5.pdf b/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEb5.pdf Binary files differindex e0e82e0ce74..ee692405633 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEb5.pdf +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEb5.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEgb.pdf b/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEgb.pdf Binary files differindex c7c55f204cb..109dd90c956 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEgb.pdf +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdf/READMEgb.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd index c078acf9fe2..8cc9004f21a 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd @@ -1,6 +1,6 @@ % This is the file c00cwtb.fd of the CJK package -\def\fileversion{4.8.3} -\def\filedate{2012/05/07} +\def\fileversion{4.8.4} +\def\filedate{2015/04/18} \ProvidesFile{c00cwtb.fd}[\filedate\space\fileversion] \DeclareFontFamily{C00}{cwtb}{\hyphenchar \font\m@ne} diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd index 213f932cac0..e61183c4435 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd @@ -1,6 +1,6 @@ % This is the file c00tmpl.fd of the CJK package -\def\fileversion{4.8.3} -\def\filedate{2012/05/07} +\def\fileversion{4.8.4} +\def\filedate{2015/04/18} \ProvidesFile{c00tmpl.fd}[\filedate\space\fileversion] \DeclareFontFamily{C00}{tmpl}{\hyphenchar \font\m@ne} diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd index c7cd9a14ce6..aa2ad661932 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd @@ -1,6 +1,6 @@ % This is the file c10tmpl.fd of the CJK package -\def\fileversion{4.8.3} -\def\filedate{2012/05/07} +\def\fileversion{4.8.4} +\def\filedate{2015/04/18} \ProvidesFile{c10tmpl.fd}[\filedate\space\fileversion] \DeclareFontFamily{C10}{tmpl}{\hyphenchar \font\m@ne} diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd index 95eedb90002..5b6efbd6f56 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd @@ -1,6 +1,6 @@ % This is the file c40tmpl.fd of the CJK package -\def\fileversion{4.8.3} -\def\filedate{2012/05/07} +\def\fileversion{4.8.4} +\def\filedate{2015/04/18} \ProvidesFile{c40tmpl.fd}[\filedate\space\fileversion] \DeclareFontFamily{C40}{tmpl}{\hyphenchar \font\m@ne} diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd index 6268445a2bd..2e844d102f5 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd +++ b/Master/texmf-dist/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd @@ -1,6 +1,6 @@ % This is the file c49song.fd of the CJK package -\def\fileversion{4.8.3} -\def\filedate{2012/05/07} +\def\fileversion{4.8.4} +\def\filedate{2015/04/18} \ProvidesFile{c49song.fd}[\filedate\space\fileversion] \DeclareFontFamily{C49}{song}{\hyphenchar \font\m@ne} diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pinyin.txt b/Master/texmf-dist/doc/latex/cjk/doc/pinyin.txt index e287fc138bd..3cd92184d41 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pinyin.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/pinyin.txt @@ -1,5 +1,5 @@ -This is the file pinyin.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file pinyin.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). pinyin.sty ---------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/pyhyphen.txt b/Master/texmf-dist/doc/latex/cjk/doc/pyhyphen.txt index 2e623a5b3a7..b742c8758c1 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/pyhyphen.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/pyhyphen.txt @@ -1,5 +1,5 @@ -This is the file pyhyphen.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file pyhyphen.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Hyphenation patterns for unaccented pinyin syllables ---------------------------------------------------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/reftex.txt b/Master/texmf-dist/doc/latex/cjk/doc/reftex.txt index 05edeb69a70..eb7f37cd005 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/reftex.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/reftex.txt @@ -1,5 +1,5 @@ -This is the file reftex.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file reftex.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). RefTeX ------ diff --git a/Master/texmf-dist/doc/latex/cjk/doc/ruby.txt b/Master/texmf-dist/doc/latex/cjk/doc/ruby.txt index ebaf1c7d95e..788ebdcdee0 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/ruby.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/ruby.txt @@ -1,4 +1,4 @@ -This is the file ruby.txt of the CJK macro package ver. 4.8.3 (07-May-2012). +This is the file ruby.txt of the CJK macro package ver. 4.8.4 (18-Apr-2015). What is ruby? ------------- diff --git a/Master/texmf-dist/doc/latex/cjk/doc/thaifont.txt b/Master/texmf-dist/doc/latex/cjk/doc/thaifont.txt index 31ee9e5e23a..d1833968050 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/thaifont.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/thaifont.txt @@ -1,10 +1,10 @@ -This is the file thaifont.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file thaifont.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Thai font support in the CJK package ------------------------------------ -Version 4.8.3 of the CJK package has improved support for Thai. This file +Version 4.8.4 of the CJK package has improved support for Thai. This file describes how to install and use the fonts. Please refer to cjk-enc.txt how to set up cjk-enc.el (which automatically loads thai-word.el for finding word breaks). diff --git a/Master/texmf-dist/doc/latex/cjk/doc/vertical.txt b/Master/texmf-dist/doc/latex/cjk/doc/vertical.txt index 8d45fe9824b..6e16a9a21f4 100644 --- a/Master/texmf-dist/doc/latex/cjk/doc/vertical.txt +++ b/Master/texmf-dist/doc/latex/cjk/doc/vertical.txt @@ -1,5 +1,5 @@ -This is the file vertical.txt of the CJK macro package ver. 4.8.3 -(07-May-2012). +This is the file vertical.txt of the CJK macro package ver. 4.8.4 +(18-Apr-2015). Vertical typesetting diff --git a/Master/texmf-dist/doc/latex/cjk/examples/Big5.tex b/Master/texmf-dist/doc/latex/cjk/examples/Big5.tex index 913cbead365..9f6ce11d30e 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/Big5.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/Big5.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % % process this file with bg5latex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/Big5vert.tex b/Master/texmf-dist/doc/latex/cjk/examples/Big5vert.tex index fbfbfc71a23..a2523a3e290 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/Big5vert.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/Big5vert.tex @@ -5,7 +5,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CEF_test.tex b/Master/texmf-dist/doc/latex/cjk/examples/CEF_test.tex index 9c74eb03123..9cd04277495 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CEF_test.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CEF_test.tex @@ -1,7 +1,7 @@ % This is the file CEF_test.tex of the CJK package % for testing CEF encoded text with LaTeX2e % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % process this text with ceflatex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CJKbabel.tex b/Master/texmf-dist/doc/latex/cjk/examples/CJKbabel.tex index 891171c9b72..468557398e6 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CJKbabel.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CJKbabel.tex @@ -4,7 +4,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CJKfntef.tex b/Master/texmf-dist/doc/latex/cjk/examples/CJKfntef.tex index 9581e9b31b9..38417887f9e 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CJKfntef.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CJKfntef.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CJKmixed.tex b/Master/texmf-dist/doc/latex/cjk/examples/CJKmixed.tex index 6fe53c836ef..98d2e5f725e 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CJKmixed.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CJKmixed.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % Vietnamese support for Babel comes with the VnTeX package. diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CJKspace.tex b/Master/texmf-dist/doc/latex/cjk/examples/CJKspace.tex index 190b5bbcdda..cb96c2ec3b0 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CJKspace.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CJKspace.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % Read CJKspace.txt for more details. diff --git a/Master/texmf-dist/doc/latex/cjk/examples/CJKutf8.tex b/Master/texmf-dist/doc/latex/cjk/examples/CJKutf8.tex index 0895e9bd157..18cfa92e810 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/CJKutf8.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/CJKutf8.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % Vietnamese support for Babel comes with the VnTeX package. % @@ -11,11 +11,19 @@ \documentclass[12pt]{article} +\usepackage{cmap} + \usepackage[10pt]{type1ec} % use only 10pt fonts \usepackage[T1]{fontenc} \usepackage{CJKutf8} -\usepackage[german, russian, vietnam, USenglish]{babel} +\usepackage[german, + russian, % T2A font encoding + vietnamese, % T5 font encoding + greek, % LGR font encoding + USenglish]{babel} + +\usepackage{textalpha} % improved LGR support \usepackage[overlap, CJK]{ruby} \usepackage{CJKulem} @@ -88,7 +96,7 @@ and their answers in a convenient form. \uline{The structure of this う}して下さい。} \end{Japanese} -\begin{otherlanguage}{vietnam} +\begin{otherlanguage}{vietnamese} Phần ``Những câu hỏi và giải đáp thường gặp'' (viết tắt từ tiếng Anh là FAQ) được nêu ra ở đây nhằm mục đích thu thập những câu hỏi thường gặp trong thực tế và những lời giải đáp thích hợp nhất của @@ -105,6 +113,15 @@ and their answers in a convenient form. \uline{The structure of this этот FAQ и его структура' объяснены детали этой новой структуры.} \end{otherlanguage} +\begin{otherlanguage}{greek} + Η λίστα αυτή ΣΤΕ (συχνά τιθεμένων ερωτήσεων) έχει σαν σκοπό να + συμπεριλάβει σε εύχρηστη μορφή κάποιες σημαντικές ερωτήσεις και τις + απαντήσεις τους. \uline{Η οργάνωση αυτής της λίστας άλλαξε + σημαντικά από την τελευταία έκδοσή της και μετά.} \textbf{Για + λεπτομέρειες πάνω στη νέα οργάνωση, βλέπε το λήμμα <<Πώς να + διαβάσετε αυτή την ΣΤΕ και πώς είναι οργανωμένη>>.} +\end{otherlanguage} + \end{CJK} \end{document} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/GB.tex b/Master/texmf-dist/doc/latex/cjk/examples/GB.tex index 6b675f5d356..334b786a4d4 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/GB.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/GB.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/JIS.tex b/Master/texmf-dist/doc/latex/cjk/examples/JIS.tex index 81f3c2daf4f..1808d52d8df 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/JIS.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/JIS.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/KS.tex b/Master/texmf-dist/doc/latex/cjk/examples/KS.tex index b79c42fecaf..474319c0007 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/KS.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/KS.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/SJIS.tex b/Master/texmf-dist/doc/latex/cjk/examples/SJIS.tex index 0bcf9b93dea..80ccf2ee70e 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/SJIS.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/SJIS.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % % process this file with sjislatex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/UTF8.tex b/Master/texmf-dist/doc/latex/cjk/examples/UTF8.tex index b025d36a8ba..bbbc0e0b48e 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/UTF8.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/UTF8.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5.cjk index dc1b3e5011e..c2cb4a77956 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5.cjk @@ -1,9 +1,9 @@ -\def\CJKpreproc{bg5conv (CJK ver. 4.8.2)}% This is the file Big5.tex of the CJK package +\def\CJKpreproc{bg5conv (CJK ver. 4.8.3)}% This is the file Big5.tex of the CJK package % for testing Chinese (in Big 5 encoding). % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % % process this file with bg5latex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5vert.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5vert.cjk index 04617cb8a21..2b4f60b216f 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5vert.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/Big5vert.cjk @@ -1,11 +1,11 @@ -\def\CJKpreproc{bg5conv (CJK ver. 4.8.2)}% This is the file Big5vert.tex of the CJK package +\def\CJKpreproc{bg5conv (CJK ver. 4.8.3)}% This is the file Big5vert.tex of the CJK package % for testing vertical typesetting (in Big 5 encoding). % % process this file with bg5latex % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass[12pt]{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/CEF_test.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/CEF_test.cjk index 1e9647ad4b8..fc455f1e5bb 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/CEF_test.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/CEF_test.cjk @@ -1,7 +1,7 @@ -\def\CNSpreproc{cefconv (CJK ver. 4.8.2)}% This is the file CEF_test.tex of the CJK package +\def\CNSpreproc{cefconv (CJK ver. 4.8.3)}% This is the file CEF_test.tex of the CJK package % for testing CEF encoded text with LaTeX2e % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % process this text with ceflatex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/CJKbabel.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/CJKbabel.cjk index 37cc776d229..0afa78e99c6 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/CJKbabel.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/CJKbabel.cjk @@ -4,7 +4,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/SJIS.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/SJIS.cjk index 808f5ccfd3d..461698598d7 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/SJIS.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/SJIS.cjk @@ -1,9 +1,9 @@ -\def\CJKpreproc{sjisconv (CJK ver. 4.8.2)}% This is the file SJIS.tex of the CJK package +\def\CJKpreproc{sjisconv (CJK ver. 4.8.3)}% This is the file SJIS.tex of the CJK package % for testing Japanese (in SJIS encoding). % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % % % process this file with sjislatex diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/muletest.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/muletest.cjk index 1c5c4b93a01..e212b1a23ed 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/muletest.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/muletest.cjk @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 (or Mule 2.3) to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/rubytest.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/rubytest.cjk index 3966c02085a..cfbc295156a 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/rubytest.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/rubytest.cjk @@ -3,7 +3,7 @@ % % created by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 (or Mule 2.3) to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/cjk/thai.cjk b/Master/texmf-dist/doc/latex/cjk/examples/cjk/thai.cjk index ca58c1b4201..ef16754e353 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/cjk/thai.cjk +++ b/Master/texmf-dist/doc/latex/cjk/examples/cjk/thai.cjk @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % This file must be processed with cjk-enc.el to get % diff --git a/Master/texmf-dist/doc/latex/cjk/examples/muletest.tex b/Master/texmf-dist/doc/latex/cjk/examples/muletest.tex index a8232b3bd65..9c7b86c5ba0 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/muletest.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/muletest.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 (or Mule 2.3) to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5.pdf Binary files differindex 5280c630b90..673422ed7b2 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5vert.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5vert.pdf Binary files differindex 2798011f4ff..6b00bd023f2 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5vert.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/Big5vert.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CEF_test.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CEF_test.pdf Binary files differindex 921e267db72..e326af035dd 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CEF_test.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CEF_test.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKbabel.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKbabel.pdf Binary files differindex e97dca9ce23..7d3dab33bd1 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKbabel.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKbabel.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKfntef.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKfntef.pdf Binary files differindex 1f29886c451..58e7a7c4184 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKfntef.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKfntef.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKmixed.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKmixed.pdf Binary files differindex cf62b94a076..6cd3bc814a6 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKmixed.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKmixed.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKspace.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKspace.pdf Binary files differindex 3083afbb9a3..735b14ff80f 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKspace.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKspace.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKutf8.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKutf8.pdf Binary files differindex 4357dd3dad3..28cc7ee9bb6 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKutf8.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/CJKutf8.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/GB.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/GB.pdf Binary files differindex 91ab647343e..094c34a1fdf 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/GB.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/GB.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/JIS.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/JIS.pdf Binary files differindex f8c8543629b..71e0a4335f0 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/JIS.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/JIS.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/KS.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/KS.pdf Binary files differindex b2a4ff814d3..b64b1c72608 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/KS.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/KS.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/SJIS.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/SJIS.pdf Binary files differindex 528bd8cf271..9fb248701c1 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/SJIS.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/SJIS.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/UTF8.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/UTF8.pdf Binary files differindex 9e764ea4818..851d91dfb08 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/UTF8.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/UTF8.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/muletest.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/muletest.pdf Binary files differindex fe72b429cad..f7711e89c9b 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/muletest.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/muletest.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/py_test.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/py_test.pdf Binary files differindex 6f59318eb04..aca573272a7 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/py_test.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/py_test.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/pytest.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/pytest.pdf Binary files differindex 72bb3965ea3..b4b458da6c6 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/pytest.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/pytest.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/rubytest.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/rubytest.pdf Binary files differindex 66dfc45825f..dc6d7b0ff74 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/rubytest.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/rubytest.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai.pdf Binary files differindex aa3632fe603..322e0c696ef 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai_utf8.pdf b/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai_utf8.pdf Binary files differindex 1f1277b908c..e1682796862 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai_utf8.pdf +++ b/Master/texmf-dist/doc/latex/cjk/examples/pdf/thai_utf8.pdf diff --git a/Master/texmf-dist/doc/latex/cjk/examples/py_test.tex b/Master/texmf-dist/doc/latex/cjk/examples/py_test.tex index c9f727a83d1..1bb650f4a11 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/py_test.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/py_test.tex @@ -3,7 +3,7 @@ % % created by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) \documentclass{article} diff --git a/Master/texmf-dist/doc/latex/cjk/examples/rubytest.tex b/Master/texmf-dist/doc/latex/cjk/examples/rubytest.tex index 065042a5594..8e8b83e0321 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/rubytest.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/rubytest.tex @@ -3,7 +3,7 @@ % % created by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % You need Emacs 20 (or Mule 2.3) to process this file! diff --git a/Master/texmf-dist/doc/latex/cjk/examples/thai.tex b/Master/texmf-dist/doc/latex/cjk/examples/thai.tex index 49362ba2abd..6466e78e8c0 100644 --- a/Master/texmf-dist/doc/latex/cjk/examples/thai.tex +++ b/Master/texmf-dist/doc/latex/cjk/examples/thai.tex @@ -3,7 +3,7 @@ % % written by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % This file must be processed with cjk-enc.el to get % diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/bin-cjkutils.pl b/Master/texmf-dist/doc/latex/cjk/texlive/bin-cjkutils.pl index c0c92b8402f..ea1997a8c42 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/bin-cjkutils.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/bin-cjkutils.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. @@ -21,7 +21,7 @@ my $H = "hbf2gf"; # -# cjk-4.8.3 +# cjk-4.8.4 # --------- # @@ -56,7 +56,7 @@ my $H = "hbf2gf"; # -# cjk-4.8.3-doc +# cjk-4.8.4-doc # ------------- # diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/c90.pl b/Master/texmf-dist/doc/latex/cjk/texlive/c90.pl index a98e966c6e3..15863e16a11 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/c90.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/c90.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. my $D = "doc/fonts/enc/c90"; diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/cjk-build.pl b/Master/texmf-dist/doc/latex/cjk/texlive/cjk-build.pl index 7ee1be68330..d2ff4ff7432 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/cjk-build.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/cjk-build.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. For installation, it # simply uses `install -d' so that missing subdirectories are created # automatically. diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/cjk.pl b/Master/texmf-dist/doc/latex/cjk/texlive/cjk.pl index 1d9e5d02c44..5e487dab7ca 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/cjk.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/cjk.pl @@ -8,11 +8,11 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. # -# cjk-4.8.3 +# cjk-4.8.4 # --------- # @@ -424,7 +424,7 @@ my $T = "tex/latex/cjk"; # -# cjk-4.8.3-doc +# cjk-4.8.4-doc # ------------- # @@ -482,6 +482,7 @@ my $T = "tex/latex/cjk"; &I("examples/pdf/rubytest.pdf", "$D/examples/pdf/rubytest.pdf"); &I("examples/pdf/SJIS.pdf", "$D/examples/pdf/SJIS.pdf"); &I("examples/pdf/thai.pdf", "$D/examples/pdf/thai.pdf"); +&I("examples/pdf/thai_utf8.pdf","$D/examples/pdf/thai_utf8.pdf"); &I("examples/pdf/UTF8.pdf", "$D/examples/pdf/UTF8.pdf"); 1; diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/dnp.pl b/Master/texmf-dist/doc/latex/cjk/texlive/dnp.pl index 6eec863036b..f0ccf46a272 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/dnp.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/dnp.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/garuda-c90.pl b/Master/texmf-dist/doc/latex/cjk/texlive/garuda-c90.pl index b87500e7c97..40e0cda7430 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/garuda-c90.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/garuda-c90.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. my $D = "dvips/garuda-c90"; diff --git a/Master/texmf-dist/doc/latex/cjk/texlive/norasi-c90.pl b/Master/texmf-dist/doc/latex/cjk/texlive/norasi-c90.pl index ddf3321081c..200e31ea2dd 100755 --- a/Master/texmf-dist/doc/latex/cjk/texlive/norasi-c90.pl +++ b/Master/texmf-dist/doc/latex/cjk/texlive/norasi-c90.pl @@ -8,7 +8,7 @@ # the ctan2tds perl script. It installs the necessary files from the CJK # package into the correct destinations. # -# It expects that the CJK packages (cjk-4.8.3 and cjk-4.8.3-doc) have been +# It expects that the CJK packages (cjk-4.8.4 and cjk-4.8.4-doc) have been # unpacked (unmodified) in the current directory. my $D = "dvips/norasi-c90"; diff --git a/Master/texmf-dist/doc/latex/cjk/utils/pyhyphen/pytest.tex b/Master/texmf-dist/doc/latex/cjk/utils/pyhyphen/pytest.tex index 33bcd0c6938..adf37d3c324 100644 --- a/Master/texmf-dist/doc/latex/cjk/utils/pyhyphen/pytest.tex +++ b/Master/texmf-dist/doc/latex/cjk/utils/pyhyphen/pytest.tex @@ -3,7 +3,7 @@ % % created by Werner Lemberg <wl@gnu.org> % -% Version 4.8.3 (07-May-2012) +% Version 4.8.4 (18-Apr-2015) % %% %% Attention! This will work only if you have created a new format file |