I have a software which creates XML-Files with a structure looking like this:
<model>
<dims>
<dim type="attr" name="foo">
<def>Insert Definition of the Dimension 'foo'</def>
<hiers>
<hier name="foo">
<def>Insert Definition of the Hierarchy 'foo'</def>
<lvlrol lname="bar"/>
</hier>
</hiers>
<lvls>
<lvl tag="bar" name="bar">
<def>Insert Definition of the Level 'bar'</def>
</lvl>
</lvls>
</dim>
<dim type="attr" name="baz">
<def>Definition of baz</def>
[...]
</dim>
</dims>
</model>
Now I want to import the definitions (<def>) from every <dim> and every <hier> in Lyx, or at least in Latex.
The Lyx-Document should have a (sub-)chapter for every <dim> in which all corresponding <hier>s are explained. These chapters shall solely be created from the definitions of the XML-File.
How do I do that? I know how to put a whole XML-File into Latex ( Including XML file into LaTeX ) but I just want to import all definitions in a row.
Now, how do I do the same in Latex/LyX? There is no browser to process XSL in between.
– BackfromHell Jun 24 '13 at 21:43