<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jingshaochen</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jingshaochen"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Jingshaochen"/>
	<updated>2026-04-21T06:24:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tips_For_Python_Script_Extensions&amp;diff=84296</id>
		<title>Tips For Python Script Extensions</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tips_For_Python_Script_Extensions&amp;diff=84296"/>
		<updated>2012-05-17T01:41:10Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Extensions on Mac OSX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Adding Translation Capability==&lt;br /&gt;
&lt;br /&gt;
One can add the ability to have Python text mesages included for translation. To provide an error message, rather than using the Python &amp;lt;tt&amp;gt;sys.stderr&amp;lt;/tt&amp;gt;, use the provided &amp;lt;tt&amp;gt;errormsg()&amp;lt;/tt&amp;gt; function from inkex.py in conjuction with &amp;lt;tt&amp;gt;gettext&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
You must include the following at the beginning of your Python script:&lt;br /&gt;
 import inkex&lt;br /&gt;
 import gettext&lt;br /&gt;
 _ = gettext.gettext&lt;br /&gt;
&lt;br /&gt;
Where you wish to have an error message, write the following:&lt;br /&gt;
 inkex.errormsg(_(&amp;quot;This will be written to Python stderr&amp;quot;))&lt;br /&gt;
&lt;br /&gt;
Of course, you may also change &amp;quot;_&amp;quot; to something else if you wish.&lt;br /&gt;
&lt;br /&gt;
==Extensions on Mac OSX==&lt;br /&gt;
&lt;br /&gt;
On OSX when running extension, it errors out with this error message:&lt;br /&gt;
&lt;br /&gt;
''The fantastic lxml wrapper for libxml2 is required by inkex.py ...''&lt;br /&gt;
&lt;br /&gt;
to fix that, do the following:&lt;br /&gt;
&lt;br /&gt;
      sudo easy_install lxml&lt;br /&gt;
      cd /Applications/Inkscape.app/Contents/Resources/lib&lt;br /&gt;
      mv libxml2.2.dylib libxml2.2.dylib.old&lt;br /&gt;
      ln -s /usr/lib/libxml2.dylib&lt;br /&gt;
&lt;br /&gt;
source: http://caih.org/open-source-software/fixing-inkscape-in-mac-os-x/&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tips_For_Python_Script_Extensions&amp;diff=84290</id>
		<title>Tips For Python Script Extensions</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tips_For_Python_Script_Extensions&amp;diff=84290"/>
		<updated>2012-05-17T01:26:52Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Adding Translation Capability */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Adding Translation Capability==&lt;br /&gt;
&lt;br /&gt;
One can add the ability to have Python text mesages included for translation. To provide an error message, rather than using the Python &amp;lt;tt&amp;gt;sys.stderr&amp;lt;/tt&amp;gt;, use the provided &amp;lt;tt&amp;gt;errormsg()&amp;lt;/tt&amp;gt; function from inkex.py in conjuction with &amp;lt;tt&amp;gt;gettext&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
You must include the following at the beginning of your Python script:&lt;br /&gt;
 import inkex&lt;br /&gt;
 import gettext&lt;br /&gt;
 _ = gettext.gettext&lt;br /&gt;
&lt;br /&gt;
Where you wish to have an error message, write the following:&lt;br /&gt;
 inkex.errormsg(_(&amp;quot;This will be written to Python stderr&amp;quot;))&lt;br /&gt;
&lt;br /&gt;
Of course, you may also change &amp;quot;_&amp;quot; to something else if you wish.&lt;br /&gt;
&lt;br /&gt;
==Extensions on Mac OSX==&lt;br /&gt;
&lt;br /&gt;
      sudo easy_install lxml&lt;br /&gt;
      cd /Applications/Inkscape.app/Contents/Resources/lib&lt;br /&gt;
      mv libxml2.2.dylib libxml2.2.dylib.old&lt;br /&gt;
      ln -s /usr/lib/libxml2.dylib&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=70315</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=70315"/>
		<updated>2011-05-20T19:06:31Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great concise quick guide for getting started with Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in Inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that describes the Inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a beveled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using Inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in Inkscape. great for Inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://itestu.com/inkscape/index.php?select=kid Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://itestu.com/inkscape/index.php?select=spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in Inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://itestu.com/inkscape/index.php?select=box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D boxes. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:tc_bar.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://itestu.com/inkscape/index.php?select=bar How far can a bar go?] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tile clone tutorial that shows how to make use of &lt;br /&gt;
