X-Git-Url: http://www.andromeda.nl/gitweb/?a=blobdiff_plain;f=doc%2Fblock.xml;fp=doc%2Fblock.xml;h=91459b6d3cd1e5b7d46a810308c702d855a750ec;hb=30a28f0264c67f0cb8176d0fef73122bbe3a4cbd;hp=4c059871cd033551f076da090558efb3da06d8d4;hpb=7ff3bf19bf9c4395fc98d77df7256935b1238ffa;p=xmldoc.git diff --git a/doc/block.xml b/doc/block.xml index 4c05987..91459b6 100644 --- a/doc/block.xml +++ b/doc/block.xml @@ -240,6 +240,48 @@ The two attributes are used in either HTML or LaTeX.
+ + + +Scalable vector graphics can be included in the document or +from an external (SVG) file. +With a src attribute, the svg element +will load the SVG drawing from an external file: + + <svg src='filter.svg'/> + + + + +When the src attribute is omitted, all available SVG +elements can be used within the XML document: + + + <svg> + <clipPath id="a"> + <circle cy="90" cx="100" r="60"/> + </clipPath> + <circle fill="#AAAAAA" cy="90" cx="190" + r="60" style="clip-path:url(#a)"/> + <circle stroke="black" fill="none" cy="90" cx="100" r="60"/> + <circle stroke="blue" fill="none" cy="90" cx="190" r="60"/> + </svg> + + + + + + + + + + + + +
+ +
Creating tables in XMLDoc is much like creating tables in HTML.