The unparsed-entity-uri function returns an absolute URI (Uniform Resource Identifier) that gives access to declarations of unparsed entities in the Document Type Definition (DTD) of the source document.
An entity is information that can be referenced within an XML document. There are several types of entities:
<!ENTITY Guru-pix SYSTEM "guru.gif" NDATA GIF>
Here is an example of an unparsed entity as it might be declared in a DTD file.
<GURU PIX="Guru-pix">
Note that an unparsed entity cannot be referenced directly, but is referenced by name as an attribute.
<img src="{unparsed-entity-uri(@PIX)}">
It would then be cited in the unparsed-entity-uri function this way.