← Prev in month ← Prev in thread

DOCBOOK-APPS: Customizing a book title page

From
=?JRN-8859-1?P?[=F1rio?= Gilipe
Date
2002-09-24T10:12:39+00:00
ID
1032862278.1143.33.camel@nameless
Thread
DOCBOOK-APPS: Customizing a book title page
Hi

I've asked this before but I never got any anwser so here I am trying
again.

I need to have a title page for my thesis (written as a book) with a
bunch of stuff (name of the University, Faculty, Department, etc).

Once someone told me that I had to customize the
book-titlepage-recto-elements list, wich I have. It now looks like this:

(define (book-titlepage-recto-elements)
  (list (normalize "title") 
        (normalize "subtitle") 
	(normalize "graphic") 
	  (normalize "mediaobject")
	(normalize "corpauthor")
        (normalize "authorgroup") 
        (normalize "author") 
	  (normalize "editor")  
        (normalize "orgname")  
        (normalize "orgdiv")))

The same person also told me that i needed to garantee that there a
processing instruction for every tag that i mentioned in the previous
list and I believe that there is, ex:

   ((equal? (gi (node-list-first nl)) (normalize "orgdiv"))
                 (book-titlepage-div (node-list-first nl) side))

and...

(...)
(define (book-titlepage-orgname node side)
  (book-titlepage-element node side))
(define (book-titlepage-orgdiv node side) 
  (book-titlepage-element node side))

My xml source has:

<book status="draft" lang="pt">
  <title>Um sistema "peer-to-peer" para monitoriza誽o de redes</title>
  <bookinfo>
    <author>
      <firstname>M嫫io</firstname>
      <surname>Filipe</surname>
    </author>
    <affiliation>
      <orgname>Universidade Nova de Lisboa</orgname>
      <orgdiv>Faculdade de Ci瘽cias Tecnologia</orgdiv>
    </affiliation>
  </bookinfo>

When I transform this to pdf (both with Jade and OpenJade) all I get is
the Title and my name. Does anyone have a clue on what I may be missing?

THanks
-- 
        Mario Filipe 
        
        http://neptuno.sc.uevora.pt/~mjnf
← Prev in month ← Prev in thread