Table-footnote

Subject: Table-footnote
From: skvenkat@xxxxxxx
Date: 29 Aug 00 08:01:38 MDT
Hi,

The folllowing was an effort towards putting-away the table footnotes
(which lies in the SGML document inside the table-cell element) after the
table-body:

  (element table-fn
         (make paragraph
               (process-children)))

  (element c
    (make sequence
         (make table-cell
           (process-node-list (node-list-difference (descendants
(current-node)) (select-elements (descendants (current-node)) "tblfn")))
)))

(element table
    (make paragraph
         (process-children)
(process-node-list (select-elements (descendants (current-node)) "tblfn"))
))

Unfortunately this didn't work and the table-footnote occured thrice!!! i.e.,
twice inside the table-cell!! and once after the table!

  That was worse than what I got(!!) by using: 

  (element c
    (make sequence
         (make table-cell
           (process-children))))

  Ignorance is bliss? or...
  Perhaps my node-list-difference is not working?

 Bye

 S.K. Venkat

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1


 DSSSList info and archive:  http://www.mulberrytech.com/dsssl/dssslist


Current Thread