ISO/IEC JTC 1/SC 34N0515

ISO/IEC logo

ISO/IEC JTC 1/SC 34

Information Technology --
Document Description and Processing Languages

TITLE: ISO/IEC TR 19758/PDAM3: Extensions to Multilingual Compositions (North and South Asian Compositions)
SOURCE: Dr. Yushi Komachi; Mr. Gen Nagamura
PROJECT: TR 19758:2003 Amd. 3: Extensions to Multilingual Compositions
PROJECT EDITOR: Dr. Yushi Komachi; Mr. Gen Nagamura
STATUS: PDAM text
ACTION: PDAM ballot
DATE: 2004-04-19
DISTRIBUTION: SC34 and Liaisons
REFER TO: N0515b - 2004-04-19 - ISO/IEC TR 19758/PDAM3: Extensions to Multilingual Compositions (North and South Asian Compositions)
REPLY TO:

Dr. James David Mason
(ISO/IEC JTC 1/SC 34 Chairman)
Y-12 National Security Complex
Bldg. 9113, M.S. 8208
Oak Ridge, TN 37831-8208 U.S.A.
Telephone: +1 865 574-6973
Facsimile: +1 865 574-1896
Network: [email protected]
http://www.y12.doe.gov/sgml/sc34/
ftp://ftp.y12.doe.gov/pub/sgml/sc34/

Mr. G. Ken Holman
(ISO/IEC JTC 1/SC 34 Secretariat - Standards Council of Canada)
Crane Softwrights Ltd.
Box 266,
Kars, ON K0A-2E0 CANADA
Telephone: +1 613 489-0999
Facsimile: +1 613 489-0995
Network: [email protected]
http://www.jtc1sc34.org



ISO/IEC JTC1/SC34/WG2 N164

DSSSL library for complex compositions

PDAM3: Extensions to Multilingual Compositions (North and South Asian Compositions)


Introduction

This amendment provides additional DSSSL library specifications for multiligal compositions. The style elements supported in this amendment are based on the requirements for North and South Asian documents.


Page 9, Clause 4.10.1.1
Replace the paragraph of 4.10.1.1 with the following description:

An interline note is composed within a line space and at the side (upper/lower side in horizontal composition, or right side in vertical composition) of words or phrases to be noted. Character locations in a line and interlinenote in horizontal composition are illustrated in Figure 1.

And add the following note:

NOTE  An interline note in horizontal composition may take vertically composed text, and vice versa.


Page 14, Clause 4.17.1
Add the following notes in 4.17.1:

NOTE  Bullet items in an ordered list may take spelled-out numbers or words, not numerals.

NOTE  To indicate the level of nesting, bullet items may be duplicated or multiplicated as many times as the level of nesting, instead of having nested numbering, as shown below:

a) item1
b) item2
  aa) nested item1
  bb) nested item2
c) item3

NOTE  The nested first item may be rendered just after the superior without line-breaking, as shown below:

1) item1 a) nested item1
   b) nested item2
   c) nested item3
2) item2


Page 24
Add the following clause:

4.29 First paragraph identification

To indicate the beginning of an article, the entire first paragraph may have a distinct typeface or other relevent representation from the rest of the article.


Page 24
Add the following clause:

4.30 Paragraph separator

A special mark is located between adjacent paragraphs to emphasizing their separation. The mark of paragraph separator should be specified by its glyph identifier.


Page 39, Clause 7
Add the following specification after the specification of *fli-paragraph-style*:

(define (FIRST-ITEM-WITHOUT-LINEBREAK #!optional (snl (current-node))) (if (first-sibling? snl) (make sequence (literal (format-number (child-number snl) "&glyph;") ")") (process-children)) (make paragraph ; start-indent: (+ (inherited-start-indent) 10pt) (literal (format-number (child-number snl) "&glyph;") ")") (process-children)))) ;; 4.29 First paragraph identification (define (FIRST-PARAGRAPH-IDENTIFICATION) (make paragraph font-family-name: (if (first-sibling? (current-node)) "&FontName;" ;Arbitrary fontname toward first paragraph "&FontName;" ;Arbitrary fontname toward after second paragraph ))) ; (define (FIRST-PARAGRAPH-IDENTIFICATION) ; (if (first-sibling? (current-node)) ; (make paragraph ; ;; first paragraph characteristic ; ;; ... ; ) ; (make paragraph ; ;; other paragraphs characteristic ; ;; ... ; ))) ;; 4.30 Paragraph separator (define (PARAGRAPH-SEPARATOR) (make display-group (make leader (literal "&glyph;")) (make paragraph (process-children)) (make leader (literal "&glyph;"))))

Page 42, Clause 7
Add the following specification after the specification of LIST-ELEMENT:

;; 4.17.1 Ordered list (define (NESTED-NUMBERING element-name #!optional (snl (current-node))) (let* ((numl (hierarchical-number-recursive element-name snl)) ; number list (len (length numl)) (num (child-number snl))) (make paragraph ; start-indent: (+ (inherited-start-indent) 10pt) (literal (let loop ((i len)) (if (<= 0 i) (string-append (format-number num "&glyph;") (loop (- i 1))) "")) ") ") (process-children))))

Note: The style libraries for interline note and ordered list items with spelled-out numbers will be tricky descriptions of existing DSSSL. After the study of user requirements for those style elements, some characteritics will be added as amendments to DSSSL.