Color and font size of cells within a table

Subject: Color and font size of cells within a table
From: "Jordi Mulet" <jmulet@xxxxxxxxxx>
Date: Wed, 11 Mar 1998 08:42:30 +0100
Hello everybody,
We are using the DocBook style sheets of Norman and we are interested about modify the color and the font size of several cells in a table. We are pursuing to redefine the process in an external file conveni.dsl as
 
(define ($process-cell-para-contents$ para colnum align body)
  (let ((font-name (case body
                     (("THEAD") %title-font-family%)
                     (("TFOOT") %title-font-family%)
                     (else  %body-font-family%)))
        (weight    (case body
                     (("THEAD") 'bold)
                     (("TFOOT") 'bold)
                     (else  'medium))))
 

(let ((%factor% (if %verbatim-size-factor%
                      %verbatim-size-factor%
                      1.0) ))
 
    (make paragraph
      font-family-name: font-name
      font-weight: weight
      font-size: (* (inherited-font-size) %factor%)
      quadding: align
      (process-node-list (children para) ) ) ) ) ) 
 
 
 
but use a Processing Instruction in the table or in the cell and no an fix factor.
 
 
Is there any easy path to follow ?
And What about control the color ?
 
Thanks everybody
Jordi Mulet
Editorial Praxis S.A
Current Thread
  • Color and font size of cells within a table
    • Jordi Mulet - from mail1.ability.netby web4.ability.net (8.8.5/8.6.12) with ESMTP id CAA14672Wed, 11 Mar 1998 02:53:17 -0500 (EST) <=
      • <Possible follow-ups>
      • Jordi Mulet - from mail1.ability.netby web4.ability.net (8.8.5/8.6.12) with ESMTP id EAA21080Wed, 11 Mar 1998 04:59:12 -0500 (EST)
      • Norman Walsh - from mail1.ability.netby web4.ability.net (8.8.5/8.6.12) with ESMTP id OAA28707Wed, 11 Mar 1998 14:35:53 -0500 (EST)
      • Norman Walsh - from mail1.ability.netby web4.ability.net (8.8.5/8.6.12) with ESMTP id OAA28729Wed, 11 Mar 1998 14:35:58 -0500 (EST)
      • Jordi Mulet - from mail1.ability.netby web4.ability.net (8.8.5/8.6.12) with ESMTP id MAA21179Thu, 12 Mar 1998 12:10:23 -0500 (EST)