<?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=Terrelshumway</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=Terrelshumway"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Terrelshumway"/>
	<updated>2026-04-19T01:37:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Terrelshumway&amp;diff=64315</id>
		<title>User:Terrelshumway</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Terrelshumway&amp;diff=64315"/>
		<updated>2010-08-30T20:51:40Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a pretty decent python programmer who loves to use inkscape for drawing and drafting.&lt;br /&gt;
&lt;br /&gt;
Things I want to see in Inkscape:&lt;br /&gt;
&lt;br /&gt;
* excellent template support.&lt;br /&gt;
* a better File|New&lt;br /&gt;
* better support for UML and similar drawing styles.&lt;br /&gt;
* better keyboard support&lt;br /&gt;
* I want to draw a house plan in feet and inches.  v. 0.48 refuses to let me view the entire drawing (4) if it is larger than about 100 feet.&lt;br /&gt;
* I want to be able to write plugins in Python (maybe that is already possible)&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Terrelshumway&amp;diff=64309</id>
		<title>User:Terrelshumway</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Terrelshumway&amp;diff=64309"/>
		<updated>2010-08-30T20:45:12Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: Created page with 'I am a pretty decent python programmer who loves to use inkscape for drawing and drafting.  Current Itches:  * File|New leaves much room for improvement. I would like to see exce...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a pretty decent python programmer who loves to use inkscape for drawing and drafting.&lt;br /&gt;
&lt;br /&gt;
Current Itches:&lt;br /&gt;
 * File|New leaves much room for improvement. I would like to see excellent template support.&lt;br /&gt;
 * I want to draw a house plan in feet and inches.  v. 0.48 refuses to let me view the entire drawing (4) if it is larger than about 100 feet.&lt;br /&gt;
 * I want to be able to write plugins in Python (maybe that is already possible)&lt;br /&gt;
  * I am interested in UML.&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64303</id>
		<title>BlueprintRealUnit</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64303"/>
		<updated>2010-08-30T20:05:12Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: /* Use cases */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
This blueprint tries to collect all information about how to implement real world units (in, mm) in a standard compliant way.&lt;br /&gt;
&lt;br /&gt;
This blueprint is part of the [[CAD]] collections, please see it if you are interesting to an other CAD feature.&lt;br /&gt;
&lt;br /&gt;
== The problem ==&lt;br /&gt;
&lt;br /&gt;
=== Inaccuracy ===&lt;br /&gt;
&lt;br /&gt;
==== Inkscape side ====&lt;br /&gt;
&lt;br /&gt;
Even if the user switch everywhere the unit to mm, inkscape &lt;br /&gt;
converts it to px unit and writes it in the .svg file resulting inaccuracies.&lt;br /&gt;
&lt;br /&gt;
==== SVG side ====&lt;br /&gt;
&lt;br /&gt;
All the units in svg drawing needs to be in px unit.&lt;br /&gt;
The grammar in the SVG specification does not allow other units then pixel:&lt;br /&gt;
http://www.w3.org/TR/SVG/paths.html#PathDataBNF&lt;br /&gt;
&lt;br /&gt;
More information about coordinate system:&lt;br /&gt;
http://www.w3.org/TR/SVG/coords.html&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
This is '''invalid''' in SVG:&lt;br /&gt;
  &amp;lt;path d=&amp;quot;M 0,0 L 30mm,0 L 30mm,30mm L 45mm,30mm&amp;quot; id=&amp;quot;path7887&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The correct solution would be to specify it in pixel and after tranform it.&lt;br /&gt;
