svg:*

svg:* — Any element from the SVG namespace.

Synopsis

  • 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

any attribute

Any attribute including in any attribute in any namespace.

Parents

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

Examples

  1 <article xmlns='http://docbook.org/ns/docbook'
  2 	 version="5.0">
    <title>Example svg-svg</title>
  4 
    <mediaobject>
  6   <imageobject>
        <imagedata>
  8       <svg xmlns="http://www.w3.org/2000/svg"
    	   width="100" height="100" version="1.1">
 10 	<rect x="20" y="20" width="80" height="80"
    	      style="fill:blue; stroke:green; stroke-width: 2;
 12 		     fill-opacity: 0.5; stroke-opacity: 0.9"/>
          </svg>
 14     </imagedata>
      </imageobject>
 16 </mediaobject>
    
 18 </article>
Last revised by Norman Walsh on 6 Jun 2011 (git hash: 6ffcc7640bbc5f852a318e452c9f210f03292cb9)