Hi I've got information about publications as a XML Input. And want to generate bibtex output, therefore I use the following pipeline:
<map:generate type="file" src="in.xml"/>
<map:transform type="xsltc" src="bibtex.xslt"/>
<map:serialize type="text"/>
I want to generate the output as shown in out.txt, but only get the
following output:
foobar
All the other is missing. Can someone give me a hint howto generate my
desired output?
thx
Mathias
bibtex.xslt
Description: XML document
@Test{foobar,
author = { foo bar },
}
<?xml version="1.0" encoding="UTF-8"?> <publication xmlns="http://test" key="pub"> <authors> <author> <first>foo</first> <last>bar</last> </author> </authors> </publication>
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