&lt;br /&gt;
=== Flipping the coordinate system ===&lt;br /&gt;
&lt;br /&gt;
Inkscape use the SVG standard coordinate system, where the origin is at the &lt;br /&gt;
top-left corner. For humans the svg file is more readable if the coordinate system were at the bottom-left corner.&lt;br /&gt;
&lt;br /&gt;
Would be nice, if it were an ability to specify the origin of the coordinate system (top-left vs. bottom-left).&lt;br /&gt;
&lt;br /&gt;
So all the svg object would be defined for human reading and the whole page is flipped using the transform attribute of the svg specification.&lt;br /&gt;
&lt;br /&gt;
== Document width and document height ==&lt;br /&gt;
&lt;br /&gt;
In inkscape it is possible to specify the document width and height as described in the [http://www.w3.org/TR/SVG/struct.html#SVGElement section 5.1.2].&lt;br /&gt;
Although it can be written that the document width is 210mm and height is 297mm, it has '''no effect''' to the units in the svg document. &lt;br /&gt;
It simply specify the page size around the drawing. (it is useful when exporting a page to pdf)&lt;br /&gt;
&lt;br /&gt;
A simple svg definition:&lt;br /&gt;
  &amp;lt;svg width=&amp;quot;210mm&amp;quot; height=&amp;quot;297mm&amp;quot; id=&amp;quot;svg3248&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Typical workflow ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
1. Bob wants everything in mm&lt;br /&gt;
&lt;br /&gt;
2. Bob wants everything in mm except fonts which he wants in points.&lt;br /&gt;
&lt;br /&gt;
3. Bob wants mix units in mm and inch. But always want to see the original unit.&lt;br /&gt;
&lt;br /&gt;
4. Bob does not care about units he wants just draw something to the web&lt;br /&gt;
&lt;br /&gt;
5. Bob wants to draw a house plan in feet and inches, but still print it on a letter-sized paper. (one idea: different layers can have different scales: e.g. border layer is actual size, house layer is 1 in. = 8 ft.)&lt;br /&gt;
&lt;br /&gt;
== More resource on the web ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/TR/SVG/coords.html#TransformAttribute Transform in the SVG specification]&lt;br /&gt;
* [http://support.adobe.com/devsup/devsup.nsf/docs/50556.htm Possible solution to coordinate system by adobe]&lt;br /&gt;
&lt;br /&gt;
== Related bug reports ==&lt;br /&gt;
&lt;br /&gt;
  [http://bugs.launchpad.net/inkscape/+bug/168753 #168753]: SVG defaults to pixels (90dpi) despite default units&lt;br /&gt;
  Duplicates: &lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/168516 #168516]: Inkscape doesn't save page size units in plain svg&lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/170738 #170738]: preserve units&lt;br /&gt;
&lt;br /&gt;
  Viewbox related bug reports:&lt;br /&gt;
  [https://bugs.launchpad.net/inkscape/+bug/171203 #171203]: Use viewBox to explicitly define a coordinate system&lt;br /&gt;
&lt;br /&gt;
== Related discussions in the past ==&lt;br /&gt;
On the inkscape-dev mailing list: &lt;br /&gt;
&lt;br /&gt;
[http://www.nabble.com/Problem-with-real-units-%28mm%29-tt14966336.html#a14971033 Problem with real units (mm)]&lt;br /&gt;
&lt;br /&gt;
Although attaching parasite information to an svg element is not necessary, but maybe useful if additional information must be keeped about conversion inaccuracy.&lt;br /&gt;
Please see this thread for more information: [http://www.nabble.com/Attaching-parasite-information-to-an-object-%28or-group%29-tt14892304.html#a14892304 Attaching parasite information to an object (or group)]&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64297</id>
		<title>BlueprintRealUnit</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64297"/>
		<updated>2010-08-30T20:04:17Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: /* Use cases */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
This blueprint tries to collect all information about how to implement real world units (in, mm) in a standard compliant way.&lt;br /&gt;
&lt;br /&gt;
This blueprint is part of the [[CAD]] collections, please see it if you are interesting to an other CAD feature.&lt;br /&gt;
&lt;br /&gt;
== The problem ==&lt;br /&gt;
&lt;br /&gt;
=== Inaccuracy ===&lt;br /&gt;
&lt;br /&gt;
==== Inkscape side ====&lt;br /&gt;
&lt;br /&gt;
Even if the user switch everywhere the unit to mm, inkscape &lt;br /&gt;
converts it to px unit and writes it in the .svg file resulting inaccuracies.&lt;br /&gt;
&lt;br /&gt;
==== SVG side ====&lt;br /&gt;
&lt;br /&gt;
All the units in svg drawing needs to be in px unit.&lt;br /&gt;
The grammar in the SVG specification does not allow other units then pixel:&lt;br /&gt;
http://www.w3.org/TR/SVG/paths.html#PathDataBNF&lt;br /&gt;
&lt;br /&gt;
More information about coordinate system:&lt;br /&gt;
http://www.w3.org/TR/SVG/coords.html&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
This is '''invalid''' in SVG:&lt;br /&gt;
  &amp;lt;path d=&amp;quot;M 0,0 L 30mm,0 L 30mm,30mm L 45mm,30mm&amp;quot; id=&amp;quot;path7887&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The correct solution would be to specify it in pixel and after tranform it.&lt;br /&gt;
&lt;br /&gt;
=== Flipping the coordinate system ===&lt;br /&gt;
&lt;br /&gt;
Inkscape use the SVG standard coordinate system, where the origin is at the &lt;br /&gt;
top-left corner. For humans the svg file is more readable if the coordinate system were at the bottom-left corner.&lt;br /&gt;
&lt;br /&gt;
Would be nice, if it were an ability to specify the origin of the coordinate system (top-left vs. bottom-left).&lt;br /&gt;
&lt;br /&gt;
So all the svg object would be defined for human reading and the whole page is flipped using the transform attribute of the svg specification.&lt;br /&gt;
&lt;br /&gt;
== Document width and document height ==&lt;br /&gt;
&lt;br /&gt;
In inkscape it is possible to specify the document width and height as described in the [http://www.w3.org/TR/SVG/struct.html#SVGElement section 5.1.2].&lt;br /&gt;
Although it can be written that the document width is 210mm and height is 297mm, it has '''no effect''' to the units in the svg document. &lt;br /&gt;
It simply specify the page size around the drawing. (it is useful when exporting a page to pdf)&lt;br /&gt;
&lt;br /&gt;
A simple svg definition:&lt;br /&gt;
  &amp;lt;svg width=&amp;quot;210mm&amp;quot; height=&amp;quot;297mm&amp;quot; id=&amp;quot;svg3248&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Typical workflow ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
1. Bob wants everything in mm&lt;br /&gt;
&lt;br /&gt;
2. Bob wants everything in mm except fonts which he wants in points.&lt;br /&gt;
&lt;br /&gt;
3. Bob wants mix units in mm and inch. But always want to see the original unit.&lt;br /&gt;
&lt;br /&gt;
4. Bob does not care about units he wants just draw something to the web&lt;br /&gt;
&lt;br /&gt;
4. Bob wants to draw a house plan in feet and inches, but still print it on a letter-sized paper. (one idea: different layers can have different scales: e.g. border layer is actual size, house layer is 1 in. = 8 ft.)&lt;br /&gt;
&lt;br /&gt;
== More resource on the web ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/TR/SVG/coords.html#TransformAttribute Transform in the SVG specification]&lt;br /&gt;
* [http://support.adobe.com/devsup/devsup.nsf/docs/50556.htm Possible solution to coordinate system by adobe]&lt;br /&gt;
&lt;br /&gt;
== Related bug reports ==&lt;br /&gt;
&lt;br /&gt;
  [http://bugs.launchpad.net/inkscape/+bug/168753 #168753]: SVG defaults to pixels (90dpi) despite default units&lt;br /&gt;
  Duplicates: &lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/168516 #168516]: Inkscape doesn't save page size units in plain svg&lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/170738 #170738]: preserve units&lt;br /&gt;
&lt;br /&gt;
  Viewbox related bug reports:&lt;br /&gt;
  [https://bugs.launchpad.net/inkscape/+bug/171203 #171203]: Use viewBox to explicitly define a coordinate system&lt;br /&gt;
&lt;br /&gt;
== Related discussions in the past ==&lt;br /&gt;
On the inkscape-dev mailing list: &lt;br /&gt;
&lt;br /&gt;
[http://www.nabble.com/Problem-with-real-units-%28mm%29-tt14966336.html#a14971033 Problem with real units (mm)]&lt;br /&gt;
&lt;br /&gt;
Although attaching parasite information to an svg element is not necessary, but maybe useful if additional information must be keeped about conversion inaccuracy.&lt;br /&gt;
Please see this thread for more information: [http://www.nabble.com/Attaching-parasite-information-to-an-object-%28or-group%29-tt14892304.html#a14892304 Attaching parasite information to an object (or group)]&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64291</id>
		<title>BlueprintRealUnit</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=BlueprintRealUnit&amp;diff=64291"/>
		<updated>2010-08-30T19:58:08Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: /* Inkscape side */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
This blueprint tries to collect all information about how to implement real world units (in, mm) in a standard compliant way.&lt;br /&gt;
&lt;br /&gt;
This blueprint is part of the [[CAD]] collections, please see it if you are interesting to an other CAD feature.&lt;br /&gt;
&lt;br /&gt;
== The problem ==&lt;br /&gt;
&lt;br /&gt;
=== Inaccuracy ===&lt;br /&gt;
&lt;br /&gt;
==== Inkscape side ====&lt;br /&gt;
&lt;br /&gt;
Even if the user switch everywhere the unit to mm, inkscape &lt;br /&gt;
converts it to px unit and writes it in the .svg file resulting inaccuracies.&lt;br /&gt;
&lt;br /&gt;
==== SVG side ====&lt;br /&gt;
&lt;br /&gt;
All the units in svg drawing needs to be in px unit.&lt;br /&gt;
The grammar in the SVG specification does not allow other units then pixel:&lt;br /&gt;
http://www.w3.org/TR/SVG/paths.html#PathDataBNF&lt;br /&gt;
&lt;br /&gt;
More information about coordinate system:&lt;br /&gt;
http://www.w3.org/TR/SVG/coords.html&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
This is '''invalid''' in SVG:&lt;br /&gt;
  &amp;lt;path d=&amp;quot;M 0,0 L 30mm,0 L 30mm,30mm L 45mm,30mm&amp;quot; id=&amp;quot;path7887&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The correct solution would be to specify it in pixel and after tranform it.&lt;br /&gt;
&lt;br /&gt;
=== Flipping the coordinate system ===&lt;br /&gt;
&lt;br /&gt;
Inkscape use the SVG standard coordinate system, where the origin is at the &lt;br /&gt;
top-left corner. For humans the svg file is more readable if the coordinate system were at the bottom-left corner.&lt;br /&gt;
&lt;br /&gt;
Would be nice, if it were an ability to specify the origin of the coordinate system (top-left vs. bottom-left).&lt;br /&gt;
&lt;br /&gt;
So all the svg object would be defined for human reading and the whole page is flipped using the transform attribute of the svg specification.&lt;br /&gt;
&lt;br /&gt;
== Document width and document height ==&lt;br /&gt;
&lt;br /&gt;
In inkscape it is possible to specify the document width and height as described in the [http://www.w3.org/TR/SVG/struct.html#SVGElement section 5.1.2].&lt;br /&gt;
Although it can be written that the document width is 210mm and height is 297mm, it has '''no effect''' to the units in the svg document. &lt;br /&gt;
It simply specify the page size around the drawing. (it is useful when exporting a page to pdf)&lt;br /&gt;
&lt;br /&gt;
A simple svg definition:&lt;br /&gt;
  &amp;lt;svg width=&amp;quot;210mm&amp;quot; height=&amp;quot;297mm&amp;quot; id=&amp;quot;svg3248&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Typical workflow ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
1. Bob wants everything in mm&lt;br /&gt;
&lt;br /&gt;
2. Bob wants everything in mm except fonts which he wants in points.&lt;br /&gt;
&lt;br /&gt;
3. Bob wants mix units in mm and inch. But always want to see the original unit.&lt;br /&gt;
&lt;br /&gt;
4. Bob does not care about units he wants just draw something to the web&lt;br /&gt;
&lt;br /&gt;
== More resource on the web ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/TR/SVG/coords.html#TransformAttribute Transform in the SVG specification]&lt;br /&gt;
* [http://support.adobe.com/devsup/devsup.nsf/docs/50556.htm Possible solution to coordinate system by adobe]&lt;br /&gt;
&lt;br /&gt;
== Related bug reports ==&lt;br /&gt;
&lt;br /&gt;
  [http://bugs.launchpad.net/inkscape/+bug/168753 #168753]: SVG defaults to pixels (90dpi) despite default units&lt;br /&gt;
  Duplicates: &lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/168516 #168516]: Inkscape doesn't save page size units in plain svg&lt;br /&gt;
    [http://bugs.launchpad.net/inkscape/+bug/170738 #170738]: preserve units&lt;br /&gt;
&lt;br /&gt;
  Viewbox related bug reports:&lt;br /&gt;
  [https://bugs.launchpad.net/inkscape/+bug/171203 #171203]: Use viewBox to explicitly define a coordinate system&lt;br /&gt;
&lt;br /&gt;
== Related discussions in the past ==&lt;br /&gt;
On the inkscape-dev mailing list: &lt;br /&gt;
&lt;br /&gt;
[http://www.nabble.com/Problem-with-real-units-%28mm%29-tt14966336.html#a14971033 Problem with real units (mm)]&lt;br /&gt;
&lt;br /&gt;
Although attaching parasite information to an svg element is not necessary, but maybe useful if additional information must be keeped about conversion inaccuracy.&lt;br /&gt;
Please see this thread for more information: [http://www.nabble.com/Attaching-parasite-information-to-an-object-%28or-group%29-tt14892304.html#a14892304 Attaching parasite information to an object (or group)]&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=64195</id>
		<title>Talk:Frequently asked questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=64195"/>
		<updated>2010-08-25T14:42:07Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: /* Savarese SVG Plugin for Internet Explorer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Windows installer for 0.45? ==&lt;br /&gt;
&lt;br /&gt;
FAQ claims a self-contained installer for Windows XP. Release 0.45 seems to be missing this.&lt;br /&gt;
&lt;br /&gt;
Yes, it is possible to download an archive of 0.45 executables and libraries, but there seems to be no installer that would register file types to the executables and create menu entries, etc.&lt;br /&gt;
&lt;br /&gt;
Is there a maintenance release coming with a Windows installer?&lt;br /&gt;
&lt;br /&gt;
[[User:metaed|MetaEd]]&lt;br /&gt;
&lt;br /&gt;
== Download Inkscape ==&lt;br /&gt;
&lt;br /&gt;
Since I really enjoy working with graphics [i basically use mspaint] and subscribe to 'computer tips' thru worldstart, they have led me to your program called 'Inkscape'.&lt;br /&gt;
&lt;br /&gt;
I was wondering where I can acquire it at?&lt;br /&gt;
&lt;br /&gt;
==.ai?==&lt;br /&gt;
This FAQ says that inkscape can save in .ai format, but I don't see that option in version 0.44 under the save dialog. --[[User:Axiom|Axiom]] 14:55, 22 August 2006 (UTC&lt;br /&gt;
&lt;br /&gt;
===Mac 10.4 ?===&lt;br /&gt;
How do I make Inkscape work on a Mac with 10.4? The X.11 was installed--how do I make it active?&lt;br /&gt;
&lt;br /&gt;
== how about a 'select adjacent nodes' shortcut key ==&lt;br /&gt;
&lt;br /&gt;
If you've ever used Wings 3D, you're probably familiar with hitting the + key or - key to expand or decrease the number of vectors in the current selection. I keep wishing I could do the same with nodes in Inkscape (how about with '''Alt''' + '''+'''  and '''Alt''' + '''-''').&lt;br /&gt;
&lt;br /&gt;
:In 0.45, it's pgup/pgdn or mouse wheel while the mouse is over a node.&lt;br /&gt;
&lt;br /&gt;
===Scale by percent?===&lt;br /&gt;
I am a teacher of mathematics to future teachers, and would like to use Inkscape with my students for learning certain mathematical topics (mostly transformations.) However, in Inkscape, the scaling is % more than, not % of. While this may be the way that some graphics people like to think, it's not ideal for learning math.&lt;br /&gt;
&lt;br /&gt;
1) It doesn't agree with the conventions in other software: AI, AppleWorks, MS Paint, Freehand,... OpenOffice is even worse: you have to say the actual amount more, not the percent more.&lt;br /&gt;
&lt;br /&gt;
2) It makes certain key mathematical concepts less accessible: Twice as big is multiplying by 2 or 200%, a 15% tax on an amount is 115% of the amount, etc. &lt;br /&gt;
&lt;br /&gt;
Is there some way you could include this alternate way of scaling? (Yes, I realize you can put in the coordinates for the affine transformation as a matrix, but I'm working with elementary teachers.)&lt;br /&gt;
&lt;br /&gt;
:this is done in 0.46, thanks for feedback -- bb&lt;br /&gt;
&lt;br /&gt;
== changing locale under windows ==&lt;br /&gt;
&lt;br /&gt;
(Concerning '''I am working on a machine with operating system xxx which has default language yyy set, but I want to work with Inkscape menus in language zzz (most likely English), how can I set this?''')&lt;br /&gt;
&lt;br /&gt;
Under linux being no problem but under windows there seems to be no solution to change the locale on a system with turkish XP to be german. That's a bit - ah - strange...! At least one should be able to set something like &amp;lt;tt&amp;gt;set LANG=de_DE&amp;lt;/tt&amp;gt; as environment variable. --[[User:Katpatuka|Katpatuka]] 19:24, 21 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
What about changing locale for the win32 installer? Is that possible? [[User:Helix84|Helix84]] 13:58, 8 January 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== How to make Alt+click and Alt+drag work on KDE4? ==&lt;br /&gt;
&lt;br /&gt;
How to make Alt+click and Alt+drag work on KDE4? There is no Control Center (KControl) in KDE4.--[[User:Hhielscher|Hhielscher]] 12:01, 16 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== sodipodi ==&lt;br /&gt;
&lt;br /&gt;
The domain sodipodi.com seems to be available for purchase, guess things didn't work out well over there. Suggest to remove the link - page is protected and I can't do it myself. [[User:Odedee|Odedee]] 19:12, 26 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adobe SVG Viewer ==&lt;br /&gt;
&lt;br /&gt;
According to [http://www.adobe.com/svg/eol.html],&amp;lt;br /&amp;gt; &lt;br /&gt;
&amp;quot;Adobe customer support for Adobe SVG Viewer will be discontinued on January 1, 2009.&amp;quot;&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 02:11, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Savarese SVG Plugin for Internet Explorer ==&lt;br /&gt;
&lt;br /&gt;
Savarese Software Research provides an alternative to the unsupported Adobe Viewer.  It is an unmodified distribution of the ActiveX control from the Mozilla code base.&lt;br /&gt;
The installer is just under 10 MB (v1.9.2.8), and does NOT require Firefox to be installed. &lt;br /&gt;
&lt;br /&gt;
Annoyances: &lt;br /&gt;
* Depending on your security settings, IE will probably give you warnings about running ActiveX controls. &lt;br /&gt;
* You will have to modify your HTML to use an object tag instead of an img tag.&lt;br /&gt;
&lt;br /&gt;
http://www.savarese.com/software/svgplugin/&lt;br /&gt;
&lt;br /&gt;
== Linking the W3C Acronym ==&lt;br /&gt;
&lt;br /&gt;
There are three ways the W3C acronym is linked in this Wiki page:&amp;lt;br /&amp;gt;&lt;br /&gt;
1) Plain text only with no link.&amp;lt;br /&amp;gt;&lt;br /&gt;
2) Text linked to http://www.w3.org/&amp;lt;br /&amp;gt;&lt;br /&gt;
3) Text linked to the W3C page in this Wiki.&lt;br /&gt;
&lt;br /&gt;
I understand the first variety.  One should not overlink any reference.&lt;br /&gt;
&lt;br /&gt;
I don't understand why both the second and third exist simultaneously on this page; especially, since the W3C Wiki page currently contains only the http://www.w3.org/ link.&lt;br /&gt;
&lt;br /&gt;
Could someone please help me improve my understanding of the proper way to link references such as W3C?&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 21:37, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gnome and Bonobo ==&lt;br /&gt;
&lt;br /&gt;
According to the [http://library.gnome.org/devel/api GNOME Documentation Library API Reference],&amp;lt;br /&amp;gt;&lt;br /&gt;
under Bonobo Activation API Reference Manual,&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;quot;This module is heading towards planned deprecation. It will continue to be supported and API/ABI stable throughout the GNOME 2.x series, but we do not recommend using it in new applications unless you require functionality that has not already been moved elsewhere.&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 22:45, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bazaar replaced Subversion ==&lt;br /&gt;
&lt;br /&gt;
According to the News section of the [http://inkscape.org/ Inkscape home page],&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;quot;Source code repository has moved to Launchpad&amp;quot; which means Bazaar has replaced Subversion as the code repository.&amp;lt;br /&amp;gt;&lt;br /&gt;
I don't know how to edit the &amp;quot;What is the Linux command to download the code through Subversion?&amp;quot; question since I am not conversant with either source code version control system.  Perhaps someone else can take on the task.&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 23:25, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 2.10 Can I use different settings for the new documents created by Inkscape? ==&lt;br /&gt;
&lt;br /&gt;
On Ubuntu 10.04 (Lucid Lynx) the path for storing settings is not &amp;lt;code&amp;gt;~/.inkscape/....&amp;lt;/code&amp;gt; but rather &amp;lt;code&amp;gt;~/.config/inkscape/....&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I have not changed the FAQ in question as I don't know if the path is incorrect for other distributions.  Can others confirm on different distros?&lt;br /&gt;
&lt;br /&gt;
:The path to the Inkscape Preferences directory has [http://wiki.inkscape.org/wiki/index.php/Release_notes/0.47#Preferences changed in Inkscape 0.47] on Linux and Mac OS X; it stayed unchanged for the Windows port (%APPDATA%\Inkscape).--[[User:~suv|~suv]] 20:42, 1 July 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=64189</id>
		<title>Talk:Frequently asked questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=64189"/>
		<updated>2010-08-25T13:38:15Z</updated>

		<summary type="html">&lt;p&gt;Terrelshumway: /* alternative to  Adobe SVG Viewer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Windows installer for 0.45? ==&lt;br /&gt;
&lt;br /&gt;
FAQ claims a self-contained installer for Windows XP. Release 0.45 seems to be missing this.&lt;br /&gt;
&lt;br /&gt;
Yes, it is possible to download an archive of 0.45 executables and libraries, but there seems to be no installer that would register file types to the executables and create menu entries, etc.&lt;br /&gt;
&lt;br /&gt;
Is there a maintenance release coming with a Windows installer?&lt;br /&gt;
&lt;br /&gt;
[[User:metaed|MetaEd]]&lt;br /&gt;
&lt;br /&gt;
== Download Inkscape ==&lt;br /&gt;
&lt;br /&gt;
Since I really enjoy working with graphics [i basically use mspaint] and subscribe to 'computer tips' thru worldstart, they have led me to your program called 'Inkscape'.&lt;br /&gt;
&lt;br /&gt;
I was wondering where I can acquire it at?&lt;br /&gt;
&lt;br /&gt;
==.ai?==&lt;br /&gt;
This FAQ says that inkscape can save in .ai format, but I don't see that option in version 0.44 under the save dialog. --[[User:Axiom|Axiom]] 14:55, 22 August 2006 (UTC&lt;br /&gt;
&lt;br /&gt;
===Mac 10.4 ?===&lt;br /&gt;
How do I make Inkscape work on a Mac with 10.4? The X.11 was installed--how do I make it active?&lt;br /&gt;
&lt;br /&gt;
== how about a 'select adjacent nodes' shortcut key ==&lt;br /&gt;
&lt;br /&gt;
If you've ever used Wings 3D, you're probably familiar with hitting the + key or - key to expand or decrease the number of vectors in the current selection. I keep wishing I could do the same with nodes in Inkscape (how about with '''Alt''' + '''+'''  and '''Alt''' + '''-''').&lt;br /&gt;
&lt;br /&gt;
:In 0.45, it's pgup/pgdn or mouse wheel while the mouse is over a node.&lt;br /&gt;
&lt;br /&gt;
===Scale by percent?===&lt;br /&gt;
I am a teacher of mathematics to future teachers, and would like to use Inkscape with my students for learning certain mathematical topics (mostly transformations.) However, in Inkscape, the scaling is % more than, not % of. While this may be the way that some graphics people like to think, it's not ideal for learning math.&lt;br /&gt;
&lt;br /&gt;
1) It doesn't agree with the conventions in other software: AI, AppleWorks, MS Paint, Freehand,... OpenOffice is even worse: you have to say the actual amount more, not the percent more.&lt;br /&gt;
&lt;br /&gt;
2) It makes certain key mathematical concepts less accessible: Twice as big is multiplying by 2 or 200%, a 15% tax on an amount is 115% of the amount, etc. &lt;br /&gt;
&lt;br /&gt;
Is there some way you could include this alternate way of scaling? (Yes, I realize you can put in the coordinates for the affine transformation as a matrix, but I'm working with elementary teachers.)&lt;br /&gt;
&lt;br /&gt;
:this is done in 0.46, thanks for feedback -- bb&lt;br /&gt;
&lt;br /&gt;
== changing locale under windows ==&lt;br /&gt;
&lt;br /&gt;
(Concerning '''I am working on a machine with operating system xxx which has default language yyy set, but I want to work with Inkscape menus in language zzz (most likely English), how can I set this?''')&lt;br /&gt;
&lt;br /&gt;
Under linux being no problem but under windows there seems to be no solution to change the locale on a system with turkish XP to be german. That's a bit - ah - strange...! At least one should be able to set something like &amp;lt;tt&amp;gt;set LANG=de_DE&amp;lt;/tt&amp;gt; as environment variable. --[[User:Katpatuka|Katpatuka]] 19:24, 21 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
What about changing locale for the win32 installer? Is that possible? [[User:Helix84|Helix84]] 13:58, 8 January 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== How to make Alt+click and Alt+drag work on KDE4? ==&lt;br /&gt;
&lt;br /&gt;
How to make Alt+click and Alt+drag work on KDE4? There is no Control Center (KControl) in KDE4.--[[User:Hhielscher|Hhielscher]] 12:01, 16 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== sodipodi ==&lt;br /&gt;
&lt;br /&gt;
The domain sodipodi.com seems to be available for purchase, guess things didn't work out well over there. Suggest to remove the link - page is protected and I can't do it myself. [[User:Odedee|Odedee]] 19:12, 26 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adobe SVG Viewer ==&lt;br /&gt;
&lt;br /&gt;
According to [http://www.adobe.com/svg/eol.html],&amp;lt;br /&amp;gt; &lt;br /&gt;
&amp;quot;Adobe customer support for Adobe SVG Viewer will be discontinued on January 1, 2009.&amp;quot;&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 02:11, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Savarese SVG Plugin for Internet Explorer ==&lt;br /&gt;
&lt;br /&gt;
Savarese Software Research provides an alternative to the unsupported Adobe Viewer.  It is an unmodified distribution of the ActiveX control from the Mozilla code base.&lt;br /&gt;
&lt;br /&gt;
http://www.savarese.com/software/svgplugin/&lt;br /&gt;
&lt;br /&gt;
== Linking the W3C Acronym ==&lt;br /&gt;
&lt;br /&gt;
There are three ways the W3C acronym is linked in this Wiki page:&amp;lt;br /&amp;gt;&lt;br /&gt;
1) Plain text only with no link.&amp;lt;br /&amp;gt;&lt;br /&gt;
2) Text linked to http://www.w3.org/&amp;lt;br /&amp;gt;&lt;br /&gt;
3) Text linked to the W3C page in this Wiki.&lt;br /&gt;
&lt;br /&gt;
I understand the first variety.  One should not overlink any reference.&lt;br /&gt;
&lt;br /&gt;
I don't understand why both the second and third exist simultaneously on this page; especially, since the W3C Wiki page currently contains only the http://www.w3.org/ link.&lt;br /&gt;
&lt;br /&gt;
Could someone please help me improve my understanding of the proper way to link references such as W3C?&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 21:37, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Gnome and Bonobo ==&lt;br /&gt;
&lt;br /&gt;
According to the [http://library.gnome.org/devel/api GNOME Documentation Library API Reference],&amp;lt;br /&amp;gt;&lt;br /&gt;
under Bonobo Activation API Reference Manual,&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;quot;This module is heading towards planned deprecation. It will continue to be supported and API/ABI stable throughout the GNOME 2.x series, but we do not recommend using it in new applications unless you require functionality that has not already been moved elsewhere.&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 22:45, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bazaar replaced Subversion ==&lt;br /&gt;
&lt;br /&gt;
According to the News section of the [http://inkscape.org/ Inkscape home page],&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;quot;Source code repository has moved to Launchpad&amp;quot; which means Bazaar has replaced Subversion as the code repository.&amp;lt;br /&amp;gt;&lt;br /&gt;
I don't know how to edit the &amp;quot;What is the Linux command to download the code through Subversion?&amp;quot; question since I am not conversant with either source code version control system.  Perhaps someone else can take on the task.&amp;lt;br /&amp;gt;&lt;br /&gt;
--[[User:NeoPhyte Rep|NeoPhyte Rep]] 23:25, 17 December 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 2.10 Can I use different settings for the new documents created by Inkscape? ==&lt;br /&gt;
&lt;br /&gt;
On Ubuntu 10.04 (Lucid Lynx) the path for storing settings is not &amp;lt;code&amp;gt;~/.inkscape/....&amp;lt;/code&amp;gt; but rather &amp;lt;code&amp;gt;~/.config/inkscape/....&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I have not changed the FAQ in question as I don't know if the path is incorrect for other distributions.  Can others confirm on different distros?&lt;br /&gt;
&lt;br /&gt;
:The path to the Inkscape Preferences directory has [http://wiki.inkscape.org/wiki/index.php/Release_notes/0.47#Preferences changed in Inkscape 0.47] on Linux and Mac OS X; it stayed unchanged for the Windows port (%APPDATA%\Inkscape).--[[User:~suv|~suv]] 20:42, 1 July 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Terrelshumway</name></author>
	</entry>
</feed>