Difference between revisions of "Ctx"

From Wiki
Jump to navigation Jump to search
 
Line 4: Line 4:
 
= Processing XML files =
 
= Processing XML files =
  
To process a file <code>xml.xml</code> with style definitions in <code>style.tex</code> you can make a <code>xml.ctx</code> file that says:
+
To process a file <code>xml.xml</code> with style definitions in <code>style.tex</code> you can make a file <code>xml.ctx</code> that says:
  
 
<xmlcode>
 
<xmlcode>
Line 21: Line 21:
 
</xmlcode>
 
</xmlcode>
  
Include a directive into the file <code>xml.xml</code>:
+
If you include a directive into the file <code>xml.xml</code>
  
 
<xmlcode>
 
<xmlcode>
Line 27: Line 27:
 
</xmlcode>  
 
</xmlcode>  
  
After doing this, you can process your xml file directly with the command
+
you can process your xml file directly with the command
 
<code>context xml.xml</code>
 
<code>context xml.xml</code>
  
 
[[Category:XML]]
 
[[Category:XML]]

Latest revision as of 18:13, 21 December 2022

See:

Processing XML files

To process a file xml.xml with style definitions in style.tex you can make a file xml.ctx that says:

<?xml version='1.0' standalone='yes'?>

<ctx:job>
   <ctx:message>whatever you like</ctx:message>
   <ctx:preprocess/>
   <ctx:process>
       <ctx:resources>
           <ctx:environment>style.tex</ctx:environment>
       </ctx:resources>
   </ctx:process>
   <ctx:postprocess/>
</ctx:job>

If you include a directive into the file xml.xml

<?context-directive job ctxfile xml.ctx ?>

you can process your xml file directly with the command context xml.xml