Typesetting CJK Languages with OMEGA

Typesetting CJK Languages with OMEGA

Typesetting CJK Languages with Ω Jin-Hwan Cho Korean TEX Users Group [email protected] Haruhiko Okumura Mie University Faculty of Education 514-8507 Japan [email protected] Abstract This paper describes how to typeset Chinese, Japanese, and Korean (CJK) lan- guages with Omega, a 16-bit extension of Donald Knuth’s TEX. In principle, Omega has no difficulty in typesetting those East Asian languages because of its internal representation using 16-bit Unicode. However, it has not been widely used in practice because of the difficulties in adapting it to CJK typesetting rules and fonts, which we will discuss in the paper. 1 Introduction localized to the Japanese language. It is designed Chinese, Japanese, and Korean (CJK) languages are for high-quality Japanese book publishing (the “p” characterized by multibyte characters covering more of pTEX stands for publishing; the name jTEX was than 60% of Unicode. The huge number of char- used by another system). pTEX can handle multi- byte characters natively (i.e., without resorting to acters prevented the original 8-bit TEX from work- ing smoothly with CJK languages. There have been subfonts), and it can typeset both horizontally and three methods for supporting CJK languages in the vertically within a document. It is upward com- patible4 with T X, so it can be used to typeset TEX world up to now. E The first method, called the subfont scheme, both Japanese and Latin languages, but it cannot splits CJK characters into sets of 256 characters or handle Chinese and Korean languages straightfor- wardly. pT X supports three widely-used Japanese fewer, the number of characters that a TEX font met- E ric file can accommodate. Its main advantage lies in encodings, JIS (ISO-2022-JP), Shift JIS, and EUC-JP, but not Unicode-based encodings such as UTF-8. using 8-bit TEX systems directly. However, one doc- ument may contain dozens of subfonts for each CJK The third route, Omega [3], is also a 16-bit ex- font, and it is quite hard to insert glue and kerns tension of TEX, having 16-bit Unicode as its internal between characters of different subfonts, even those representation. In principle, Omega is free from the from the same CJK font. Moreover, without the help limitations mentioned above, but thus far there is of a DVI driver (e.g., DVIPDFMx [2]) supporting the no thorough treatment of how it can be used for subfont scheme, it is not possible to generate PDF professional CJK typesetting and how to adapt it documents containing CJK characters that can be to popular CJK font formats such as TrueType and extracted or searched. Many packages are based on OpenType. We set out to fill in this blank. A 1 this method; for instance, CJK-LTEX by Werner 2 CJK Typesetting Characteristics Lemberg, HLATEX2 by Koaunghi Un, and the Chi- 3 Each European language has its own hyphenation nese module in ConTEXt by Hans Hagen. On the other hand, in Japan, the most widely rules, but their typesetting characteristics are over- all fairly similar. CJK languages differ from Euro- used TEX-based system is pTEX [1] (formerly known pean languages in that there are no hyphenation as ASCII Nihongo TEX), a 16-bit extension of TEX 1 Avaliable on CTAN as language/chinese/CJK/ 4 Although pTEX doesn’t actually pass the trip test, it 2 Available on CTAN as language/korean/HLaTeX/ is thought to be upward compatible with TEX in virtually all 3 Available on CTAN as macros/context/ practical situations. Preprints for the 2004 Annual Meeting 71 Jin-Hwan Cho and Haruhiko Okumura rules. All CJK languages allow line breaking almost 1. {CJK} is the set of all CJK characters; its com- anywhere, without a hyphen. This characteristic is plement is denoted by ^{CJK}. usually implemented by inserting appropriate glues 2. {XSPCODE1} (e.g., ([{‘) is the subset of ^{CJK} between CJK characters. such that \boundCJKglue is inserted only be- One fine point is the treatment of blank spaces tween {CJK} and {XSPCODE1} in this order. and end-of-line (EOL) characters. Korean uses blank spaces to separate words, but Chinese and Japanese 3. {XSPCODE2} (e.g., )]}’;,.) is the subset of rarely use blank spaces. An EOL character is con- ^{CJK} such that \boundCJKglue is inserted only between {XSPCODE2} and {CJK} in this or- verted in TEX to a blank space and then to a skip, which is unnecessary for Chinese and Japanese type- der. setting. To overcome this problem, pTEX ignores an 4. {XSPCODE3} (e.g., 0-9 A-Z a-z) is the subset EOL when it follows a CJK character. of ^{CJK} such that \boundCJKglue!"#$%&'(is inserted!" Moreover, whereas Korean uses Latin punctu- between {CJK} and {XSPCODE3}, irrespective of ation marks (periods, commas, etc.), Chinese and the order. )*+,-.#$ Japanese use their own punctuation symbols. These 5. {INHIBITXSPCODE0} (e.g., /012) is the sub- CJK punctuation symbols need to be treated some- set of {CJK} not allowing \boundCJKglue be- what differently from ordinary characters. The ap- tween {INHIBITXSPCODE0} and ^{CJK}, irre- propriate rules are described in this paper. spective of the order. 3 CJK Omega Translation Process 6. {INHIBITXSPCODE1} (e.g., !"#$%&'(,!" CJK right parentheses and periods) is the sub- We introduce here the CJK Omega Translation Pro- )*+,-.#$ set of {CJK} not allowing \boundCJKglue be- cess (CJK-ΩTP)5 developed by the authors to imple- tween ^{CJK} and {INHIBITXSPCODE1}/012 in this ment the CJK typesetting characteristics mentioned order. !"#$%&'(!" above. An Omega Translation Process (ΩTP) is a pow- 7. {INHIBITXSPCODE2} (e.g., )*+,-.#$ , erful preprocessor, which allows text to be passed CJK left parentheses) is the subset of /012 through any number of finite state automata, which {CJK} not allowing \boundCJKglue in between can achieve many different effects. Usually it is quite {INHIBITXSPCODE2} and ^{CJK} in this order. hard or impossible to do the same work with other The second task of boundCJK.otp is to en- TEX-based systems. close each CJK block in a group ‘{\selectCJKfont For each CJK language, the CJK-ΩTP is di- ... }’, and convert all blank spaces inside the block vided into two parts. The first ΩTP (boundCJK. to the command \CJKspace. otp) is common to all CJK languages, and controls The command \selectCJKfont switches to the the boundaries of blocks consisting of CJK char- appropriate CJK font, and \CJKspace is defined to acters and blank spaces. The second ΩTP (one be either a \space (for Korean) or \relax (for Chi- of interCHN.otp, interJPN.otp, and interKOR.otp) is nese and Japanese) according to the selected lan- specific to each language, and controls typesetting guage. rules for consecutive CJK characters. Note that if the input stream starts with blank spaces followed by a CJK block or ends with a CJK 4 Common Typesetting Characteristics block followed by blank spaces, then these spaces The first task of boundCJK.otp is to split the input must be preserved regardless of the language, be- stream into CJK blocks and non-CJK blocks, and cause of math mode: insert glue (\boundCJKglue) in between to allow line {{CJK} {SPACE} $...$ {SPACE} CJK}} breaking. However, combinations involving some Latin and restricted horizontal mode: and CJK symbols (quotation marks, commas, pe- \hbox{{SPACE} {CJK} {SPACE}} riods, etc.), do not allow line breaking. In this case, \boundCJKglue is not inserted so that the original 5 Language-dependent Characteristics line breaking rule is applied. This corresponds to The line breaking mechanism is common to all of the pTEX’s primitives \xspcode and \inhibitxspcode. language-dependent ΩTPs (interCHN.otp, interJPN. boundCJK.otp defines seven character sets; the otp, and interKOR.otp). The glue \interCJKglue role of each set is as follows. is inserted between consecutive CJK characters, and its role is similar to the glue \boundCJKglue at the 5 Available at http://project.ktug.or.kr/omega-cjk/ boundary of a CJK block. 72 Preprints for the 2004 Annual Meeting Typesetting CJK Languages with Ω Some combinations of CJK characters do not We can use the virtual font mechanism to map the allow line breaking. This is implemented by sim- logical shape and the actual implementation. ply inserting a \penalty 10000 before the rele- interJPN.otp divides Japanese characters into vant \interCJKglue. In the case of boundCJK.otp, six classes: however, no \boundCJKglue is inserted where line 1. Left parentheses:‘“(〔[{〈《「『【 breaking is inhibited. Half width, may be designed on square canvases The CJK characters not allowing line breaking flush right. In that case we ignore the left half are defined by the following two classes in interKOR. and pretend they are half-width, e.g., \hbox to otp for Korean typesetting. 0.5zw{\hss}. If a class-1 character is followed 1. {CJK_FORBIDDEN_AFTER} does not allow line by a class-3 character, then an \hskip 0.25zw breaking between {CJK_FORBIDDEN_AFTER} minus 0.25zw is inserted in between. and {CJK} in this order. 2. Right parentheses: 、,’”)〕]}〉》」』】 2. {CJK_FORBIDDEN_BEFORE} does not al- Half width, may be designed flush left on square low line breaking in between {CJK} and canvases. If a class-2 character is followed by {CJK_FORBIDDEN_BEFORE} in this order. a class-0, -1, or -5 character, then an \hskip 0.5zw minus 0.5zw is inserted in between. If a On the other hand, interJPN.otp defines six classes class-2 character is followed by a class-3 char- for Japanese typesetting, as discussed in the next acter, then a \hskip 0.25zw minus 0.25zw is section. inserted in between. 6 Japanese Typesetting Characteristics 3. Centered points: ・:; Half width, may be designed centered on square Most Japanese characters are designed on a square canvases.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    6 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us