Abstract
Here is the text of the abstract
Table of Contents
paragraph with a reference to an element of the bibliography [REF1]
first item
second item
third item
fourth itel
paragraph
paragraph
url
paragraph
text
here is an svg code: no-formatted text. Be careful to the > and < characters
<?xml version="1.0" ?>
<svg baseProfile="full" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:ev="http://www.w3.org/2001/xml-events" width="160" height="160">
<title> Chat</title>
<desc>Dessin d'un chat</desc>
<!-- tete et yeux -->
<circle cx="70" cy="95" r="50" style="stroke: black; fill: none"/>
<circle cx="55" cy="80" r="5" stroke="black" fill="#339933"/>
<circle cx="85" cy="80" r="5" stroke="black" fill="#339933"/>
<!-- moustaches -->
<g id="moustaches" >
<line x1="75" y1="95" x2="135" y2="105" style="stroke: black;" />
<line x1="75" y1="95" x2="135" y2="85" style="stroke: black;" />
</g>
<use xlink:href="#moustaches" transform="scale(-1 1) translate(-140 0)" />
<!-- oreilles du chat -->
<defs>
<g id="oreilles" >
<polyline points="108 62, 90 10, 70 45" stroke="blue" fill="none" />
</g>
</defs>
<use xlink:href="#oreilles" />
<use xlink:href="#oreilles" transform="translate(140 0) scale(-1 1) " />
<!-- sourire du chat -->
<polyline id="levres" points="35 110, 45 120, 95 120,105 110" stroke="red" fill="none" />
<use xlink:href="#levres" transform="translate(0 2)" />
</svg>