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�rio</firstname>
<surname>Filipe</surname>
</author>
<affiliation>
<orgname>Universidade Nova de Lisboa</orgname>
<orgdiv>Faculdade de Ci�ncias 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
[EMAIL PROTECTED]
http://neptuno.sc.uevora.pt/~mjnf
signature.asc
Description: This is a digitally signed message part
