Hello again,

yet another problem....  :(

I have got the following table:
   
        \bTABLE
            \bTR \bTD {\ss Name }             \eTD \bTD    FAMILY NAME 
          \eTD \eTR
            \bTR \bTD {\ss Role}                \eTD \bTD    ROLE       
                    \eTD \eTR
            \bTR \bTD {\ss E-Mail}             \eTD \bTD    E-MAIL    
                    \eTD \eTR
        \eTABLE

and want the first coloumn to be always the same.
The 3 attributes of the second one (FAMILY NAME, ROLE, E-MAIL) should 
come from an XML-file.

So how do I get the attributs out of the file to the special position in 
the table?
I think this can not be difficult, but it didn´t want to work. Do I have 
to go step by step through my document, and ignore those tags I don´t 
want to get? I would like to say:

\defineXMLenvironment[user]
\defineXMLenvironment[name]
    \defineXMLignore[display]
    \defineXMLargument[family] and save this result in a variable.

Hm, I simly don´t know... do I have to group it?

The XML-file looks s.th. similar to that:
<user status="published" type="author" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    <name>
        <display>
            Reiner Ittinger
        </display>
        <family>
            Ittinger
        </family>
        <given>
            Reiner
        </given>
    </name>
    <organisation>
        <role>
            Student
        </role>
    </organisation>
    <contact>
        <emails>
            <email>
                [EMAIL PROTECTED]
            </email>
        </emails>
    </contact>
</user>

Thank you for your help and comments,
tired Claudia
_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

Reply via email to