svg:*

svg:* — Any element from the SVG namespace.

Synopsis

svg:* ::=

  • Any element from the http://www.w3.org/2000/svg namespace.

Attributes

Attributes:

  • Zero or more:
    • Any attribute

Description

This position in a content model can be occupied by any element in the SVG namespace.

The Scalable Vector Graphics Recommendation from the W3C defines the features and syntax for SVG, a language for describing two-dimensional vector and mixed vector/raster graphics in XML.

A complete description of SVG is outside the scope of this reference.

Attributes

None.

any attribute

Any attribute, including any attribute in any namespace.

Parents

These elements contain svg:*: imagedata (db.imagedata.svg).

Examples

<article xmlns='http://docbook.org/ns/docbook'
	 version="5.0">
<title>Example svg-svg</title>

<mediaobject>
  <imageobject>
    <imagedata>
      <svg xmlns="http://www.w3.org/2000/svg"
	   width="100" height="100" version="1.1">
	<rect x="20" y="20" width="80" height="80"
	      style="fill:blue; stroke:green; stroke-width: 2;
		     fill-opacity: 0.5; stroke-opacity: 0.9"/>
      </svg>
    </imagedata>
  </imageobject>
</mediaobject>

</article>
Last revised by Norman Walsh on (git hash: c3457cab689d8fd89ba4252de204cf9a14e40acd 6a501344525f32f9834f0e4a5c3c3f8131803fa4 47fe34b28bad7941a61b9c1c17d47f6eed36cd04)