summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-07-12 00:58:13 +0000
committerKarl Berry <karl@freefriends.org>2008-07-12 00:58:13 +0000
commitb644be7550076c874437a062a31c63be6daaa12e (patch)
treec65475d5cd98a50d3b77049242bb980d75d3554d /Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt
parent438c86541627788f5c36d5af5d2fdd2682bf4d4c (diff)
cjk 4.8.0 update (named CJK before)
git-svn-id: svn://tug.org/texlive/trunk@9456 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt')
-rw-r--r--Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt73
1 files changed, 73 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt b/Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt
new file mode 100644
index 00000000000..60e2811644f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/cjk/doc/xCJK.txt
@@ -0,0 +1,73 @@
+This is the file xCJK.txt of the CJK macro package ver. 4.8.0
+(22-May-2008).
+
+xCJK.sty
+--------
+
+This file provides support for the CJK package with XeLaTeX:
+
+ . Use the CJK package to deal with CJK characters, especially for
+ spaces and punctuation, while the font selection is left to XeLaTeX.
+
+ . Specify different default fonts for CJK and other characters,
+ respectively.
+
+Usage:
+
+ \documentclass{...}
+ ...
+ \usepackage[<options>]{xCJK}
+ ...
+ \begin{document}
+ ...
+ \begin{CJK*}{UTF8}{...}
+ ...
+ \end{CJK*}
+ ...
+ \end{document}
+
+ Available values for <options> are
+
+ boldfont simulate bold fonts for CJK characters
+ italicfont simulate italic fonts for CJK characters
+
+ To make `italicfont' work you need XeTeX version 0.997 or newer.
+
+
+xCJK.sty provides three basic macros for font selection:
+
+ \setCJKmainfont[<font features>]{<font name>}
+ Set a default font for CJK characters.
+
+ \setCJKfamilyfont{<family name>}[<font features>]{<font name>}
+ Declare a CJK family and select a font for it. Switching font families
+ can be done as usual with \CJKfamily.
+
+ \setCJKmonofont[<font features>]{<font name>}
+ Declare a CJK font to be used in verbatim environments.
+
+Note that \setCJKmainfont takes precedence over \setmainfont (which is
+defined in the standard `fontspec' package for XeLaTeX).
+
+For a full description of the parameters <font features> and <font name>
+please read the documentation of the `fontspec' package; an example input
+file is examples/xCJK.tex .
+
+
+Remarks:
+
+ . To make the xCJK package work the following two commands must be called:
+
+ \XeTeXinputencoding "bytes"
+ \XeTeXdefaultencoding "bytes"
+
+ xCJK.sty automatically does this (using the \AtBeginDocument hook) but
+ other packages might override it.
+
+ . <font name> must be in English.
+
+ . If you use the `verbatim' package you should call \CJKverbatim to make
+ the verbatim environment select the CJK font as specified with
+ \setCJKmonofont automatically (\CJKverbatim redefines \verbatim@font).
+
+---End of xCJK.txt---