Difference between revisions of "Image Database"

From Wiki
Jump to navigation Jump to search
(added links and name "Resource Library")
m (category added (Graphics, XML))
Line 45: Line 45:
  
 
(is there a dtd or a relax ng schema somewhere out there? --[[User:Patrick Gundlach|pg]])
 
(is there a dtd or a relax ng schema somewhere out there? --[[User:Patrick Gundlach|pg]])
 +
 +
[[Category:Graphics]]
 +
[[Category:XML]]

Revision as of 17:53, 11 August 2005

< Graphics | XML >

ConTeXt's direct XML processing allows a rather mighty management of pictures with an XML database. You can not only store images in this way, officially this technique is now named "Resource Libraries".

Here you can make such files online. (PDF interface!)

XML database file

<figurelibrary language="en">
<description>
	<organization>Pragma ADE</organization>
	<project>ConTeXt Wiki</project>
	<product>prd_pictures</product>
	<comment>pictures for ConTeXt Wiki</comment>
</description>
<figure>
	<file>filename</file>
	<label>reference</label>
	<copyright>owner</copyright>
	<comment>comment</comment>
</figure>
<figure>
...
</figure>
...
</figurelibrary>

Making a PDF list

texexec --pdf --use=fig-make --mode=compact myfile

Use pictures from database

\usemodule	[fig-base]
\usefigurebase	[myfile]

\externalfigure	[reference] % like in <label>

(is there a dtd or a relax ng schema somewhere out there? --pg)