Rotation, Shift, and Color.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Coloring_B%26W_images.png|100px]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://fiestoforo.blogspot.com/2007/11/tutorial-with-inkscape.html Color B&amp;amp;W images]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to color a black and white image using Inkscape trace Bitmap feature.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Chrome.png|200px]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name:&lt;br /&gt;
&amp;lt;/strong&amp;gt;[http://troy-sobotka.blogspot.com/2007/11/inkscape-tutorial-1-chrome-effect.html Dynamic Chrome Effect]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A twelve step tutorial on creating a dynamic chrome effect with explanations.&lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://70.24.158.31:8080/inktut.php Making Icons]&amp;lt;/strike&amp;gt; currently down (2008-06-22) (en)&lt;br /&gt;
* &amp;lt;strike&amp;gt;http://programmer-art.org/inkscape&amp;lt;/strike&amp;gt; currently down (2008-06-22); video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&amp;lt;/strike&amp;gt; currently down (2008-06-22) &lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial]&amp;lt;/strike&amp;gt; currently down (2008-06-22) (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://itestu.com/inkscape/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
* [http://www.twoheadedpuppy.com/news/?p=400 How to create a gherkin in Inkscape] by Two Headed Puppy&lt;br /&gt;
* [[Drawing a Floor Plan]]&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/file:Tutorial-cartography_(basic).svg Tutorial-cartography_(basic).svg] - learn basis of cartography with inskape. Download the file, and open in Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=7 Draw Mac-like Clock in Inkscape] — how to draw Mac like clock in Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=8 Acrylic Photo in Inkscape] — how to create an acrylic looking picture from a photo using GIMP and Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=12 Drawing Volumetric Objects in Inkscape] — how to draw 3D objects with all the right reflections and shadows&lt;br /&gt;
* [http://verysimpledesigns.com/vectors/inkscape-tutorial-spiro-swirls.html Spiro Swirls] - Create flourishes and swirls in Inkscape using the new Spiro option - by Syllie of verysimpledesigns.com&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Farbverläufe (Video)] primfaktor.de, (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Sterne und Polygone (Video)] primfaktor.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fi ===&lt;br /&gt;
&lt;br /&gt;
* [http://fi.flossmanuals.net/Inkscape/Introduction FLOSS Manualsin suomenkielinen Inkscape-käyttöopas.] (fi)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon (fr)&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels en français du site inkscape-fr] (fr).&lt;br /&gt;
*[http://ticeblog.ycombe.net/index.php/2007/07/17/98-calligrammes-avec-inkscapev Caligrammes avec Inkscape] (fr)&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
*[http://www.inkscapeitalia.org/tutorial/visualizza.php?id=9 Effetto silhouette] (it)&lt;br /&gt;
*[http://www.inkscapeitalia.org/tutorial/visualizza.php?id=7 Bottoni in stile web 2.0] (it)&lt;br /&gt;
*[http://blog.sviluppoweb.eu/2007/09/26/13/ Guida al web design - Tutorial Inkscape] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
*[http://pl.wikibooks.org/wiki/Inkscape_w_praktyce Inkscape in Practice / Inkscape w praktyce] on GNU FDL licence / na licencji GNU FDL (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.colivre.coop.br/CursoInkscape Material do Curso de Inkscape da Colivre] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
*[http://www.allanbrito.com/2007/08/06/tutorial-inkscape-interface/ Introdução a interface do Inkscape] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
=== Screen casts ===&lt;br /&gt;
* [http://www.hardon.co.il/alma/ Drawing a simple woman face] (video)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Farbverläufe (Video)] (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Sterne und Polygone (Video)] (de)&lt;br /&gt;
* [http://screencasters.heathenx.org/ A collection of Inkscape video tutorials from screencasters.heathenx.org] (en)&lt;br /&gt;
&lt;br /&gt;
=== Japanese 日本語 ===&lt;br /&gt;
*[http://o-server.main.jp/inkscape/ Inkscapeの使い方](How To Use Inkscape) (japanese)&lt;br /&gt;
&lt;br /&gt;
=== Serbian ===&lt;br /&gt;
&lt;br /&gt;
*[http://my.opera.com/Lazich/blog Lazich's Opera] (Srb)&lt;br /&gt;
&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-cestitka  Greeting Card] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-brojevi  Nambers] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-ljubicasti-medved  How to draw a purple bear] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2010/03/10/inkscape-pattern  How to make a pattern] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-vizitkarta  Visit-card and Prepress] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-color-management-system  Inkscape Color Managment System] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/12/14/inkscape-putanje-i-tekst  How to create a stamp or emblem - Text on path] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/12/07/inkscape-wallpaper  How to Make a Wallpaper] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/11/30/inkscape-touch-selection-u-ovom-tutorijalu-cu-vam-pokazati-kako-da-koristite  Drawing with Touch Selection] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/11/28/inkscape-pseudo-grb  How to draw a dummy coat of arms] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-ruzicasti-mis  How to draw a pink mouse] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-plava-ptica How to draw a blue bird] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-zeleni-pas How to draw a green dog] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-nalepnice/ Stickers] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/10/17/inkscape-glossy-icons Glossy icons] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/10/17/inkscape-glossy-icons Text stylization - frame line] (Srb)&lt;br /&gt;
&lt;br /&gt;
=== Turkish Türkçe ===&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/yin-yang-simgesi-yapmak.html Yin yang simgesi yapmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/inkscape-metin-kutusu-olusturmak.html Internet sayfaları için farklı metin kutuları oluşturmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/inkscape-baslangc-ve-dugumler.html Başlangıç ve düğümler ile ilgili bir eğitici] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/golgelendirilmis-sekiller-olusturmak.html Gölgelendirilmiş şekiller oluşturmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/metinleri-bir-cerceveye-koymak.html Metinleri çerçeveye koymak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-yenmis-yaprak-yapm.html Inkscape'te maskeleme nasıl yapılır?] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-metinler.html Metinleri güzelleştirmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-alman-bayrag-yapm.html Almanya Bayrağı çizmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-dama-tahta-deseni.html Dama tahtası çizmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscapete-aradegerleme-efekti.html Aradeğerleme efektini kullanmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/03/nokta-ve-virgul-ksayol-tuslar.html Nokta ve virgül kısayol tuşları] by martinamca&lt;br /&gt;
&lt;br /&gt;
== Outside Tutorials and Tips ==&lt;br /&gt;
* &amp;lt;strike&amp;gt; [http://collou.f2o.org/inkspot/ Spotcolors!] &amp;lt;/strike&amp;gt; Tutorial to create spotcolor separations using Inkscape&lt;br /&gt;
* [http://popolon.org/gblog2/made-business-cards-easily-with-inkscape Make business cards easily with Inkscape] short tutorial and 85×54mm SVGz templates provided [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/didacticiel-inkscape/ more Inkscape tutorials] are available&lt;br /&gt;
* [http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php A Guide to Inkscape] by Tavmjong Bah&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php Stopped Clock Blog] Has some good Flash tutorials &amp;amp; other Inkscape writings&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icons in Inkscape - mini-tut] by Daj&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Tutorial: A Simple Approach to Drawing Complex Characters With Inkscape]&lt;br /&gt;
* [http://www.angelfire.com/mi/kevincharles/inkscape/index.html Unofficial Inkscape Documentation] a great work-in-progress by Kevin Charles&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Some Inkscape Know-How], a beginner's guide to creating complex shapes and flowing text into them&lt;br /&gt;
* [http://blog.vybiral.info/my_files/helps/tutorial.png Text following a circle's curve]&lt;br /&gt;
* [http://www.out-of-order.ca/tutorial/inkscape-tutorial Making Icons With Inkscape] A beginner's guide to creating nice icons in Inkscape by Ben Powers.&lt;br /&gt;
* [http://www.coswellproductions.org/digital_minicomic_scanning_pasteup.php Using Free Software to Do Inexpensive Digital Paste-Up] A guide to using The GIMP and Inkscape to paste up pages for minicomics.&lt;br /&gt;
* [http://www.coswellproductions.org/wordpress/2007/08/05/practical-inkscape-for-comic-artists-the-right-handed-illustration-keyboard-layout/ The Right-Handed Illustration Keyboard Layout] A guide aimed at tablet users that want to have a keyboard layout that is better tuned to illustration work.&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at my [http://mailhide.recaptcha.net/d?k=01lDmmgiuH5e1ZA4OjajJ1gA==&amp;amp;c=1BpCYFPqRLyYZxQDyQvfv7oe5mIfomlfsEc_iaE-qPY= reCAPTCHA&amp;amp;trade; Mailhide email address] to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at my [http://mailhide.recaptcha.net/d?k=01s2l5O5HC2E7e44t8Hyld6w==&amp;amp;c=pmibPRuFUYLOux5WlLGKYRFjPdJ56uipTF9QUY3wwjE= reCAPTCHA Mailhide email address] (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=70309</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=70309"/>
		<updated>2011-05-20T19:02:36Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */ correct &amp;quot;inkscape in six steps' link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great concise quick guide for getting started with Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in Inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that describes the Inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a beveled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using Inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in Inkscape. great for Inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=kid Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in Inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D boxes. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:tc_bar.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=bar How far can a bar go?] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tile clone tutorial that shows how to make use of &lt;br /&gt;
Rotation, Shift, and Color.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Coloring_B%26W_images.png|100px]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://fiestoforo.blogspot.com/2007/11/tutorial-with-inkscape.html Color B&amp;amp;W images]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to color a black and white image using Inkscape trace Bitmap feature.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Chrome.png|200px]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name:&lt;br /&gt;
&amp;lt;/strong&amp;gt;[http://troy-sobotka.blogspot.com/2007/11/inkscape-tutorial-1-chrome-effect.html Dynamic Chrome Effect]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A twelve step tutorial on creating a dynamic chrome effect with explanations.&lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://70.24.158.31:8080/inktut.php Making Icons]&amp;lt;/strike&amp;gt; currently down (2008-06-22) (en)&lt;br /&gt;
* &amp;lt;strike&amp;gt;http://programmer-art.org/inkscape&amp;lt;/strike&amp;gt; currently down (2008-06-22); video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&amp;lt;/strike&amp;gt; currently down (2008-06-22) &lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* &amp;lt;strike&amp;gt;[http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial]&amp;lt;/strike&amp;gt; currently down (2008-06-22) (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://itestu.com/inkscape/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
* [http://www.twoheadedpuppy.com/news/?p=400 How to create a gherkin in Inkscape] by Two Headed Puppy&lt;br /&gt;
* [[Drawing a Floor Plan]]&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/file:Tutorial-cartography_(basic).svg Tutorial-cartography_(basic).svg] - learn basis of cartography with inskape. Download the file, and open in Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=7 Draw Mac-like Clock in Inkscape] — how to draw Mac like clock in Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=8 Acrylic Photo in Inkscape] — how to create an acrylic looking picture from a photo using GIMP and Inkscape.&lt;br /&gt;
* [http://libregraphicsworld.org/articles.php?article_id=12 Drawing Volumetric Objects in Inkscape] — how to draw 3D objects with all the right reflections and shadows&lt;br /&gt;
* [http://verysimpledesigns.com/vectors/inkscape-tutorial-spiro-swirls.html Spiro Swirls] - Create flourishes and swirls in Inkscape using the new Spiro option - by Syllie of verysimpledesigns.com&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Farbverläufe (Video)] primfaktor.de, (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Sterne und Polygone (Video)] primfaktor.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fi ===&lt;br /&gt;
&lt;br /&gt;
* [http://fi.flossmanuals.net/Inkscape/Introduction FLOSS Manualsin suomenkielinen Inkscape-käyttöopas.] (fi)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon (fr)&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels en français du site inkscape-fr] (fr).&lt;br /&gt;
*[http://ticeblog.ycombe.net/index.php/2007/07/17/98-calligrammes-avec-inkscapev Caligrammes avec Inkscape] (fr)&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
*[http://www.inkscapeitalia.org/tutorial/visualizza.php?id=9 Effetto silhouette] (it)&lt;br /&gt;
*[http://www.inkscapeitalia.org/tutorial/visualizza.php?id=7 Bottoni in stile web 2.0] (it)&lt;br /&gt;
*[http://blog.sviluppoweb.eu/2007/09/26/13/ Guida al web design - Tutorial Inkscape] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
*[http://pl.wikibooks.org/wiki/Inkscape_w_praktyce Inkscape in Practice / Inkscape w praktyce] on GNU FDL licence / na licencji GNU FDL (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.colivre.coop.br/CursoInkscape Material do Curso de Inkscape da Colivre] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
*[http://www.allanbrito.com/2007/08/06/tutorial-inkscape-interface/ Introdução a interface do Inkscape] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
=== Screen casts ===&lt;br /&gt;
* [http://www.hardon.co.il/alma/ Drawing a simple woman face] (video)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Farbverläufe (Video)] (de)&lt;br /&gt;
* [http://www.primfaktor.de/index.php?section=tutorials Sterne und Polygone (Video)] (de)&lt;br /&gt;
* [http://screencasters.heathenx.org/ A collection of Inkscape video tutorials from screencasters.heathenx.org] (en)&lt;br /&gt;
&lt;br /&gt;
=== Japanese 日本語 ===&lt;br /&gt;
*[http://o-server.main.jp/inkscape/ Inkscapeの使い方](How To Use Inkscape) (japanese)&lt;br /&gt;
&lt;br /&gt;
=== Serbian ===&lt;br /&gt;
&lt;br /&gt;
*[http://my.opera.com/Lazich/blog Lazich's Opera] (Srb)&lt;br /&gt;
&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-cestitka  Greeting Card] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-brojevi  Nambers] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-ljubicasti-medved  How to draw a purple bear] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2010/03/10/inkscape-pattern  How to make a pattern] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-vizitkarta  Visit-card and Prepress] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-color-management-system  Inkscape Color Managment System] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/12/14/inkscape-putanje-i-tekst  How to create a stamp or emblem - Text on path] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/12/07/inkscape-wallpaper  How to Make a Wallpaper] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/11/30/inkscape-touch-selection-u-ovom-tutorijalu-cu-vam-pokazati-kako-da-koristite  Drawing with Touch Selection] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/11/28/inkscape-pseudo-grb  How to draw a dummy coat of arms] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-ruzicasti-mis  How to draw a pink mouse] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-plava-ptica How to draw a blue bird] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-crtanje-zeleni-pas How to draw a green dog] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/inkscape-nalepnice/ Stickers] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/10/17/inkscape-glossy-icons Glossy icons] (Srb)&lt;br /&gt;
*[http://my.opera.com/Lazich/blog/2009/10/17/inkscape-glossy-icons Text stylization - frame line] (Srb)&lt;br /&gt;
&lt;br /&gt;
=== Turkish Türkçe ===&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/yin-yang-simgesi-yapmak.html Yin yang simgesi yapmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/inkscape-metin-kutusu-olusturmak.html Internet sayfaları için farklı metin kutuları oluşturmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/inkscape-baslangc-ve-dugumler.html Başlangıç ve düğümler ile ilgili bir eğitici] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/02/golgelendirilmis-sekiller-olusturmak.html Gölgelendirilmiş şekiller oluşturmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/metinleri-bir-cerceveye-koymak.html Metinleri çerçeveye koymak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-yenmis-yaprak-yapm.html Inkscape'te maskeleme nasıl yapılır?] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-metinler.html Metinleri güzelleştirmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-alman-bayrag-yapm.html Almanya Bayrağı çizmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscape-ile-dama-tahta-deseni.html Dama tahtası çizmek] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2009/06/inkscapete-aradegerleme-efekti.html Aradeğerleme efektini kullanmak] by martinamca&lt;br /&gt;
*[http://martinamca.blogspot.com/2010/03/nokta-ve-virgul-ksayol-tuslar.html Nokta ve virgül kısayol tuşları] by martinamca&lt;br /&gt;
&lt;br /&gt;
== Outside Tutorials and Tips ==&lt;br /&gt;
* &amp;lt;strike&amp;gt; [http://collou.f2o.org/inkspot/ Spotcolors!] &amp;lt;/strike&amp;gt; Tutorial to create spotcolor separations using Inkscape&lt;br /&gt;
* [http://popolon.org/gblog2/made-business-cards-easily-with-inkscape Make business cards easily with Inkscape] short tutorial and 85×54mm SVGz templates provided [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/didacticiel-inkscape/ more Inkscape tutorials] are available&lt;br /&gt;
* [http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php A Guide to Inkscape] by Tavmjong Bah&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php Stopped Clock Blog] Has some good Flash tutorials &amp;amp; other Inkscape writings&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icons in Inkscape - mini-tut] by Daj&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Tutorial: A Simple Approach to Drawing Complex Characters With Inkscape]&lt;br /&gt;
* [http://www.angelfire.com/mi/kevincharles/inkscape/index.html Unofficial Inkscape Documentation] a great work-in-progress by Kevin Charles&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Some Inkscape Know-How], a beginner's guide to creating complex shapes and flowing text into them&lt;br /&gt;
* [http://blog.vybiral.info/my_files/helps/tutorial.png Text following a circle's curve]&lt;br /&gt;
* [http://www.out-of-order.ca/tutorial/inkscape-tutorial Making Icons With Inkscape] A beginner's guide to creating nice icons in Inkscape by Ben Powers.&lt;br /&gt;
* [http://www.coswellproductions.org/digital_minicomic_scanning_pasteup.php Using Free Software to Do Inexpensive Digital Paste-Up] A guide to using The GIMP and Inkscape to paste up pages for minicomics.&lt;br /&gt;
* [http://www.coswellproductions.org/wordpress/2007/08/05/practical-inkscape-for-comic-artists-the-right-handed-illustration-keyboard-layout/ The Right-Handed Illustration Keyboard Layout] A guide aimed at tablet users that want to have a keyboard layout that is better tuned to illustration work.&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at my [http://mailhide.recaptcha.net/d?k=01lDmmgiuH5e1ZA4OjajJ1gA==&amp;amp;c=1BpCYFPqRLyYZxQDyQvfv7oe5mIfomlfsEc_iaE-qPY= reCAPTCHA&amp;amp;trade; Mailhide email address] to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at my [http://mailhide.recaptcha.net/d?k=01s2l5O5HC2E7e44t8Hyld6w==&amp;amp;c=pmibPRuFUYLOux5WlLGKYRFjPdJ56uipTF9QUY3wwjE= reCAPTCHA Mailhide email address] (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15950</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15950"/>
		<updated>2007-08-02T18:06:59Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=kid Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D boxes. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:tc_bar.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/index.php?select=bar How far can a bar go?] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tile clone tutorial that shows how to make use of &lt;br /&gt;
Rotation, Shift, and Color. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Outside Tutorials and Tips ==&lt;br /&gt;
* [http://collou.f2o.org/inkspot/ Spotcolors!] Tutorial to create spotcolor separations using Inkscape&lt;br /&gt;
* [http://popolon.org/gblog2/made-business-cards-easily-with-inkscape Make business cards easily with Inkscape] short tutorial and 85×54mm SVGz templates provided [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/didacticiel-inkscape/ more Inkscape tutorials] are available&lt;br /&gt;
* [http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php A Guide to Inkscape] by Tavmjong Bah&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php Stopped Clock Blog] Has some good Flash tutorials &amp;amp; other Inkscape writings&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icons in Inkscape - mini-tut] by Daj&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Tutorial: A Simple Approach to Drawing Complex Characters With Inkscape]&lt;br /&gt;
* [http://www.angelfire.com/mi/kevincharles/inkscape/index.html Unofficial Inkscape Documentation] a great work-in-progress by Kevin Charles&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Some Inkscape Know-How], a beginner's guide to creating complex shapes and flowing text into them&lt;br /&gt;
* [http://blog.vybiral.info/my_files/helps/tutorial.png Text following a circle's curve]&lt;br /&gt;
* [http://www.out-of-order.ca/tutorial/inkscape-tutorial Making Icons With Inkscape] A beginner's guide to creating nice icons in Inkscape by Ben Powers.&lt;br /&gt;
* [http://www.coswellproductions.org/digital_minicomic_scanning_pasteup.php Using Free Software to Do Inexpensive Digital Paste-Up] A guide to using The GIMP and Inkscape to paste up pages for minicomics.&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15787</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15787"/>
		<updated>2007-07-17T00:15:36Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D boxes. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:tc_bar.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#bar How far can a bar go?] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tile clone tutorial that shows how to make use of &lt;br /&gt;
Rotation, Shift, and Color. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Tc_bar.png&amp;diff=15785</id>
		<title>File:Tc bar.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Tc_bar.png&amp;diff=15785"/>
		<updated>2007-07-17T00:08:33Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15483</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15483"/>
		<updated>2007-07-03T22:15:28Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D boxes. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15479</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15479"/>
		<updated>2007-07-03T22:13:48Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15477</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15477"/>
		<updated>2007-07-03T22:10:49Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15475</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15475"/>
		<updated>2007-07-03T22:09:51Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;&lt;br /&gt;
|[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15473</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15473"/>
		<updated>2007-07-03T22:05:37Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* Unofficial tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
=== English ===&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15471</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15471"/>
		<updated>2007-07-03T22:04:06Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* en */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== en ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15469</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15469"/>
		<updated>2007-07-03T22:02:43Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* en */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== en ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Box.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Box.png&amp;diff=15467</id>
		<title>File:Box.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Box.png&amp;diff=15467"/>
		<updated>2007-07-03T22:01:22Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: 3d box&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;3d box&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15465</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=15465"/>
		<updated>2007-07-03T21:57:27Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* en */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tutorial targets for future releases==&lt;br /&gt;
[http://wiki.inkscape.org/wiki/index.php/TutorialUpdates-0.46 0.46 dev cycle]&lt;br /&gt;
&lt;br /&gt;
== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== en ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Quickguide.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/deviation/53832833/ Quick Guide to Inkscape]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; This is a great consise quick guide for getting started with inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
|width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:3dbox.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#box 3D Box] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; How to make perspective 3D box. &lt;br /&gt;
|-}&lt;br /&gt;
&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
* [http://choupil.blogspot.com/ Inkscape isometrics and tutorials] by Choupil&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://shirts.gleichjetzt.de/Vektorisieren_mit_Inkscape Vektorisieren mit Inkscape] shirts.gleichjetzt.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
*[http://www.inkscape-fr.org/spip.php?rubrique2 Liste des didacticiels du site inkscape-fr] (fr).&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Tutoriais Vários Tutoriais da comunidade Inkscape Brasil] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/3500/livre/inkscape_brilho_luz_e_vida_aos_logos Brilho, Luz e Vida aos logos] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.imasters.com.br/artigo/4159/livre/criando_personagens Criando Personagens] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Google_Summer_of_Code_2007&amp;diff=13888</id>
		<title>Talk:Google Summer of Code 2007</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Google_Summer_of_Code_2007&amp;diff=13888"/>
		<updated>2007-03-09T17:18:09Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: Question&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Don't know if this is the right place to ask. &lt;br /&gt;
But how about put objects along a path? Just like put text along a path?&lt;br /&gt;
&lt;br /&gt;
Jingshao&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=13886</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=13886"/>
		<updated>2007-03-09T01:23:33Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: simple tutorial on tiled clone&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== en ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Graph-tut-thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://trinifar.wordpress.com/2007/02/21/creating-graphs-with-inkscape/ Graphs in Inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create accurate line graphs in Inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:spring.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com/#spring It is spring time] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make use of &lt;br /&gt;
&amp;quot;tiled clone&amp;quot; with tracing. &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
* [http://inkscape.teekoo.com/ Inkscape in Six Steps] by Jingshao Chen&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://valessio.ul-jb.org/blog/?p=59 Criando raios com inkscape / Usando Blur] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Spring.png&amp;diff=13884</id>
		<title>File:Spring.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Spring.png&amp;diff=13884"/>
		<updated>2007-03-09T01:02:28Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: Thumbnail of the spring tutorial&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Thumbnail of the spring tutorial&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Tutorials_and_help&amp;diff=13780</id>
		<title>Talk:Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Tutorials_and_help&amp;diff=13780"/>
		<updated>2007-03-03T05:40:51Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: Suggest link to home&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We should link this page in the home page of wiki, to replace the TutorialIdea which is merged into this page.&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Jingshaochen&amp;diff=13774</id>
		<title>User:Jingshaochen</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Jingshaochen&amp;diff=13774"/>
		<updated>2007-03-02T19:11:16Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: self intro&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I like inkscape very much. Here is a link to my inkscape tutorial.&lt;br /&gt;
[http://inkscape.teekoo.com inkscape.teekoo.com].&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=13772</id>
		<title>Tutorials and help</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Tutorials_and_help&amp;diff=13772"/>
		<updated>2007-03-02T18:34:56Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: /* en */ Inkscape tutorial on Kiddy Font and Tigger Font&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Unofficial tutorials ==&lt;br /&gt;
&lt;br /&gt;
=== en ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; width=100% style=&amp;quot;text-align:center; background-color:#f3f3f3;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Furboa_head.png]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; Learn how to create a cute little cartoony animal in inkscape. The test subject in this case is a cute little guy named Furboa.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Icons_in_Inkscape.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.deviantart.com/view/14703295/ Icon Creation (Mini-Tutorial)] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A quick little tutorial demonstrating the design process in creating an SVG icon in inkscape. The finished product of this tutorial is actually in the [http://openclipart.org Open Clip Art Library ] &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Orb-tutorial-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/16/simple-bubble-in-inkscape-orb-ball-bubble/ Simple Bubble/Orb in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the use of the blur filter and clipping to create a simple bubble or orb. &lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Inkscape overview tut thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/inkscape_introduction.html inkscape interface tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that descibes the inkscape user interface in detail and explains how they can be used for creating cartoony art. &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:3d-beveltext-thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://ryanler.wordpress.com/2007/02/06/24/ 3d like text effect in inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates a technique to create text with a bevelled edge effect.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Slime_tutorial_thumnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://members.gamedev.net/trapperzoid/ia/tutorial_slime.html slime to start] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A detailed tutorial that shows the reader how to draw a simple cartoony slime creature using inkscape. This tutorial also provides great detail on the thought and development process that is used for basic character development.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Starfish_tutorial_thumb.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ a starfish with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a simple tutorial that shows how to make a simple starfish in inkscape. great for inkscape &amp;quot;newbies&amp;quot; &lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Starburst_tut_thumb.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://foreach.awardspace.com/random/inkscape-two.html Sun background with inkscape] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that demonstrates the technique of creating the &amp;quot;starburst&amp;quot; effect using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:Eye_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2007/02/01/11-step-tutorial-to-create-eyeball-vector-art 11 Step Tutorial To Create Eyeball Vector Art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; A tutorial that shows the process to create an eyeball in inkscape.&lt;br /&gt;
|-&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;|&lt;br /&gt;
[[Image:Ball_tut_thumbnail.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://www.wisetome.com/splat/2006/12/13/10-step-tutorial-to-create-shiny-ball-vector-art/ 10 step tutorial to create shinyball vector art] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial that shows you how to create a shiny little ball using inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
[[Image:inkscape_fonts.png]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Name: &amp;lt;/strong&amp;gt;[http://inkscape.teekoo.com Kiddy Font and Tigger Font Tutorial] &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Overview: &amp;lt;/strong&amp;gt; a tutorial on how to create interesting font effects with the help of Inkscape.&lt;br /&gt;
| width=33% style=&amp;quot;border: white 2px solid;&amp;quot;| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [http://70.24.158.31:8080/inktut.php Making Icons] (en)&lt;br /&gt;
* http://programmer-art.org/inkscape currently down video-tutorials planned. (en)&lt;br /&gt;
* [http://www.glitchnyc.com/cgi-bin/blosxom.cgi/technology/opensource/furboa_tutoria.phblox Furboa-Tutorial] (en)&lt;br /&gt;
* [http://www.deviantart.com/view/14703295/ Icon Creation], devianart.com-mini-Tutorial, without text&lt;br /&gt;
* [http://www.artcamilla.dk/vaultage/articles/the6502s/articles-gimp/cartoon-effects-1/article.html Cartoon Effekt]] Inkscape and Gimp (en)&lt;br /&gt;
* [http://linuxcult.com/?m=show&amp;amp;id=272 Glossy Triangle (sodipodi)]&lt;br /&gt;
* [http://www.sitepoint.com/article/create-xp-style-icons article about how to create Icons] (en)&lt;br /&gt;
* [http://www.closing-gaps.org/tutorial-ink1.htm Tutorial for product illustration using Inkscape.] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/demos/inkscape/key-status.avi Video about Inkscape], avi&lt;br /&gt;
* [http://le-radar.com/?articles/drawinginkscapeEn Beginner tutorial] (en)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=blogtutorial List of tutorials] (en)&lt;br /&gt;
* [http://members.gamedev.net/trapperzoid/ia/index.html Inkscape Adventures] by Trapper Zoid&lt;br /&gt;
* [http://www.christianmontoya.com/2007/01/11/tutorial-a-starfish-with-inkscape/ A Starfish with Inkscape] (en) in two parts.&lt;br /&gt;
&lt;br /&gt;
=== de ===&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=3&amp;amp;page=1#Item_0 Silhouette-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
* [http://inkscape-forum.de/comments.php?DiscussionID=6&amp;amp;page=1#Item_0 Glassbutton-tutorial] inkscape-forum.de, (de)&lt;br /&gt;
&lt;br /&gt;
=== fr ===&lt;br /&gt;
* [http://popolon.org/gblog2/comment-faire-une-illustration-de-a-a-z-avec-inkscape Comment faire une illustration de A à Z avec inkscape.] (fr), same as above&lt;br /&gt;
*[http://le-radar.com/?articles/drawinginkscape Pour grands débutants] (fr)&lt;br /&gt;
* [http://popolon.org/inkscape/?sub=didacticielblog Liste des didacticiels du blog] de Popolon&lt;br /&gt;
&lt;br /&gt;
=== it ===&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/colorare/index.htm Simulare l'uso del secchiello] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_I/index.htm Il logo ATi con Inkscape - Parte I] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_II/index.htm Il logo ATi con Inkscape - Parte II] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/logo_ati_III/index.htm Il logo ATi con Inkscape - Parte III] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/vettorializzare_I/index.htm Vettorializzare un'immagine (es.pratico)] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/unire_tracciati/index.htm Unire tracciati differenti] (it)&lt;br /&gt;
*[http://inkscape.altervista.org/tutorials/creare_ingranaggi/index.htm Come creare semplici ingranaggi] (it)&lt;br /&gt;
&lt;br /&gt;
=== pl ===&lt;br /&gt;
*[http://www.inf.sgsp.edu.pl/lab/filmiki/filmiki.php Video tutorials / Filmiki szkoleniowe] (pl)&lt;br /&gt;
&lt;br /&gt;
=== pt_BR ===&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=143&amp;amp;tid=6 Manual Desenho Vectorial do Inkscape] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=158&amp;amp;tid=6 Manual do inkscape 0.40] (pt_BR)&lt;br /&gt;
*[http://valessio.ul-jb.org/blog/?p=59 Criando raios com inkscape / Usando Blur] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=172&amp;amp;tid=6 Criando a logo do Ubuntu] (pt_BR)&lt;br /&gt;
*[http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?code=157&amp;amp;tid=6 Utilização de Imagens SVG em Páginas Web] (pt_BR)&lt;br /&gt;
&lt;br /&gt;
=== zh_CN ===&lt;br /&gt;
*[http://popolon.org/inkscape/?sub=blogjiaoyu 一些中文Inkscape教育]&lt;br /&gt;
&lt;br /&gt;
== Help &amp;amp; helpful articles ==&lt;br /&gt;
* [http://le-radar.com/?mm/inkscape Inkscape User manual] (en, fr) or get from user_manual branch of SVN&lt;br /&gt;
* [http://www.linux-magazine.com/issue/56/Inkscape_Vector_Graphics.pdf Inkscape Vector Graphics] pdf, by Peter Kreussel (en)&lt;br /&gt;
* [http://www.linux-user.de/ausgabe/2005/05/053-inkscape/ Inkscape Vector Graphics], by Peter Kreußel (de), same as above&lt;br /&gt;
* [http://ubuntuforums.org/showpost.php?p=2183007&amp;amp;postcount=13 How to draw an arrow or line with marker with Inkscape 0.45] (en)&lt;br /&gt;
* [http://jimmac.musichall.cz/weblog.php/Inkscape?flav=php art-weblog with inkscape-category] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/index.php?cat=4 Andy's weblog with inkscape-category] (de)&lt;br /&gt;
* [http://popolon.org/gblog2/categorie/didacticiel/didacticiel-graphique/inkscape-tutorial/ Popolongraphical Blog] (fr, en)&lt;br /&gt;
* [http://inkscape.le-radar.com Cours Inkscape, by Cédric GEMY (pygmee)] (fr) &lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Path_Tutorial/inkscapePaths.swf Flashvideo about drawing with the pen-tool and Bezier curves] (en)&lt;br /&gt;
* [http://www.archive.org/download/Inkscape_Gradient_Tutorial/gradient.swf Flashvideo about creating gradients] (en)&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape some annotations about &amp;quot;Flowing Text, Portable SVG Files &amp;amp; Producing A4-pdf-files] (en)&lt;br /&gt;
* [http://www.rau-tu.unicamp.br/nou-rau/softwarelivre/document/?down=158 Portugese Inscape Manual] zipped svg (0.40)] (pt)&lt;br /&gt;
* [http://www.linuxplanet.com/linuxplanet/tutorials/5757/5/ Inkscape: Vector Graphics For Linux] Rob, Reilly (en)&lt;br /&gt;
* [http://www.sketchpad.net/drawing2.htm Bezier Curves And The Different Kinds Of Anchor Points] (en)&lt;br /&gt;
* [http://software.newsforge.com/software/05/09/08/1835253.shtml?tid=131&amp;amp;tid=130&amp;amp;tid=132| article about inkscape], Bruce Byfield (en)&lt;br /&gt;
* [http://www.redhat.com/magazine/010aug05/features/inkscape/ Creating vector graphics with Inkscape] by Rosanna Yuen, redhat.com (en)&lt;br /&gt;
&lt;br /&gt;
== Creating New Tutorials ==&lt;br /&gt;
Easy way:  &lt;br /&gt;
# Load up one of the existing tutorials&lt;br /&gt;
# Replace its text and images with your own&lt;br /&gt;
# Upload it to the [http://sourceforge.net/tracker/?func=add&amp;amp;group_id=93438&amp;amp;atid=604308 Patch Tracker].  Make SURE to click the &amp;quot;Upload and Attach a File&amp;quot; checkbox!&lt;br /&gt;
&lt;br /&gt;
Official way:&lt;br /&gt;
# Create a DocBook XML file like the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/basic/tutorial-basic.xml?view=markup Basic Tutorial DocBook]&lt;br /&gt;
# Follow directions in the tutorial directory [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/README?view=markup README] for formatting and handling of embedded non-SVG images&lt;br /&gt;
# Create a subdirectory in the [http://svn.sourceforge.net/viewvc/inkscape/doc-docbook/trunk/ doc-docbook] module and place the new tutorial docbook file there&lt;br /&gt;
# Test tutorial generation using the `make-html`, `make-svg`, and `make-all` scripts&lt;br /&gt;
# Announce the availability of the new tutorial&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tutorial Ideas ==&lt;br /&gt;
This section will consist of brainstorming and basic development of new tutorials that will be useful for new/old users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Completed Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [http://home.programmer-art.org/?page=inkscape Daniel Taylor's Web-Based Inkscape Tutorials] - Hopefully he will make SVG tutorials that we can inlude with Inkscape, like our current [[DefaultTutorial]].&lt;br /&gt;
* making shiny marbles... http://inkscape.org/wiki_uploads/marbles_tut.svg&lt;br /&gt;
* also see [http://inkscape.org/cgi-bin/wiki.pl?OtherProjects#outsidetut Outside Tutorials and Tips]&lt;br /&gt;
* [[ElementsPrinciplesOfDesign]] (rejon)&lt;br /&gt;
* [http://kargs.net/docs/easter_egg_tutorial.svg Easter Egg Tutorial]&lt;br /&gt;
&lt;br /&gt;
=== Tutorials in development ===&lt;br /&gt;
&lt;br /&gt;
* [http://homepage.univie.ac.at/reinhard.stepanek/fxos80/metchart.html How to create meteorological charts with Inkscape], Tutorial by Reinhard Stepanek&lt;br /&gt;
* Daniel Pope's Clownfish Tutorial - [http://www.mauveweb.co.uk/misc/tutorials/clownfish.svg Part 1] [http://www.mauveweb.co.uk/misc/tutorials/clownfish2.svg Part 2] - drop me an email at mauve@mauveweb.co.uk to suggest changes.&lt;br /&gt;
* A very small sheet with instructions for doing  [http://www.gimpforum.de/album/file.php?n=4323&amp;amp;w=o isometric transformations] - if anyone has comments or wants to have a look at the original svg, contact me at daniel dot hornung &amp;lt;at&amp;gt; gmx dot de (this is useful for e.g. icon work, see [http://fedoraproject.org/wiki/Artwork/BluecurveIconGuidelines Bluecurve Icon Guidelines])&lt;br /&gt;
* [http://www.coofercat.com/wiki/InkScape Coofer Cat's Inkscape Page] - Some miscellaneous meanderings with Inkscape. There are a few hints and tips that might be of use to the less experienced Inkscape user. There are also a few random bits of clipart too.&lt;br /&gt;
&lt;br /&gt;
=== Planned Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* [[UsingTheCloneTiler]] - Clones&lt;br /&gt;
&lt;br /&gt;
* Text and Typography&lt;br /&gt;
&lt;br /&gt;
* Clippath/Mask/Pattern&lt;br /&gt;
&lt;br /&gt;
* Effects&lt;br /&gt;
&lt;br /&gt;
* SVG Filters&lt;br /&gt;
&lt;br /&gt;
* XML Editor&lt;br /&gt;
&lt;br /&gt;
=== Tutorial Scratchpad ===&lt;br /&gt;
&lt;br /&gt;
* How to create an icon&lt;br /&gt;
* How to build a presentation using Inkview.&lt;br /&gt;
* How to build complex shapes using boolean operations.&lt;br /&gt;
* How to use Inkscape to create graphics for LaTeX / ConTeXt documents.&lt;br /&gt;
* etc&lt;br /&gt;
&lt;br /&gt;
A tutorial in progress of writing by John Griessen&lt;br /&gt;
&lt;br /&gt;
This writing is a journal of how a project to recreate a business card originally &lt;br /&gt;
made with Illutrator 7, after losing the original file, so the comparison to Illustrator is &lt;br /&gt;
much from memory and not to be taken as the last word, but a guide as to how the programs compare.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Attached is a png of the printed business card:&lt;br /&gt;
&lt;br /&gt;
It originally was a collection of paths filled with colors and text objects with grouping to&lt;br /&gt;
make replicating some objects easy.  &lt;br /&gt;
&lt;br /&gt;
The shell command  '$inkscape --version' tells us this is Inkscape 0.39cvs (Jul  2 2004)  .&lt;br /&gt;
&lt;br /&gt;
The logo main element is a pseudo sine wave, and I made it before with grid snap and stretching and replicating, so now I set my units to mm and grid spacing and snap to 1 and remember how it would be nice to have major and minor grids instead of just one, so I want to create some vertical guides evenly spaced and cannot remember and start looking in docs.  In Illustrator 7, clicking on the ruler bar created a guide if I recall...  Once created, it could be moved with grid snap like any object, so getting it on grid or off was easy.  As I read around, I find the usage of guides in &amp;quot;Keys and Mouse&amp;quot;  &amp;quot;drag off a ruler&amp;quot;  is the way...  and a guide is on the page, and I can't snap it to easily make the accurate secondary grid I had wanted....Is there a way to?  I try duplicate on the guide, but alas, it is not a regular object...  it cannot be selected as they are...so I cannot replicate guides to make other grids after all... note for the beginner, to get bezier curves out of the line/bezier tool, you must click-drag.  A click-only will give you only connected straight line segments.   I'll have to use lines as guides, &lt;br /&gt;
http://home.austin.rr.com/jgriessen/ill2ink-tut1.png&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Wanted]]&lt;br /&gt;
&lt;br /&gt;
=== Other SVG Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* http://www.codeproject.com/books/learnsvgchapter07.asp&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Inkscape_fonts.png&amp;diff=13770</id>
		<title>File:Inkscape fonts.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Inkscape_fonts.png&amp;diff=13770"/>
		<updated>2007-03-02T18:33:51Z</updated>

		<summary type="html">&lt;p&gt;Jingshaochen: A thumbnail of Kiddy Font in Inkscape. See http://inkscape.teekoo.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A thumbnail of Kiddy Font in Inkscape. See http://inkscape.teekoo.com&lt;/div&gt;</summary>
		<author><name>Jingshaochen</name></author>
	</entry>
</feed>