1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Do not edit this file.
It is generated automatically from doc/keys.xml by doc/keys-svg.xsl.
-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:h="http://www.w3.org/1999/xhtml" version="1.0" x="0" y="0" width="744.094482" height="1052.36218" id="svg559" sodipodi:version="0.32" inkscape:version="0.37cvs" sodipodi:docname="keys-sample.svg" sodipodi:docbase="/home/d/ink/inkscape"><sodipodi:namedview id="base" inkscape:zoom="0.48" inkscape:cx="736" inkscape:cy="588" inkscape:window-width="780" inkscape:window-height="580" inkscape:window-x="0" inkscape:window-y="0" showborder="false"/><defs id="defs561"><linearGradient id="linearGradient711"><stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.00000000" id="stop712"/><stop style="stop-color:#868686;stop-opacity:1;" offset="1.00000000" id="stop713"/></linearGradient><linearGradient id="linearGradient607"><stop style="stop-color:#cfcfcf;stop-opacity:1;" offset="0.000000" id="stop608"/><stop style="stop-color:#efefef;stop-opacity:1;" offset="1.000000" id="stop609"/></linearGradient><linearGradient id="linearGradient565"><stop style="stop-color:#9d9d9f;stop-opacity:1;" offset="0.000000" id="stop566"/><stop style="stop-color:#e5e5e5;stop-opacity:1;" offset="1.000000" id="stop567"/></linearGradient><radialGradient id="radialGradient568" xlink:href="#linearGradient711" cx="0.69677418" cy="0.30366492" r="0.87194777" fx="0.69677418" fy="0.30366492" spreadMethod="reflect"/><linearGradient id="linearGradient569" xlink:href="#linearGradient565" y2="-0.03731298" x2="0.72092992" y1="0.99253702" x1="-0.08527008" spreadMethod="pad" gradientUnits="objectBoundingBox"/><linearGradient id="linearGradient580" xlink:href="#linearGradient565" y2="0.00000002" x2="-0.04651194" y1="0.99253708" x1="-0.00775294" spreadMethod="pad" gradientUnits="objectBoundingBox"/><linearGradient xlink:href="#linearGradient565" id="linearGradient576"/><linearGradient xlink:href="#linearGradient607" id="linearGradient610" x1="0.11764701" y1="0.86885244" x2="0.78280514" y2="0.12295082" gradientUnits="objectBoundingBox" spreadMethod="pad"/><linearGradient xlink:href="#linearGradient565" id="linearGradient611" x1="0.10837435" y1="0.94531250" x2="0.76847297" y2="0.28125000" gradientUnits="objectBoundingBox" spreadMethod="pad"/><linearGradient xlink:href="#linearGradient607" id="linearGradient613" x1="0.23529346" y1="0.85156250" x2="0.82805431" y2="0.12499999" gradientUnits="objectBoundingBox" spreadMethod="pad"/><linearGradient xlink:href="#linearGradient565" id="linearGradient615" x1="0.10731713" y1="0.82031238" x2="0.87804890" y2="0.07812499" gradientUnits="objectBoundingBox" spreadMethod="pad"/><linearGradient xlink:href="#linearGradient607" id="linearGradient620"/></defs><g id="left-click"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 3.6677089 0.69866497 C 2.5111219 0.70247797 0.60176688 0.87400498 0.48616554 2.6404201 C 0.36648452 4.20794 0.58434883 5.5470015 1.1224739 6.7127964 C 1.6478125 7.8945497 2.3280327 8.770865 3.7101306 8.791406 C 3.7261892 8.791406 3.7366738 8.791641 3.7525494 8.791406 C 5.1346474 8.770865 5.8148662 7.8945497 6.3402062 6.7127964 C 6.8783313 5.5470015 7.0961985 4.20794 6.9765161 2.6404201 C 6.8609133 0.87400498 4.9515568 0.70247797 3.7949711 0.69866497 C 3.7582543 0.69854407 3.702741 0.69866497 3.6677089 0.69866497 z " id="path742" transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;" d="M 4.9596784 0.75757138 L 4.9596784 4.5604601 " id="path741" transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 2.5836552 0.75683638 C 1.5807894 0.90294429 0.56647766 1.3378565 0.48232843 2.6236796 C 0.42599755 3.3614571 0.43206257 3.9104527 0.52347935 4.5527658 L 2.5836552 4.5527658 L 2.5836552 0.75683638 z " id="path740" transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;" d="M 2.5571164 0.75757138 L 2.5571164 4.5604601 " id="path739" transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.137792;" d="M 0.52620977 4.5687418 L 6.9386881 4.5687418 " id="path738" transform="matrix(0.886947,0.000000,0.000000,0.886947,0.279045,1.170720)"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="0.44536325" y="0.10000575" id="text743" sodipodi:linespacing="100%" transform="matrix(1.288158,0.000000,0.000000,1.288158,0.279045,1.170720)"><tspan x="0.44536325" y="0.10000575" sodipodi:role="line" id="tspan748">click</tspan></text></g><g id="left-drag" transform="translate(0.000000,1.125000e-6)"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 4.2811092,3.6456834 C 3.5204235,3.6481912 2.2646447,3.7610042 2.1886133,4.9227722 C 2.1098991,5.9537272 2.2531880,6.8344255 2.6071123,7.6011667 C 2.9526262,8.3784037 3.4000056,8.9547546 4.3090093,8.9682645 C 4.3195716,8.9682645 4.3264664,8.9684190 4.3369079,8.9682645 C 5.2459115,8.9547546 5.6932901,8.3784037 6.0388055,7.6011667 C 6.3927298,6.8344255 6.5360202,5.9537272 6.4573052,4.9227722 C 6.3812739,3.7610042 5.1254936,3.6481912 4.3648094,3.6456834 C 4.3406607,3.6456039 4.3041493,3.6456834 4.2811092,3.6456834 z " id="path737"/><path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0906254;" d="M 5.1308348,3.6844260 L 5.1308348,6.1855791" id="path736"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 3.5681284,3.6839426 C 2.9085453,3.7800375 2.2414340,4.0660784 2.1860899,4.9117621 C 2.1490409,5.3969969 2.1530295,5.7580703 2.2131543,6.1805185 L 3.5681284,6.1805185 L 3.5681284,3.6839426 z " id="path735"/><path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0906254;" d="M 2.2149502,6.1910258 L 6.4324262,6.1910258" id="path733"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 0.87308887,0.18494458 C 1.9614707,0.76553855 2.1048185,1.7016907 2.2121750,2.6779119 C 2.6396563,2.5147384 2.5518759,2.6983745 2.9793570,2.5352012 C 3.0152194,1.1271410 2.9896720,0.37476438 2.2995828,-0.38186391 C 1.8611988,-0.016212694 1.4403488,0.10428085 0.87308887,0.18494458 z " id="path732" sodipodi:nodetypes="ccccc"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 1.5112588,2.4479293 L 4.3111764,2.3405949 L 2.5176694,3.6888367 L 1.5112588,2.4479293 z " id="path731" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="2.55886233" y="1.00883842" id="text750" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="2.55886245" y="1.00883842" sodipodi:role="line" id="tspan751">drag</tspan></text></g><g id="mid-click"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 3.5020868 1.7911048 C 2.4762557 1.7944862 0.78275968 1.9466216 0.68022768 3.5133391 C 0.57407668 4.9036459 0.76731068 6.0913227 1.2445987 7.125321 C 1.7105457 8.1734737 2.3138647 8.9507193 3.5397118 8.9689372 C 3.5539558 8.9689372 3.5632548 8.9691456 3.5773358 8.9689372 C 4.8031828 8.9507193 5.4065018 8.1734737 5.8724498 7.125321 C 6.3497388 6.0913227 6.5429749 4.9036459 6.4368238 3.5133391 C 6.3342898 1.9466216 4.6407908 1.7944862 3.6149618 1.7911048 C 3.5823958 1.7909978 3.5331588 1.7911048 3.5020868 1.7911048 z " id="path753"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 0.71574468 5.2236579 L 6.4032718 5.2236579 " id="path757"/><text xml:space="preserve" style="font-size:1.3;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="1.24093144" y="1.00938547" id="text765" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="1.24093139" y="1.00938547" sodipodi:role="line" id="tspan766">click</tspan></text><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 2.4989727 1.8559797 L 2.4989727 5.265219 L 4.6627718 5.265219 L 4.6627718 1.8559797 C 3.9666658 1.7238863 3.2453998 1.7238863 2.4989727 1.8559797 z " id="path772" sodipodi:nodetypes="ccccc"/></g><g id="mid-drag" transform="translate(-1.125000e-6,1.125000e-6)"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 4.2312960,3.5918108 C 3.4643678,3.5943388 2.1982835,3.7080776 2.1216282,4.8793802 C 2.0422680,5.9187954 2.1867335,6.8067213 2.5435616,7.5797547 C 2.8919109,8.3633701 3.3429624,8.9444505 4.2594258,8.9580711 C 4.2700748,8.9580711 4.2770261,8.9582270 4.2875525,8.9580711 C 5.2040158,8.9444505 5.6550659,8.3633701 6.0034166,7.5797547 C 6.3602447,6.8067213 6.5047117,5.9187954 6.4253508,4.8793802 C 6.3486955,3.7080776 5.0826097,3.5943388 4.3156823,3.5918108 C 4.2913355,3.5917309 4.2545251,3.5918108 4.2312960,3.5918108 z " id="path758"/><path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0913691;" d="M 2.1481820,6.1580415 L 6.4002675,6.1580415" id="path762"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 2.6941421,0.077840626 C 3.2444435,0.89346617 3.7063783,1.4221344 3.8046827,2.4788033 C 4.1961179,2.3256075 4.1391312,2.6208327 4.5305676,2.4676346 C 4.6094779,1.3820095 4.6609893,0.26064772 4.2105546,-0.46832581 C 3.9270868,0.098242238 3.3768906,0.24398760 2.6941421,0.077840626 z " id="path763" sodipodi:nodetypes="ccccc"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 2.7030627,2.3593309 L 5.5454954,2.2669081 L 4.2415509,3.3675109 L 2.7030627,2.3593309 z " id="path764" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="3.72539061" y="0.98140591" id="text768" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="3.72539067" y="0.98140591" sodipodi:role="line" id="tspan769">drag</tspan></text><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 3.4954917,3.6403128 L 3.4954917,6.1891133 L 5.1131813,6.1891133 L 5.1131813,3.6403128 C 4.5927615,3.5415570 4.0535324,3.5415570 3.4954917,3.6403128 z " id="path773" sodipodi:nodetypes="ccccc"/></g><g id="right-click"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 3.5470928 1.7706068 C 2.5212607 1.7739882 0.82776368 1.9261236 0.72523168 3.4928414 C 0.61908168 4.8831481 0.81231568 6.0708248 1.2896037 7.1048231 C 1.7555517 8.1529757 2.3588707 8.9302211 3.5847188 8.948439 C 3.5989618 8.948439 3.6082608 8.9486483 3.6223418 8.948439 C 4.8481898 8.9302211 5.4515078 8.1529757 5.9174568 7.1048231 C 6.3947448 6.0708248 6.5879819 4.8831481 6.4818299 3.4928414 C 6.3792958 1.9261236 4.6857978 1.7739882 3.6599678 1.7706068 C 3.6274018 1.7705 3.5781648 1.7706068 3.5470928 1.7706068 z " id="path774"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 0.76074868 5.2031601 L 6.4482788 5.2031601 " id="path775"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="2.13629596" y="0.99347234" id="text780" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="2.13629603" y="0.99347234" sodipodi:role="line" id="tspan813">click</tspan></text><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 4.5998098 1.8222014 C 5.4892978 1.9517915 6.3889388 2.3375356 6.4635749 3.4779927 C 6.5135369 4.132363 6.5081579 4.619292 6.4270768 5.1889904 L 4.5998098 5.1889904 L 4.5998098 1.8222014 z " id="path788"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 2.5620557 1.8228546 L 2.5620557 5.1958163 " id="path789"/></g><g id="right-drag" transform="translate(1.125000e-6,1.125000e-6)"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 4.3685855,3.7242673 C 3.6248392,3.7267190 2.3970228,3.8370198 2.3226845,4.9729187 C 2.2457230,5.9809166 2.3858220,6.8420041 2.7318645,7.5916719 C 3.0696846,8.3516015 3.5071027,8.9151187 4.3958651,8.9283270 C 4.4061923,8.9283270 4.4129335,8.9284789 4.4231424,8.9283270 C 5.3119040,8.9151187 5.7493213,8.3516015 6.0871422,7.5916719 C 6.4331854,6.8420041 6.5732851,5.9809166 6.4963237,4.9729187 C 6.4219845,3.8370198 5.1941675,3.7267190 4.4504219,3.7242673 C 4.4268110,3.7241898 4.3911133,3.7242673 4.3685855,3.7242673 z " id="path776"/><path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0886073;" d="M 2.3484358,6.2129311 L 6.4719977,6.2129311" id="path777"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 4.1311923,0.26532657 C 5.1283963,0.70189914 5.7345773,1.4458530 5.6790143,2.6209236 C 6.0994583,2.4561351 6.0854903,2.8238471 6.5059344,2.6590563 C 6.4931134,1.7804446 6.7046664,0.84138473 5.7023623,-0.30709515 C 5.1736773,0.064120851 4.6683523,0.21983456 4.1311923,0.26532657 z " id="path778" sodipodi:nodetypes="ccccc"/><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 4.4887093,2.5180790 L 7.1399773,2.4849831 L 6.2899294,3.7543860 L 4.4887093,2.5180790 z " id="path779" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="0.49732296" y="0.95831662" id="text783" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="0.49732295" y="0.95831662" sodipodi:role="line" id="tspan784">drag</tspan></text><path style="font-size:12;fill-rule:evenodd;stroke-width:1pt;" d="M 5.1310314,3.7616744 C 5.7759272,3.8556295 6.4281828,4.1353010 6.4822960,4.9621532 C 6.5185187,5.4365836 6.5146188,5.7896161 6.4558335,6.2026579 L 5.1310314,6.2026579 L 5.1310314,3.7616744 z " id="path790"/><path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.0886073;" d="M 3.6536224,3.7621480 L 3.6536224,6.2076068" id="path791"/></g><g id="wheel"><path style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" d="M 3.5370048 1.7303644 C 2.5111727 1.7337458 0.81767667 1.8858811 0.71514468 3.4525986 C 0.60899368 4.8429053 0.80222768 6.0305822 1.2795157 7.0645805 C 1.7454637 8.112733 2.3487827 8.8899785 3.5746308 8.9081964 C 3.5888738 8.9081964 3.5981728 8.9084057 3.6122538 8.9081964 C 4.8381018 8.8899785 5.4414198 8.112733 5.9073688 7.0645805 C 6.3846568 6.0305822 6.5778939 4.8429053 6.4717419 3.4525986 C 6.3692078 1.8858811 4.6757098 1.7337458 3.6498798 1.7303644 C 3.6173138 1.7302575 3.5680768 1.7303644 3.5370048 1.7303644 z " id="path792"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 0.75066068 5.1629174 L 2.6033227 5.1629174 " id="path793" sodipodi:nodetypes="cc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="0.97063343" y="0.96223223" id="text794" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="0.97063345" y="0.96223223" sodipodi:role="line" id="tspan795">wheel</tspan></text><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 6.4381888 5.1629174 L 4.5855278 5.1629174 " id="path799" sodipodi:nodetypes="cc"/><rect style="font-size:12;fill:url(#radialGradient568);fill-rule:evenodd;stroke-width:1pt;" id="rect801" width="1.10310698" height="2.92336941" x="3.06589717" y="2.08157873"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 2.0980692 L 4.1477788 2.0980692 " id="path802"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 2.1870294 L 4.1477788 2.1870294 " id="path803"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 2.3115737 L 4.1477788 2.3115737 " id="path804"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 2.5428703 L 4.1477788 2.5428703 " id="path805"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 2.9165032 L 4.1477788 2.9165032 " id="path806"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 3.5214326 L 4.1477788 3.5214326 " id="path807"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 4.9892801 L 4.1477788 4.9892801 " id="path808"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 4.9003199 L 4.1477788 4.9003199 " id="path809"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 4.7757756 L 4.1477788 4.7757756 " id="path810"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 4.544479 L 4.1477788 4.544479 " id="path811"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.064408;" d="M 3.0713508 4.1708461 L 4.1477788 4.1708461 " id="path812"/></g><g id="shift"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" id="rect682" width="14.46854401" height="6.57892704" x="0.03756316" y="0.07391790" ry="0.68839085"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" id="rect683" width="12.71428394" height="5.05001116" x="0.84218349" y="0.77243602" ry="0.38310501"/><text style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;" x="1.37996908" y="4.35733509" id="text685" sodipodi:linespacing="100%"><tspan x="1.37996912" y="4.35733509" sodipodi:role="line" id="tspan692">Shift</tspan></text></g><g id="ctrl"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" id="rect695" width="11.38750172" height="6.57892704" x="0" y="0" ry="0.68839085"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" id="rect696" width="9.74373341" height="5.05001116" x="0.77" y="0.77" ry="0.38310501"/><text style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;" x="1.3" y="4.35733509" id="text697" sodipodi:linespacing="100%"><tspan x="1.3" y="4.35733509" sodipodi:role="line" id="tspan698">Ctrl</tspan></text></g><g id="alt"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" id="rect703" width="9.67487087" height="6.57892704" x="0" y="0" ry="0.68839085"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" id="rect704" width="7.97585612" height="5.05001116" x="0.77" y="0.77" ry="0.38310501"/><text style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;" x="1.3" y="4.35733509" id="text705" sodipodi:linespacing="100%"><tspan x="1.3" y="4.35733509" sodipodi:role="line" id="tspan706">Alt</tspan></text></g><g id="left"><text style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;letter-spacing:-0.3;" x="1.3" y="4.35733509" sodipodi:linespacing="100%"><tspan x="1.3" y="4.35733509" sodipodi:role="line">Left</tspan></text></g><g id="right"><text style="fill:black;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:normal;font-size:4;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;text-anchor:start;writing-mode:lr;letter-spacing:-0.3;" x="1.3" y="4.35733509" sodipodi:linespacing="100%"><tspan x="1.3" y="4.35733509" sodipodi:role="line">Right</tspan></text></g><g id="letterkey"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" id="rect708" width="7.00721359" height="6.57892704" x="0" y="0" ry="0.97501397"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" id="rect709" width="5.07888126" height="5.05001116" x="0.77" y="0.77" ry="0.48707163" rx="0.35459363"/></g><g id="misc-wide"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" width="16.46854401" height="6.57892704" x="0.0" y="0.0" ry="0.68839085"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" width="14.7" height="5.0" x="0.77" y="0.77" ry="0.38310501"/></g><g id="misc"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" width="11.4" height="6.57892704" x="0.0" y="0.0" ry="0.68839085"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" width="9.7" height="5.0" x="0.77" y="0.77" ry="0.38310501"/></g><g id="arrows"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;" id="rect708" width="3.50360680" height="3.28946352" x="3.72818561" y="0.09945580" ry="0.48750699"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;" id="rect709" width="2.53944063" height="2.52500558" x="4.19200130" y="0.44871032" ry="0.24353582" rx="0.17729682"/><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;" id="rect787" width="3.50360680" height="3.28946352" x="3.72818561" y="3.64276290" ry="0.48750699"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;" id="rect788" width="2.53944063" height="2.52500558" x="4.19200130" y="3.99201751" ry="0.24353582" rx="0.17729682"/><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;" id="rect789" width="3.50360680" height="3.28946352" x="-0.00256788" y="3.64276290" ry="0.48750699"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;" id="rect790" width="2.53944063" height="2.52500558" x="0.46125068" y="3.99201751" ry="0.24353582" rx="0.17729682"/><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;" id="rect791" width="3.50360680" height="3.28946352" x="7.45893283" y="3.64276290" ry="0.48750699"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;" id="rect792" width="2.53944063" height="2.52500558" x="7.92275138" y="3.99201751" ry="0.24353582" rx="0.17729682"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="2.21508991" y="6.47878742" id="text796" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="2.21508980" y="6.47878742" sodipodi:role="line" id="tspan797">arrows</tspan></text><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 5.1322313 0.90289456 L 5.1322313 2.6190467 " id="path801" sodipodi:nodetypes="cc"/><path style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;" d="M 4.6182793 1.3212845 L 5.1418233 0.81871946 L 5.6541543 1.3212845 L 4.6182793 1.3212845 z " id="path813" sodipodi:nodetypes="cccc"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 5.1322313 6.0781819 L 5.1322313 4.3620297 " id="path814" sodipodi:nodetypes="cc"/><path style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;" d="M 4.6182793 5.6597919 L 5.1418233 6.162357 L 5.6541543 5.6597919 L 4.6182793 5.6597919 z " id="path815" sodipodi:nodetypes="cccc"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 9.868405 5.2661777 L 8.1522594 5.2661777 " id="path816" sodipodi:nodetypes="cc"/><path style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;" d="M 9.4500205 5.7801297 L 9.952579 5.2565857 L 9.4500205 4.7442547 L 9.4500205 5.7801297 z " id="path817" sodipodi:nodetypes="cccc"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.122214;" d="M 0.76312022 5.2661777 L 2.4792643 5.2661777 " id="path818" sodipodi:nodetypes="cc"/><path style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:0;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;" d="M 1.1815105 5.7801297 L 0.67894514 5.2565857 L 1.1815105 4.7442547 L 1.1815105 5.7801297 z " id="path819" sodipodi:nodetypes="cccc"/></g><g id="up"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke:none;stroke-width:0.0625pt;" id="rect800" width="7.00721359" height="6.57892704" x="-0.00741097" y="0.11458590" ry="0.97501397"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke:none;stroke-width:0.15625;" id="rect802" width="5.07888126" height="5.05001116" x="0.92021832" y="0.81310272" ry="0.48707163" rx="0.35459363"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.244428;" d="M 2.8349462 1.7275401 L 2.8349462 5.1598442 " id="path825" sodipodi:nodetypes="cc"/><path style="font-size:12;fill-rule:evenodd;stroke-width:0;" d="M 1.8070423 2.5643198 L 2.8541302 1.5591899 L 3.8787922 2.5643198 L 1.8070423 2.5643198 z " id="path826" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="1.82973492" y="6.29683936" id="text827" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="1.82973492" y="6.29683924" sodipodi:role="line" id="tspan828">up</tspan></text></g><g id="down"><rect style="font-size:12;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.0625pt;" id="rect839" width="7.00721359" height="6.57892704" x="-0.00740963" y="0.11458590" ry="0.97501397"/><rect style="font-size:12;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625;" id="rect840" width="5.07888126" height="5.05001116" x="0.92021960" y="0.81310272" ry="0.48707163" rx="0.35459363"/><path style="font-size:12;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.244428;" d="M 2.8349477 4.9915303 L 2.8349477 1.5592262 " id="path841" sodipodi:nodetypes="cc"/><path style="font-size:12;fill-rule:evenodd;stroke-width:0;" d="M 1.8070437 4.1547506 L 2.8541317 5.1598805 L 3.8787938 4.1547506 L 1.8070437 4.1547506 z " id="path842" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2;font-weight:normal;stroke-width:1pt;font-family:Bitstream Vera Sans;" x="1.04129975" y="6.29683924" id="text843" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="1.04129970" y="6.29683924" sodipodi:role="line" id="tspan844">down</tspan></text></g><g id="left-arrow"><rect style="font-size:12.000000;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.062500000pt;" id="rect4608" width="7.0072136" height="6.5789270" x="-0.0074096299" y="0.11458590" ry="0.97501397" rx="0.97501397"/><rect style="font-size:12.000000;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625000;" id="rect4609" width="5.0788813" height="5.0500112" x="0.92021960" y="0.81310272" ry="0.48707163" rx="0.35459363"/><path style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24442799;" d="M 1.6924937,3.3980186 L 5.1247978,3.3980185" id="path4610" sodipodi:nodetypes="cc"/><path style="font-size:12.000000;fill-rule:evenodd;stroke-width:0.0000000;" d="M 2.5292733,2.3701144 L 1.5241435,3.4172024 L 2.5292733,4.4418646 L 2.5292733,2.3701144 z " id="path4611" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2000000;font-weight:normal;stroke-width:1.0000000pt;font-family:Bitstream Vera Sans;" x="1.0412997" y="6.2968392" id="text4612" sodipodi:linespacing="100%" transform="matrix(1.288158,0.000000,0.000000,1.288158,0.717169,2.842171e-14)"><tspan x="1.0412997" y="6.2968392" sodipodi:role="line" id="tspan4613">left</tspan></text></g><g id="right-arrow"><rect style="font-size:12.000000;fill:url(#linearGradient615);fill-rule:evenodd;stroke-width:0.062500000pt;" id="rect4598" width="7.0072136" height="6.5789270" x="-0.0074096299" y="0.11458590" ry="0.97501397" rx="0.97501397"/><rect style="font-size:12.000000;fill:url(#linearGradient613);fill-rule:evenodd;stroke-width:0.15625000;" id="rect4599" width="5.0788813" height="5.0500112" x="0.92021960" y="0.81310272" ry="0.48707163" rx="0.35459363"/><path style="font-size:12.000000;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24442799;" d="M 5.1234847,3.4139604 L 1.6911806,3.4139605" id="path4600" sodipodi:nodetypes="cc"/><path style="font-size:12.000000;fill-rule:evenodd;stroke-width:0.0000000;" d="M 4.2867051,4.4418646 L 5.2918349,3.3947766 L 4.2867051,2.3701144 L 4.2867051,4.4418646 z " id="path4601" sodipodi:nodetypes="cccc"/><text xml:space="preserve" style="font-size:1.2000000;font-weight:normal;stroke-width:1.0000000pt;font-family:Bitstream Vera Sans;" x="1.0412997" y="6.2968392" id="text4602" sodipodi:linespacing="100%" transform="scale(1.288158,1.288158)"><tspan x="1.0412997" y="6.2968392" sodipodi:role="line" id="tspan4603">right</tspan></text></g><g transform="translate(0,0)"><rect style="fill:#f5f5f5;fill-rule:evenodd;stroke:none" width="215" height="159" x="0" y="0"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="21" id="sect1"><tspan x="33" y="21" sodipodi:role="line" id="sect-tspan1">Tools</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,27.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="31"><tspan x="25.9" y="31" sodipodi:role="line">F1</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="32.5"><tspan x="32" y="32.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,27.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="32.16851145"><tspan x="57.7" y="32.16851145" sodipodi:role="line">s</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="32.5" id="action1"><tspan x="67" y="32.5" sodipodi:role="line" id="action-tspan1">Selector</tspan></text>
<use xlink:href="#misc-wide" transform="translate(46.54,35.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="39.2"><tspan x="47.64" y="39.2" sodipodi:role="line">Space</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="40.5" id="action2"><tspan x="67" y="40.5" sodipodi:role="line" id="action-tspan2">Selector (temporary)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="45.5" id="note1"><tspan x="8" y="45.5" sodipodi:role="line" id="note-tspan1">Space switches to the Selector tool temporarily; another Space switches back.</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,47.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="51"><tspan x="25.9" y="51" sodipodi:role="line">F2</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="52.5"><tspan x="32" y="52.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,47.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="52.16851145"><tspan x="57.7" y="52.16851145" sodipodi:role="line">n</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="52.5" id="action3"><tspan x="67" y="52.5" sodipodi:role="line" id="action-tspan3">Node tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,55.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="59"><tspan x="25.9" y="59" sodipodi:role="line">F3</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="60.5"><tspan x="32" y="60.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,55.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="60.16851145"><tspan x="57.7" y="60.16851145" sodipodi:role="line">z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="60.5" id="action4"><tspan x="67" y="60.5" sodipodi:role="line" id="action-tspan4">Zoom tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,63.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="67"><tspan x="25.9" y="67" sodipodi:role="line">F4</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="68.5"><tspan x="32" y="68.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,63.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="68.16851145"><tspan x="57.7" y="68.16851145" sodipodi:role="line">r</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="68.5" id="action5"><tspan x="67" y="68.5" sodipodi:role="line" id="action-tspan5">Rectangle tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,71.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="75"><tspan x="25.9" y="75" sodipodi:role="line">F5</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="76.5"><tspan x="32" y="76.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,71.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="76.16851145"><tspan x="57.7" y="76.16851145" sodipodi:role="line">e</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="76.5" id="action6"><tspan x="67" y="76.5" sodipodi:role="line" id="action-tspan6">Ellipse/arc tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,79.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="83"><tspan x="25.9" y="83" sodipodi:role="line">F6</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="84.5"><tspan x="32" y="84.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,79.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="84.16851145"><tspan x="57.7" y="84.16851145" sodipodi:role="line">p</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="84.5" id="action7"><tspan x="67" y="84.5" sodipodi:role="line" id="action-tspan7">Freehand (Pencil) tool</tspan></text>
<use xlink:href="#shift" transform="translate(9.54,87.5)"/><use xlink:href="#letterkey" transform="translate(25,87.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="91"><tspan x="25.9" y="91" sodipodi:role="line">F6</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="92.5"><tspan x="32" y="92.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,87.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="92.16851145"><tspan x="57.7" y="92.16851145" sodipodi:role="line">b</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="92.5" id="action8"><tspan x="67" y="92.5" sodipodi:role="line" id="action-tspan8">Bezier (Pen) tool</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,95.5)"/><use xlink:href="#letterkey" transform="translate(25,95.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="99"><tspan x="25.9" y="99" sodipodi:role="line">F6</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="100.5"><tspan x="32" y="100.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,95.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="100.16851145"><tspan x="57.7" y="100.16851145" sodipodi:role="line">c</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="100.5" id="action9"><tspan x="67" y="100.5" sodipodi:role="line" id="action-tspan9">Calligraphic tool</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,103.5)"/><use xlink:href="#letterkey" transform="translate(25,103.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="107"><tspan x="25.9" y="107" sodipodi:role="line">F1</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="108.5"><tspan x="32" y="108.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,103.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="108.16851145"><tspan x="57.7" y="108.16851145" sodipodi:role="line">g</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="108.5" id="action10"><tspan x="67" y="108.5" sodipodi:role="line" id="action-tspan10">Gradient tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,111.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="115"><tspan x="25.9" y="115" sodipodi:role="line">F7</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="116.5"><tspan x="32" y="116.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,111.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="116.16851145"><tspan x="57.7" y="116.16851145" sodipodi:role="line">d</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="116.5" id="action11"><tspan x="67" y="116.5" sodipodi:role="line" id="action-tspan11">Dropper tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,119.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="123"><tspan x="25.9" y="123" sodipodi:role="line">F8</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="124.5"><tspan x="32" y="124.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,119.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="124.16851145"><tspan x="57.7" y="124.16851145" sodipodi:role="line">t</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="124.5" id="action12"><tspan x="67" y="124.5" sodipodi:role="line" id="action-tspan12">Text tool</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,127.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="131"><tspan x="25.9" y="131" sodipodi:role="line">F9</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="132.5"><tspan x="32" y="132.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,127.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="132.16851145"><tspan x="57.7" y="132.16851145" sodipodi:role="line">i</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="132.5" id="action13"><tspan x="67" y="132.5" sodipodi:role="line" id="action-tspan13">Spiral tool</tspan></text>
<use xlink:href="#shift" transform="translate(9.54,135.5)"/><use xlink:href="#letterkey" transform="translate(25,135.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="139"><tspan x="25.9" y="139" sodipodi:role="line">F9</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="140.5"><tspan x="32" y="140.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,135.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="140.16851145"><tspan x="57.7" y="140.16851145" sodipodi:role="line">*</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="140.5" id="action14"><tspan x="67" y="140.5" sodipodi:role="line" id="action-tspan14">Star tool</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,143.5)"/><use xlink:href="#letterkey" transform="translate(25,143.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="147"><tspan x="25.9" y="147" sodipodi:role="line">F2</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="148.5"><tspan x="32" y="148.5" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,143.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="148.16851145"><tspan x="57.7" y="148.16851145" sodipodi:role="line">o</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="148.5" id="action15"><tspan x="67" y="148.5" sodipodi:role="line" id="action-tspan15">Connector tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="153.5" id="note2"><tspan x="8" y="153.5" sodipodi:role="line" id="note-tspan2">Double click on the tool buttons opens the Preferences dialog showing the page of the corresponding tool.</tspan></text>
<rect style="fill:#f0eae7;fill-rule:evenodd;stroke:none" width="215" height="243" x="0" y="159"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="180" id="sect2"><tspan x="33" y="180" sodipodi:role="line" id="sect-tspan2">Dialogs</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,186.5)"/><use xlink:href="#ctrl" transform="translate(43.62,186.5)"/><use xlink:href="#letterkey" transform="translate(56,186.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="191.16851145"><tspan x="57.7" y="191.16851145" sodipodi:role="line">F</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="191.5" id="action16"><tspan x="67" y="191.5" sodipodi:role="line" id="action-tspan16">Fill and Stroke</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,194.5)"/><use xlink:href="#ctrl" transform="translate(43.62,194.5)"/><use xlink:href="#letterkey" transform="translate(56,194.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="199.16851145"><tspan x="57.7" y="199.16851145" sodipodi:role="line">W</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="199.5" id="action17"><tspan x="67" y="199.5" sodipodi:role="line" id="action-tspan17">Swatches</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,202.5)"/><use xlink:href="#ctrl" transform="translate(43.62,202.5)"/><use xlink:href="#letterkey" transform="translate(56,202.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="207.16851145"><tspan x="57.7" y="207.16851145" sodipodi:role="line">T</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="207.5" id="action18"><tspan x="67" y="207.5" sodipodi:role="line" id="action-tspan18">Text and Font</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,210.5)"/><use xlink:href="#ctrl" transform="translate(43.62,210.5)"/><use xlink:href="#letterkey" transform="translate(56,210.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="215.16851145"><tspan x="57.7" y="215.16851145" sodipodi:role="line">M</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="215.5" id="action19"><tspan x="67" y="215.5" sodipodi:role="line" id="action-tspan19">Transform</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,218.5)"/><use xlink:href="#ctrl" transform="translate(43.62,218.5)"/><use xlink:href="#letterkey" transform="translate(56,218.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="223.16851145"><tspan x="57.7" y="223.16851145" sodipodi:role="line">L</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="223.5" id="action20"><tspan x="67" y="223.5" sodipodi:role="line" id="action-tspan20">Layers</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,226.5)"/><use xlink:href="#ctrl" transform="translate(43.62,226.5)"/><use xlink:href="#letterkey" transform="translate(56,226.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="231.16851145"><tspan x="57.7" y="231.16851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="231.5" id="action21"><tspan x="67" y="231.5" sodipodi:role="line" id="action-tspan21">Align and Distribute</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,234.5)"/><use xlink:href="#ctrl" transform="translate(43.62,234.5)"/><use xlink:href="#letterkey" transform="translate(56,234.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="239.16851145"><tspan x="57.7" y="239.16851145" sodipodi:role="line">O</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="239.5" id="action22"><tspan x="67" y="239.5" sodipodi:role="line" id="action-tspan22">Object Properties</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,242.5)"/><use xlink:href="#ctrl" transform="translate(43.62,242.5)"/><use xlink:href="#letterkey" transform="translate(56,242.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="247.16851145"><tspan x="57.7" y="247.16851145" sodipodi:role="line">X</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="247.5" id="action23"><tspan x="67" y="247.5" sodipodi:role="line" id="action-tspan23">XML Editor</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,250.5)"/><use xlink:href="#ctrl" transform="translate(43.62,250.5)"/><use xlink:href="#letterkey" transform="translate(56,250.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="255.16851145"><tspan x="57.7" y="255.16851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="255.5" id="action24"><tspan x="67" y="255.5" sodipodi:role="line" id="action-tspan24">Document Preferences</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,258.5)"/><use xlink:href="#ctrl" transform="translate(43.62,258.5)"/><use xlink:href="#letterkey" transform="translate(56,258.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="263.16851145"><tspan x="57.7" y="263.16851145" sodipodi:role="line">P</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="263.5" id="action25"><tspan x="67" y="263.5" sodipodi:role="line" id="action-tspan25">Inkscape Preferences</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,266.5)"/><use xlink:href="#ctrl" transform="translate(43.62,266.5)"/><use xlink:href="#letterkey" transform="translate(56,266.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="271.16851145"><tspan x="57.7" y="271.16851145" sodipodi:role="line">E</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="271.5" id="action26"><tspan x="67" y="271.5" sodipodi:role="line" id="action-tspan26">Export to PNG</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,274.5)"/><use xlink:href="#letterkey" transform="translate(56,274.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="279.16851145"><tspan x="57.7" y="279.16851145" sodipodi:role="line">F</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="279.5" id="action27"><tspan x="67" y="279.5" sodipodi:role="line" id="action-tspan27">Find</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,282.5)"/><use xlink:href="#alt" transform="translate(45.33,282.5)"/><use xlink:href="#letterkey" transform="translate(56,282.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="287.16851145"><tspan x="57.7" y="287.16851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="287.5" id="action28"><tspan x="67" y="287.5" sodipodi:role="line" id="action-tspan28">Trace bitmap</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="292.5" id="note3"><tspan x="8" y="292.5" sodipodi:role="line" id="note-tspan3">These open a new dialog window if it wasn't open yet, otherwise the corresponding dialog gets focus.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="301.5" id="title1"><tspan x="33" y="301.5" sodipodi:role="line" id="title-tspan1">Toggle visibility</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,304.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="56.9" y="308"><tspan x="56.9" y="308" sodipodi:role="line">F12</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="309.5" id="action29"><tspan x="67" y="309.5" sodipodi:role="line" id="action-tspan29">toggle dialogs</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="314.5" id="note4"><tspan x="8" y="314.5" sodipodi:role="line" id="note-tspan4">This temporarily hides all open dialogs; another F12 shows them again.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="323.5" id="title2"><tspan x="33" y="323.5" sodipodi:role="line" id="title-tspan2">Within a dialog</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,326.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="330.2"><tspan x="52.72" y="330.2" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="331.5" id="action30"><tspan x="67" y="331.5" sodipodi:role="line" id="action-tspan30">return to the canvas</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,334.5)"/><use xlink:href="#letterkey" transform="translate(25,334.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="338"><tspan x="25.9" y="338" sodipodi:role="line">F4</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="339.5"><tspan x="32" y="339.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,334.5)"/><use xlink:href="#letterkey" transform="translate(56,334.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="339.16851145"><tspan x="57.7" y="339.16851145" sodipodi:role="line">W</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="339.5" id="action31"><tspan x="67" y="339.5" sodipodi:role="line" id="action-tspan31">close the dialog</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,342.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="346.2"><tspan x="52.72" y="346.2" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="347.5" id="action32"><tspan x="67" y="347.5" sodipodi:role="line" id="action-tspan32">jump to next widget</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,350.5)"/><use xlink:href="#misc" transform="translate(51.62,350.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="354.2"><tspan x="52.72" y="354.2" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="355.5" id="action33"><tspan x="67" y="355.5" sodipodi:role="line" id="action-tspan33">jump to previous widget</tspan></text>
<use xlink:href="#misc-wide" transform="translate(46.54,358.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="362.2"><tspan x="47.64" y="362.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="363.5" id="action34"><tspan x="67" y="363.5" sodipodi:role="line" id="action-tspan34">set the new value</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="368.5" id="note5"><tspan x="8" y="368.5" sodipodi:role="line" id="note-tspan5">This accepts the new value you typed in a text field and returns focus to canvas.</tspan></text>
<use xlink:href="#ctrl" transform="translate(34.16,370.5)"/><use xlink:href="#misc-wide" transform="translate(46.54,370.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="374.2"><tspan x="47.64" y="374.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="375.5" id="action35"><tspan x="67" y="375.5" sodipodi:role="line" id="action-tspan35">in XML Editor, set the attr value</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="380.5" id="note6"><tspan x="8" y="380.5" sodipodi:role="line" id="note-tspan6">When editing an attribute value in XML Editor, this sets the new value (same as clicking the "Set attribute" button).</tspan></text>
<use xlink:href="#misc-wide" transform="translate(15.54,382.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="16.64" y="386.2"><tspan x="16.64" y="386.2" sodipodi:role="line">Space</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="387.5"><tspan x="32" y="387.5" sodipodi:role="line">,</tspan></text><use xlink:href="#misc-wide" transform="translate(46.54,382.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="386.2"><tspan x="47.64" y="386.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="387.5" id="action36"><tspan x="67" y="387.5" sodipodi:role="line" id="action-tspan36">activate current button or list</tspan></text>
<use xlink:href="#ctrl" transform="translate(8.24,390.5)"/><use xlink:href="#misc" transform="translate(20.62,390.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="394.2"><tspan x="21.72" y="394.2" sodipodi:role="line">PgUp</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="395.5"><tspan x="32" y="395.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(39.24,390.5)"/><use xlink:href="#misc" transform="translate(51.62,390.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="394.2"><tspan x="52.72" y="394.2" sodipodi:role="line">PgDn</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="395.5" id="action37"><tspan x="67" y="395.5" sodipodi:role="line" id="action-tspan37">in a multi-tab dialog, switch tabs</tspan></text>
<rect style="fill:#f8f3e9;fill-rule:evenodd;stroke:none" width="215" height="128.5" x="0" y="402"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="423" id="sect3"><tspan x="33" y="423" sodipodi:role="line" id="sect-tspan3">Controls bar</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="431.5" id="note7"><tspan x="8" y="431.5" sodipodi:role="line" id="note-tspan7">The Controls bar at the top of the document window provides different buttons and controls for each tool.</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,433.5)"/><use xlink:href="#letterkey" transform="translate(56,433.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="438.16851145"><tspan x="57.7" y="438.16851145" sodipodi:role="line">X</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="438.5" id="action38"><tspan x="67" y="438.5" sodipodi:role="line" id="action-tspan38">jump to the first editable field</tspan></text>
<use xlink:href="#misc-wide" transform="translate(46.54,441.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="445.2"><tspan x="47.64" y="445.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="446.5" id="action39"><tspan x="67" y="446.5" sodipodi:role="line" id="action-tspan39">accept the new value</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="451.5" id="note8"><tspan x="8" y="451.5" sodipodi:role="line" id="note-tspan8">This accepts the new value you typed in a text field and returns focus to canvas.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,453.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="457.2"><tspan x="52.72" y="457.2" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="458.5" id="action40"><tspan x="67" y="458.5" sodipodi:role="line" id="action-tspan40">cancel changes, return to canvas</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="463.5" id="note9"><tspan x="8" y="463.5" sodipodi:role="line" id="note-tspan9">This cancels any changes you made in a text field and returns focus to canvas.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,465.5)"/><use xlink:href="#letterkey" transform="translate(56,465.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="470.16851145"><tspan x="57.7" y="470.16851145" sodipodi:role="line">Z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="470.5" id="action41"><tspan x="67" y="470.5" sodipodi:role="line" id="action-tspan41">cancel changes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="475.5" id="note10"><tspan x="8" y="475.5" sodipodi:role="line" id="note-tspan10">This cancels any changes you made in a text field but you stay in the field.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,477.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="481.2"><tspan x="52.72" y="481.2" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="482.5" id="action42"><tspan x="67" y="482.5" sodipodi:role="line" id="action-tspan42">jump to next field</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,485.5)"/><use xlink:href="#misc" transform="translate(51.62,485.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="489.2"><tspan x="52.72" y="489.2" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="490.5" id="action43"><tspan x="67" y="490.5" sodipodi:role="line" id="action-tspan43">jump to previous field</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="495.5" id="note11"><tspan x="8" y="495.5" sodipodi:role="line" id="note-tspan11">Use these to navigate between fields in the Controls bar (the value in the field you leave, if changed, is accepted).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="504.5" id="title3"><tspan x="33" y="504.5" sodipodi:role="line" id="title-tspan3">Changing values</tspan></text>
<use xlink:href="#up" transform="translate(25,508)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="513"><tspan x="32" y="513" sodipodi:role="line">,</tspan></text><use xlink:href="#down" transform="translate(56,508)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="513" id="action44"><tspan x="67" y="513" sodipodi:role="line" id="action-tspan44">change value by 0.1</tspan></text>
<use xlink:href="#misc" transform="translate(20.62,519)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="522.7"><tspan x="21.72" y="522.7" sodipodi:role="line">PgUp</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="524"><tspan x="32" y="524" sodipodi:role="line">,</tspan></text><use xlink:href="#misc" transform="translate(51.62,519)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="522.7"><tspan x="52.72" y="522.7" sodipodi:role="line">PgDn</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="524" id="action45"><tspan x="67" y="524" sodipodi:role="line" id="action-tspan45">change value by 5.0</tspan></text>
<rect style="fill:#e5f1e7;fill-rule:evenodd;stroke:none" width="215" height="333" x="0" y="530.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="551.5" id="sect4"><tspan x="33" y="551.5" sodipodi:role="line" id="sect-tspan4">Canvas</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="562" id="title4"><tspan x="33" y="562" sodipodi:role="line" id="title-tspan4">Zoom</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,565)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="569.66851145"><tspan x="26.7" y="569.66851145" sodipodi:role="line">=</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="570"><tspan x="32" y="570" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,565)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="569.66851145"><tspan x="57.7" y="569.66851145" sodipodi:role="line">+</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="570" id="action46"><tspan x="67" y="570" sodipodi:role="line" id="action-tspan46">zoom in</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,573)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="577.66851145"><tspan x="57.7" y="577.66851145" sodipodi:role="line">-</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="578" id="action47"><tspan x="67" y="578" sodipodi:role="line" id="action-tspan47">zoom out</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="583" id="note12"><tspan x="8" y="583" sodipodi:role="line" id="note-tspan12">The keypad +/- keys do zooming even when you are editing a text object, unless NumLock is on.</tspan></text>
<use xlink:href="#mid-click" transform="translate(26,585.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32.6" y="590.5"><tspan x="32.6" y="590.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(44.62,585.5)"/><use xlink:href="#right-click" transform="translate(57,585.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="590.5" id="action48"><tspan x="67" y="590.5" sodipodi:role="line" id="action-tspan48">zoom in</tspan></text>
<use xlink:href="#shift" transform="translate(10.54,597)"/><use xlink:href="#mid-click" transform="translate(26,597)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32.6" y="602"><tspan x="32.6" y="602" sodipodi:role="line">,</tspan></text><use xlink:href="#shift" transform="translate(41.54,597)"/><use xlink:href="#right-click" transform="translate(57,597)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="602" id="action49"><tspan x="67" y="602" sodipodi:role="line" id="action-tspan49">zoom out</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,608.5)"/><use xlink:href="#wheel" transform="translate(57,608.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="613.5" id="action50"><tspan x="67" y="613.5" sodipodi:role="line" id="action-tspan50">zoom in or out</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,620)"/><use xlink:href="#mid-drag" transform="translate(57,620)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="625" id="action51"><tspan x="67" y="625" sodipodi:role="line" id="action-tspan51">zoom into the area</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,631)"/><use xlink:href="#letterkey" transform="translate(56,631)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="635.66851145"><tspan x="57.7" y="635.66851145" sodipodi:role="line">Z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="636" id="action52"><tspan x="67" y="636" sodipodi:role="line" id="action-tspan52">activate zoom field</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="641" id="note13"><tspan x="8" y="641" sodipodi:role="line" id="note-tspan13">The zoom field in the lower left corner of the window allows you to specify zoom level precisely.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="650" id="title5"><tspan x="33" y="650" sodipodi:role="line" id="title-tspan5">Preset zooms</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,653)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="657.66851145"><tspan x="57.7" y="657.66851145" sodipodi:role="line">1</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="658" id="action53"><tspan x="67" y="658" sodipodi:role="line" id="action-tspan53">zoom 1:1</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,661)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="665.66851145"><tspan x="57.7" y="665.66851145" sodipodi:role="line">2</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="666" id="action54"><tspan x="67" y="666" sodipodi:role="line" id="action-tspan54">zoom 1:2</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,669)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="673.66851145"><tspan x="57.7" y="673.66851145" sodipodi:role="line">3</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="674" id="action55"><tspan x="67" y="674" sodipodi:role="line" id="action-tspan55">zoom to selection</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,677)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="681.66851145"><tspan x="57.7" y="681.66851145" sodipodi:role="line">4</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="682" id="action56"><tspan x="67" y="682" sodipodi:role="line" id="action-tspan56">zoom to drawing</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,685)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="689.66851145"><tspan x="57.7" y="689.66851145" sodipodi:role="line">5</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="690" id="action57"><tspan x="67" y="690" sodipodi:role="line" id="action-tspan57">zoom to page</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,693)"/><use xlink:href="#letterkey" transform="translate(25,693)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="697.66851145"><tspan x="26.7" y="697.66851145" sodipodi:role="line">E</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="698"><tspan x="32" y="698" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,693)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="697.66851145"><tspan x="57.7" y="697.66851145" sodipodi:role="line">6</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="698" id="action58"><tspan x="67" y="698" sodipodi:role="line" id="action-tspan58">zoom to page width</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="708" id="title6"><tspan x="33" y="708" sodipodi:role="line" id="title-tspan6">Zoom history</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,711)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="715.66851145"><tspan x="57.7" y="715.66851145" sodipodi:role="line">`</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="716" id="action59"><tspan x="67" y="716" sodipodi:role="line" id="action-tspan59">(back quote) previous zoom </tspan></text>
<use xlink:href="#shift" transform="translate(40.54,719)"/><use xlink:href="#letterkey" transform="translate(56,719)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="723.66851145"><tspan x="57.7" y="723.66851145" sodipodi:role="line">`</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="724" id="action60"><tspan x="67" y="724" sodipodi:role="line" id="action-tspan60">next zoom</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="729" id="note14"><tspan x="8" y="729" sodipodi:role="line" id="note-tspan14">With these keys, you can travel back and forth through the history of zooms in this session</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="738" id="title7"><tspan x="33" y="738" sodipodi:role="line" id="title-tspan7">Scrolling (panning)</tspan></text>
<use xlink:href="#ctrl" transform="translate(39.24,741.5)"/><use xlink:href="#arrows" transform="translate(51.62,741.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="746.5" id="action61"><tspan x="67" y="746.5" sodipodi:role="line" id="action-tspan61">scroll canvas</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="754.5" id="note15"><tspan x="8" y="754.5" sodipodi:role="line" id="note-tspan15">Scrolling by keys is accelerated, i.e. it speeds up when you press Ctrl+arrows in quick succession, or press and hold.</tspan></text>
<use xlink:href="#mid-drag" transform="translate(57,757)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="762" id="action62"><tspan x="67" y="762" sodipodi:role="line" id="action-tspan62">pan canvas</tspan></text>
<use xlink:href="#shift" transform="translate(10.54,768.5)"/><use xlink:href="#right-drag" transform="translate(26,768.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32.6" y="773.5"><tspan x="32.6" y="773.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(44.62,768.5)"/><use xlink:href="#right-drag" transform="translate(57,768.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="773.5" id="action63"><tspan x="67" y="773.5" sodipodi:role="line" id="action-tspan63">pan canvas</tspan></text>
<use xlink:href="#wheel" transform="translate(57,780)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="785" id="action64"><tspan x="67" y="785" sodipodi:role="line" id="action-tspan64">scroll canvas vertically</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,791.5)"/><use xlink:href="#wheel" transform="translate(57,791.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="796.5" id="action65"><tspan x="67" y="796.5" sodipodi:role="line" id="action-tspan65">scroll canvas horizontally</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="809.5" id="title8"><tspan x="33" y="809.5" sodipodi:role="line" id="title-tspan8">Guides and grid</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,813)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="818" id="action66"><tspan x="67" y="818" sodipodi:role="line" id="action-tspan66">drag off a ruler to create guide</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="826" id="note16"><tspan x="8" y="826" sodipodi:role="line" id="note-tspan16">Drag off the horizontal or vertical ruler to create a new guideline. Drag a guideline onto the ruler to delete it.</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,828)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="832.66851145"><tspan x="26.7" y="832.66851145" sodipodi:role="line">|</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="833"><tspan x="32" y="833" sodipodi:role="line">,</tspan></text><use xlink:href="#shift" transform="translate(40.54,828)"/><use xlink:href="#letterkey" transform="translate(56,828)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="832.66851145"><tspan x="57.7" y="832.66851145" sodipodi:role="line">\</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="833" id="action67"><tspan x="67" y="833" sodipodi:role="line" id="action-tspan67">toggle guides and snapping to guides</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="838" id="note17"><tspan x="8" y="838" sodipodi:role="line" id="note-tspan17">If you want to have different values for guides visibility and snapping, set them via the Document Options dialog.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="842" id="note18"><tspan x="8" y="842" sodipodi:role="line" id="note-tspan18">When you create a new guide by dragging off the ruler, guide visibility and snapping are turned on.</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,844)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="848.66851145"><tspan x="26.7" y="848.66851145" sodipodi:role="line">#</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="849"><tspan x="32" y="849" sodipodi:role="line">,</tspan></text><use xlink:href="#shift" transform="translate(40.54,844)"/><use xlink:href="#letterkey" transform="translate(56,844)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="848.66851145"><tspan x="57.7" y="848.66851145" sodipodi:role="line">3</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="849" id="action68"><tspan x="67" y="849" sodipodi:role="line" id="action-tspan68">toggle grid and snapping to grid</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="854" id="note19"><tspan x="8" y="854" sodipodi:role="line" id="note-tspan19">If you want to have different values for grid visibility and snapping, set them via the Document Options dialog.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="858" id="note20"><tspan x="8" y="858" sodipodi:role="line" id="note-tspan20">Note that only the 3 key on the main keyboard works, not on the keypad.</tspan></text>
<rect style="fill:#efcfdf;fill-rule:evenodd;stroke:none" width="215" height="89" x="0" y="863.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="884.5" id="sect5"><tspan x="33" y="884.5" sodipodi:role="line" id="sect-tspan5">Palette</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="893" id="note21"><tspan x="8" y="893" sodipodi:role="line" id="note-tspan21">These keys work both in the floating palette dialog and in the palette frame at the bottom of the window.</tspan></text>
<use xlink:href="#left-click" transform="translate(57,895.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="900.5" id="action69"><tspan x="67" y="900.5" sodipodi:role="line" id="action-tspan69">set fill color on selection</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,907)"/><use xlink:href="#left-click" transform="translate(57,907)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="912" id="action70"><tspan x="67" y="912" sodipodi:role="line" id="action-tspan70">set stroke color on selection</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,918.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="923.5" id="action71"><tspan x="67" y="923.5" sodipodi:role="line" id="action-tspan71">drag fill color to objects</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,930)"/><use xlink:href="#left-drag" transform="translate(57,930)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="935" id="action72"><tspan x="67" y="935" sodipodi:role="line" id="action-tspan72">drag stroke color to objects</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="943" id="note22"><tspan x="8" y="943" sodipodi:role="line" id="note-tspan22">To change fill/stroke of an object by dragging color on it, that object need not be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="947" id="note23"><tspan x="8" y="947" sodipodi:role="line" id="note-tspan23">You can also drag colors to the Fill (F) and Stroke (S) indicators in the statusbar to change the selection.</tspan></text>
</g><g transform="translate(215,-952.5)"><rect style="fill:#f3f2e2;fill-rule:evenodd;stroke:none" width="215" height="95" x="0" y="952.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="973.5" id="sect1"><tspan x="33" y="973.5" sodipodi:role="line" id="sect-tspan1">File</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,980)"/><use xlink:href="#letterkey" transform="translate(56,980)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="984.66851145"><tspan x="57.7" y="984.66851145" sodipodi:role="line">N</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="985" id="action73"><tspan x="67" y="985" sodipodi:role="line" id="action-tspan73">create new document</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,988)"/><use xlink:href="#letterkey" transform="translate(56,988)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="992.66851145"><tspan x="57.7" y="992.66851145" sodipodi:role="line">O</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="993" id="action74"><tspan x="67" y="993" sodipodi:role="line" id="action-tspan74">open an SVG document</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,996)"/><use xlink:href="#ctrl" transform="translate(43.62,996)"/><use xlink:href="#letterkey" transform="translate(56,996)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1000.66851145"><tspan x="57.7" y="1000.66851145" sodipodi:role="line">E</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1001" id="action75"><tspan x="67" y="1001" sodipodi:role="line" id="action-tspan75">export to PNG</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1004)"/><use xlink:href="#letterkey" transform="translate(56,1004)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1008.66851145"><tspan x="57.7" y="1008.66851145" sodipodi:role="line">I</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1009" id="action76"><tspan x="67" y="1009" sodipodi:role="line" id="action-tspan76">import bitmap or SVG</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1012)"/><use xlink:href="#letterkey" transform="translate(56,1012)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1016.66851145"><tspan x="57.7" y="1016.66851145" sodipodi:role="line">P</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1017" id="action77"><tspan x="67" y="1017" sodipodi:role="line" id="action-tspan77">print document</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1020)"/><use xlink:href="#letterkey" transform="translate(56,1020)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1024.66851145"><tspan x="57.7" y="1024.66851145" sodipodi:role="line">S</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1025" id="action78"><tspan x="67" y="1025" sodipodi:role="line" id="action-tspan78">save document</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,1028)"/><use xlink:href="#ctrl" transform="translate(43.62,1028)"/><use xlink:href="#letterkey" transform="translate(56,1028)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1032.66851145"><tspan x="57.7" y="1032.66851145" sodipodi:role="line">S</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1033" id="action79"><tspan x="67" y="1033" sodipodi:role="line" id="action-tspan79">save under a new name</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1036)"/><use xlink:href="#letterkey" transform="translate(56,1036)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1040.66851145"><tspan x="57.7" y="1040.66851145" sodipodi:role="line">Q</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1041" id="action80"><tspan x="67" y="1041" sodipodi:role="line" id="action-tspan80">exit Inkscape</tspan></text>
<rect style="fill:#e8fae1;fill-rule:evenodd;stroke:none" width="215" height="113" x="0" y="1047.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="1068.5" id="sect2"><tspan x="33" y="1068.5" sodipodi:role="line" id="sect-tspan2">Window</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1075)"/><use xlink:href="#letterkey" transform="translate(56,1075)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1079.66851145"><tspan x="57.7" y="1079.66851145" sodipodi:role="line">R</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1080" id="action81"><tspan x="67" y="1080" sodipodi:role="line" id="action-tspan81">toggle rulers</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1083)"/><use xlink:href="#letterkey" transform="translate(56,1083)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1087.66851145"><tspan x="57.7" y="1087.66851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1088" id="action82"><tspan x="67" y="1088" sodipodi:role="line" id="action-tspan82">toggle scrollbars</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,1091)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="56.9" y="1094.5"><tspan x="56.9" y="1094.5" sodipodi:role="line">F11</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1096" id="action83"><tspan x="67" y="1096" sodipodi:role="line" id="action-tspan83">toggle fullscreen</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,1102)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="56.9" y="1105.5"><tspan x="56.9" y="1105.5" sodipodi:role="line">F10</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1107" id="action84"><tspan x="67" y="1107" sodipodi:role="line" id="action-tspan84">main menu</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1112" id="note24"><tspan x="8" y="1112" sodipodi:role="line" id="note-tspan24">Menus can also be activated by Alt with the letter underscored in the menu name.</tspan></text>
<use xlink:href="#shift" transform="translate(9.54,1114)"/><use xlink:href="#letterkey" transform="translate(25,1114)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="1117.5"><tspan x="25.9" y="1117.5" sodipodi:role="line">F10</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1119"><tspan x="32" y="1119" sodipodi:role="line">,</tspan></text><use xlink:href="#right-click" transform="translate(57,1114)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1119" id="action85"><tspan x="67" y="1119" sodipodi:role="line" id="action-tspan85">drop-down (context) menu</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,1125)"/><use xlink:href="#letterkey" transform="translate(25,1125)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.3;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="25.9" y="1128.5"><tspan x="25.9" y="1128.5" sodipodi:role="line">F4</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1130"><tspan x="32" y="1130" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,1125)"/><use xlink:href="#letterkey" transform="translate(56,1125)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1129.66851145"><tspan x="57.7" y="1129.66851145" sodipodi:role="line">W</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1130" id="action86"><tspan x="67" y="1130" sodipodi:role="line" id="action-tspan86">close document window</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1135" id="note25"><tspan x="8" y="1135" sodipodi:role="line" id="note-tspan25">This shuts down Inkscape if it was the only document window open.</tspan></text>
<use xlink:href="#ctrl" transform="translate(39.24,1137)"/><use xlink:href="#misc" transform="translate(51.62,1137)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1140.7"><tspan x="52.72" y="1140.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1142" id="action87"><tspan x="67" y="1142" sodipodi:role="line" id="action-tspan87">next document window</tspan></text>
<use xlink:href="#shift" transform="translate(23.78,1145)"/><use xlink:href="#ctrl" transform="translate(39.24,1145)"/><use xlink:href="#misc" transform="translate(51.62,1145)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1148.7"><tspan x="52.72" y="1148.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1150" id="action88"><tspan x="67" y="1150" sodipodi:role="line" id="action-tspan88">previous document window</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1155" id="note26"><tspan x="8" y="1155" sodipodi:role="line" id="note-tspan26">These cycle through the active document windows forward and backward.</tspan></text>
<rect style="fill:#f6f9d9;fill-rule:evenodd;stroke:none" width="215" height="87" x="0" y="1160.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="1181.5" id="sect3"><tspan x="33" y="1181.5" sodipodi:role="line" id="sect-tspan3">Layers</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,1188)"/><use xlink:href="#misc" transform="translate(51.62,1188)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1191.7"><tspan x="52.72" y="1191.7" sodipodi:role="line">PgUp</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1193" id="action89"><tspan x="67" y="1193" sodipodi:role="line" id="action-tspan89">move to layer above</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,1196)"/><use xlink:href="#misc" transform="translate(51.62,1196)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1199.7"><tspan x="52.72" y="1199.7" sodipodi:role="line">PgDn</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1201" id="action90"><tspan x="67" y="1201" sodipodi:role="line" id="action-tspan90">move to layer below</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1206" id="note27"><tspan x="8" y="1206" sodipodi:role="line" id="note-tspan27">These commands move the selected objects from one layer to another.</tspan></text>
<use xlink:href="#shift" transform="translate(23.78,1208)"/><use xlink:href="#ctrl" transform="translate(39.24,1208)"/><use xlink:href="#misc" transform="translate(51.62,1208)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1211.7"><tspan x="52.72" y="1211.7" sodipodi:role="line">PgUp</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1213" id="action91"><tspan x="67" y="1213" sodipodi:role="line" id="action-tspan91">raise layer</tspan></text>
<use xlink:href="#shift" transform="translate(23.78,1216)"/><use xlink:href="#ctrl" transform="translate(39.24,1216)"/><use xlink:href="#misc" transform="translate(51.62,1216)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1219.7"><tspan x="52.72" y="1219.7" sodipodi:role="line">PgDn</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1221" id="action92"><tspan x="67" y="1221" sodipodi:role="line" id="action-tspan92">lower layer</tspan></text>
<use xlink:href="#shift" transform="translate(23.78,1224)"/><use xlink:href="#ctrl" transform="translate(39.24,1224)"/><use xlink:href="#misc" transform="translate(51.62,1224)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1227.7"><tspan x="52.72" y="1227.7" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1229" id="action93"><tspan x="67" y="1229" sodipodi:role="line" id="action-tspan93">raise layer to top</tspan></text>
<use xlink:href="#shift" transform="translate(23.78,1232)"/><use xlink:href="#ctrl" transform="translate(39.24,1232)"/><use xlink:href="#misc" transform="translate(51.62,1232)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1235.7"><tspan x="52.72" y="1235.7" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1237" id="action94"><tspan x="67" y="1237" sodipodi:role="line" id="action-tspan94">lower layer to bottom</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1242" id="note28"><tspan x="8" y="1242" sodipodi:role="line" id="note-tspan28">These commands move the current layer among its siblings (normally other layers).</tspan></text>
<rect style="fill:#f4ecf5;fill-rule:evenodd;stroke:none" width="215" height="356" x="0" y="1247.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="1268.5" id="sect4"><tspan x="33" y="1268.5" sodipodi:role="line" id="sect-tspan4">Object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1279" id="title9"><tspan x="33" y="1279" sodipodi:role="line" id="title-tspan9">Undo/redo</tspan></text>
<use xlink:href="#shift" transform="translate(-2.84,1282)"/><use xlink:href="#ctrl" transform="translate(12.62,1282)"/><use xlink:href="#letterkey" transform="translate(25,1282)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="1286.66851145"><tspan x="26.7" y="1286.66851145" sodipodi:role="line">Y</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1287"><tspan x="32" y="1287" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,1282)"/><use xlink:href="#letterkey" transform="translate(56,1282)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1286.66851145"><tspan x="57.7" y="1286.66851145" sodipodi:role="line">Z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1287" id="action95"><tspan x="67" y="1287" sodipodi:role="line" id="action-tspan95">undo</tspan></text>
<use xlink:href="#shift" transform="translate(-2.84,1290)"/><use xlink:href="#ctrl" transform="translate(12.62,1290)"/><use xlink:href="#letterkey" transform="translate(25,1290)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="1294.66851145"><tspan x="26.7" y="1294.66851145" sodipodi:role="line">Z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1295"><tspan x="32" y="1295" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,1290)"/><use xlink:href="#letterkey" transform="translate(56,1290)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1294.66851145"><tspan x="57.7" y="1294.66851145" sodipodi:role="line">Y</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1295" id="action96"><tspan x="67" y="1295" sodipodi:role="line" id="action-tspan96">redo</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1305" id="title10"><tspan x="33" y="1305" sodipodi:role="line" id="title-tspan10">Clipboard</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1308)"/><use xlink:href="#letterkey" transform="translate(56,1308)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1312.66851145"><tspan x="57.7" y="1312.66851145" sodipodi:role="line">C</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1313" id="action97"><tspan x="67" y="1313" sodipodi:role="line" id="action-tspan97">copy selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1318" id="note29"><tspan x="8" y="1318" sodipodi:role="line" id="note-tspan29">This places a copy of the selection to the Inkscape clipboard. Text from text objects is also placed onto the system clipboard.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1320)"/><use xlink:href="#letterkey" transform="translate(56,1320)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1324.66851145"><tspan x="57.7" y="1324.66851145" sodipodi:role="line">X</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1325" id="action98"><tspan x="67" y="1325" sodipodi:role="line" id="action-tspan98">cut selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1330" id="note30"><tspan x="8" y="1330" sodipodi:role="line" id="note-tspan30">This works the same as "copy selection" followed by deleting the selection.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1332)"/><use xlink:href="#letterkey" transform="translate(56,1332)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1336.66851145"><tspan x="57.7" y="1336.66851145" sodipodi:role="line">V</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1337" id="action99"><tspan x="67" y="1337" sodipodi:role="line" id="action-tspan99">paste clipboard</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1342" id="note31"><tspan x="8" y="1342" sodipodi:role="line" id="note-tspan31">This places the clipboard objects at the mouse cursor, or at the center of the window if mouse is outside the canvas.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1346" id="note32"><tspan x="8" y="1346" sodipodi:role="line" id="note-tspan32">When editing text with the text tool, this pastes the text from the system clipboard into the current text object.</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,1348)"/><use xlink:href="#alt" transform="translate(45.33,1348)"/><use xlink:href="#letterkey" transform="translate(56,1348)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1352.66851145"><tspan x="57.7" y="1352.66851145" sodipodi:role="line">V</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1353" id="action100"><tspan x="67" y="1353" sodipodi:role="line" id="action-tspan100">paste in place</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1358" id="note33"><tspan x="8" y="1358" sodipodi:role="line" id="note-tspan33">This places the clipboard objects to the original location from which they were copied.</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,1360)"/><use xlink:href="#ctrl" transform="translate(43.62,1360)"/><use xlink:href="#letterkey" transform="translate(56,1360)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1364.66851145"><tspan x="57.7" y="1364.66851145" sodipodi:role="line">V</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1365" id="action101"><tspan x="67" y="1365" sodipodi:role="line" id="action-tspan101">paste style</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1370" id="note34"><tspan x="8" y="1370" sodipodi:role="line" id="note-tspan34">This applies the style of the (first of the) coped object(s) to the current selection.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1374" id="note35"><tspan x="8" y="1374" sodipodi:role="line" id="note-tspan35">If a gradient handle (in Gradient tool) or a text span (in Text tool) are selected, they get the style instead of the entire object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1383" id="title11"><tspan x="33" y="1383" sodipodi:role="line" id="title-tspan11">Duplicate</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1386)"/><use xlink:href="#letterkey" transform="translate(56,1386)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1390.66851145"><tspan x="57.7" y="1390.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1391" id="action102"><tspan x="67" y="1391" sodipodi:role="line" id="action-tspan102">duplicate selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1396" id="note36"><tspan x="8" y="1396" sodipodi:role="line" id="note-tspan36">New object(s) are placed exactly over the original(s) and selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1405" id="title12"><tspan x="33" y="1405" sodipodi:role="line" id="title-tspan12">Clone</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,1408)"/><use xlink:href="#letterkey" transform="translate(56,1408)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1412.66851145"><tspan x="57.7" y="1412.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1413" id="action103"><tspan x="67" y="1413" sodipodi:role="line" id="action-tspan103">clone object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1418" id="note37"><tspan x="8" y="1418" sodipodi:role="line" id="note-tspan37">A clone can be moved/scaled/rotated/skewed independently, but it updates the path, fill, and stroke from its original.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1422" id="note38"><tspan x="8" y="1422" sodipodi:role="line" id="note-tspan38">The clone is placed exactly over the original object and is selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1426" id="note39"><tspan x="8" y="1426" sodipodi:role="line" id="note-tspan39">You can only clone one object at a time; if you want to clone several objects together, group them and clone the group.</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,1428)"/><use xlink:href="#alt" transform="translate(45.33,1428)"/><use xlink:href="#letterkey" transform="translate(56,1428)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1432.66851145"><tspan x="57.7" y="1432.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1433" id="action104"><tspan x="67" y="1433" sodipodi:role="line" id="action-tspan104">unlink clone</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1438" id="note40"><tspan x="8" y="1438" sodipodi:role="line" id="note-tspan40">Unlinking a clone cuts the link to the original, turning the clone into a plain copy.</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,1440)"/><use xlink:href="#letterkey" transform="translate(56,1440)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1444.66851145"><tspan x="57.7" y="1444.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1445" id="action105"><tspan x="67" y="1445" sodipodi:role="line" id="action-tspan105">select original</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1450" id="note41"><tspan x="8" y="1450" sodipodi:role="line" id="note-tspan41">To find out which object this is a clone of, select the clone and give this command. The original will be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1459" id="title13"><tspan x="33" y="1459" sodipodi:role="line" id="title-tspan13">Bitmaps</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,1462)"/><use xlink:href="#letterkey" transform="translate(56,1462)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1466.66851145"><tspan x="57.7" y="1466.66851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1467" id="action106"><tspan x="67" y="1467" sodipodi:role="line" id="action-tspan106">create a bitmap copy</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1472" id="note42"><tspan x="8" y="1472" sodipodi:role="line" id="note-tspan42">This exports the selected object(s) (all other objects hidden) as PNG in the document's directory and imports it back.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1476" id="note43"><tspan x="8" y="1476" sodipodi:role="line" id="note-tspan43">The imported bitmap is placed over the original selection and is selected.</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,1478)"/><use xlink:href="#alt" transform="translate(45.33,1478)"/><use xlink:href="#letterkey" transform="translate(56,1478)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1482.66851145"><tspan x="57.7" y="1482.66851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1483" id="action107"><tspan x="67" y="1483" sodipodi:role="line" id="action-tspan107">trace bitmap</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1488" id="note44"><tspan x="8" y="1488" sodipodi:role="line" id="note-tspan44">This opens the Trace Bitmap dialog allowing you to convert a bitmap object to path(s).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1497" id="title14"><tspan x="33" y="1497" sodipodi:role="line" id="title-tspan14">Patterns</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,1500)"/><use xlink:href="#letterkey" transform="translate(56,1500)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1504.66851145"><tspan x="57.7" y="1504.66851145" sodipodi:role="line">I</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1505" id="action108"><tspan x="67" y="1505" sodipodi:role="line" id="action-tspan108">object(s) to pattern</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1510" id="note45"><tspan x="8" y="1510" sodipodi:role="line" id="note-tspan45">This converts the selection to a rectangle with tiled pattern fill.</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,1512)"/><use xlink:href="#alt" transform="translate(45.33,1512)"/><use xlink:href="#letterkey" transform="translate(56,1512)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1516.66851145"><tspan x="57.7" y="1516.66851145" sodipodi:role="line">I</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1517" id="action109"><tspan x="67" y="1517" sodipodi:role="line" id="action-tspan109">pattern to object(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1522" id="note46"><tspan x="8" y="1522" sodipodi:role="line" id="note-tspan46">Each selected object with pattern fill is broken into the same object without fill and a single pattern object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1531" id="title15"><tspan x="33" y="1531" sodipodi:role="line" id="title-tspan15">Group</tspan></text>
<use xlink:href="#shift" transform="translate(-2.84,1534)"/><use xlink:href="#ctrl" transform="translate(12.62,1534)"/><use xlink:href="#letterkey" transform="translate(25,1534)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="1538.66851145"><tspan x="26.7" y="1538.66851145" sodipodi:role="line">U</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1539"><tspan x="32" y="1539" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,1534)"/><use xlink:href="#letterkey" transform="translate(56,1534)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1538.66851145"><tspan x="57.7" y="1538.66851145" sodipodi:role="line">G</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1539" id="action110"><tspan x="67" y="1539" sodipodi:role="line" id="action-tspan110">group selected objects</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1544" id="note47"><tspan x="8" y="1544" sodipodi:role="line" id="note-tspan47">Use Ctrl+click to select objects within group.</tspan></text>
<use xlink:href="#shift" transform="translate(-2.84,1546)"/><use xlink:href="#ctrl" transform="translate(12.62,1546)"/><use xlink:href="#letterkey" transform="translate(25,1546)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="1550.66851145"><tspan x="26.7" y="1550.66851145" sodipodi:role="line">G</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="1551"><tspan x="32" y="1551" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,1546)"/><use xlink:href="#letterkey" transform="translate(56,1546)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1550.66851145"><tspan x="57.7" y="1550.66851145" sodipodi:role="line">U</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1551" id="action111"><tspan x="67" y="1551" sodipodi:role="line" id="action-tspan111">ungroup selected group(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1556" id="note48"><tspan x="8" y="1556" sodipodi:role="line" id="note-tspan48">This removes only one level of grouping; press Ctrl+U repeatedly to ungroup nested groups.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1565" id="title16"><tspan x="33" y="1565" sodipodi:role="line" id="title-tspan16">Z-order</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,1568)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1571.7"><tspan x="52.72" y="1571.7" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1573" id="action112"><tspan x="67" y="1573" sodipodi:role="line" id="action-tspan112">raise selection to top</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,1576)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1579.7"><tspan x="52.72" y="1579.7" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1581" id="action113"><tspan x="67" y="1581" sodipodi:role="line" id="action-tspan113">lower selection to bottom</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,1584)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1587.7"><tspan x="52.72" y="1587.7" sodipodi:role="line">PgUp</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1589" id="action114"><tspan x="67" y="1589" sodipodi:role="line" id="action-tspan114">raise selection one step</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,1592)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1595.7"><tspan x="52.72" y="1595.7" sodipodi:role="line">PgDn</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1597" id="action115"><tspan x="67" y="1597" sodipodi:role="line" id="action-tspan115">lower selection one step</tspan></text>
<rect style="fill:#f9f1d9;fill-rule:evenodd;stroke:none" width="215" height="318" x="0" y="1603.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="1624.5" id="sect5"><tspan x="33" y="1624.5" sodipodi:role="line" id="sect-tspan5">Path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1635" id="title17"><tspan x="33" y="1635" sodipodi:role="line" id="title-tspan17">Convert to path</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,1638)"/><use xlink:href="#ctrl" transform="translate(43.62,1638)"/><use xlink:href="#letterkey" transform="translate(56,1638)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1642.66851145"><tspan x="57.7" y="1642.66851145" sodipodi:role="line">C</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1643" id="action116"><tspan x="67" y="1643" sodipodi:role="line" id="action-tspan116">convert selected object(s) to path</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,1646)"/><use xlink:href="#alt" transform="translate(45.33,1646)"/><use xlink:href="#letterkey" transform="translate(56,1646)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1650.66851145"><tspan x="57.7" y="1650.66851145" sodipodi:role="line">C</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1651" id="action117"><tspan x="67" y="1651" sodipodi:role="line" id="action-tspan117">convert stroke to path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1661" id="title18"><tspan x="33" y="1661" sodipodi:role="line" id="title-tspan18">Booleans</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1664)"/><use xlink:href="#letterkey" transform="translate(56,1664)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1668.66851145"><tspan x="57.7" y="1668.66851145" sodipodi:role="line">+</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1669" id="action118"><tspan x="67" y="1669" sodipodi:role="line" id="action-tspan118">union</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1674" id="note49"><tspan x="8" y="1674" sodipodi:role="line" id="note-tspan49">Union combines any number of objects into a single path, removing overlaps.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1676)"/><use xlink:href="#letterkey" transform="translate(56,1676)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1680.66851145"><tspan x="57.7" y="1680.66851145" sodipodi:role="line">-</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1681" id="action119"><tspan x="67" y="1681" sodipodi:role="line" id="action-tspan119">difference</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1686" id="note50"><tspan x="8" y="1686" sodipodi:role="line" id="note-tspan50">Difference works on 2 objects, extracting the top from the bottom.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1688)"/><use xlink:href="#letterkey" transform="translate(56,1688)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1692.66851145"><tspan x="57.7" y="1692.66851145" sodipodi:role="line">*</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1693" id="action120"><tspan x="67" y="1693" sodipodi:role="line" id="action-tspan120">intersection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1698" id="note51"><tspan x="8" y="1698" sodipodi:role="line" id="note-tspan51">Intersection creates a path representing the common (overlapping) area of all selected objects.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1700)"/><use xlink:href="#letterkey" transform="translate(56,1700)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1704.66851145"><tspan x="57.7" y="1704.66851145" sodipodi:role="line">^</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1705" id="action121"><tspan x="67" y="1705" sodipodi:role="line" id="action-tspan121">exclusive OR (XOR)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1710" id="note52"><tspan x="8" y="1710" sodipodi:role="line" id="note-tspan52">XOR is similar to Union, except that it works on 2 objects and removes areas where the objects overlap.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1712)"/><use xlink:href="#letterkey" transform="translate(56,1712)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1716.66851145"><tspan x="57.7" y="1716.66851145" sodipodi:role="line">/</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1717" id="action122"><tspan x="67" y="1717" sodipodi:role="line" id="action-tspan122">division (cut)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1722" id="note53"><tspan x="8" y="1722" sodipodi:role="line" id="note-tspan53">Division cuts the bottom object into pieces by the top object, preserving the fill and stroke of the bottom.</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,1724)"/><use xlink:href="#alt" transform="translate(45.33,1724)"/><use xlink:href="#letterkey" transform="translate(56,1724)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1728.66851145"><tspan x="57.7" y="1728.66851145" sodipodi:role="line">/</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1729" id="action123"><tspan x="67" y="1729" sodipodi:role="line" id="action-tspan123">cut path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1734" id="note54"><tspan x="8" y="1734" sodipodi:role="line" id="note-tspan54">Cut Path cuts the bottom object's stroke only where it is intersected by the top path, removing any fill from the result.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1738" id="note55"><tspan x="8" y="1738" sodipodi:role="line" id="note-tspan55">The result of Union, Difference, Intersection, and XOR inherits the id= attribute and therefore the clones of the bottom object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1742" id="note56"><tspan x="8" y="1742" sodipodi:role="line" id="note-tspan56">Division and Cut path normally produce several objects; of them, a random one inherits the id= of the bottom source object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1751" id="title19"><tspan x="33" y="1751" sodipodi:role="line" id="title-tspan19">Offsets</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1754)"/><use xlink:href="#letterkey" transform="translate(56,1754)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1758.66851145"><tspan x="57.7" y="1758.66851145" sodipodi:role="line">(</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1759" id="action124"><tspan x="67" y="1759" sodipodi:role="line" id="action-tspan124">inset path (towards center)</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1762)"/><use xlink:href="#letterkey" transform="translate(56,1762)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1766.66851145"><tspan x="57.7" y="1766.66851145" sodipodi:role="line">)</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1767" id="action125"><tspan x="67" y="1767" sodipodi:role="line" id="action-tspan125">outset path (away from center)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1772" id="note57"><tspan x="8" y="1772" sodipodi:role="line" id="note-tspan57">The default offset distance is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,1774)"/><use xlink:href="#letterkey" transform="translate(56,1774)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1778.66851145"><tspan x="57.7" y="1778.66851145" sodipodi:role="line">(</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1779" id="action126"><tspan x="67" y="1779" sodipodi:role="line" id="action-tspan126">inset path by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,1782)"/><use xlink:href="#letterkey" transform="translate(56,1782)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1786.66851145"><tspan x="57.7" y="1786.66851145" sodipodi:role="line">)</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1787" id="action127"><tspan x="67" y="1787" sodipodi:role="line" id="action-tspan127">outset path by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,1790)"/><use xlink:href="#alt" transform="translate(45.33,1790)"/><use xlink:href="#letterkey" transform="translate(56,1790)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1794.66851145"><tspan x="57.7" y="1794.66851145" sodipodi:role="line">(</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1795" id="action128"><tspan x="67" y="1795" sodipodi:role="line" id="action-tspan128">inset path by 10 pixels</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,1798)"/><use xlink:href="#alt" transform="translate(45.33,1798)"/><use xlink:href="#letterkey" transform="translate(56,1798)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1802.66851145"><tspan x="57.7" y="1802.66851145" sodipodi:role="line">)</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1803" id="action129"><tspan x="67" y="1803" sodipodi:role="line" id="action-tspan129">outset path by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1808" id="note58"><tspan x="8" y="1808" sodipodi:role="line" id="note-tspan58">The actual distance for pixel offsets depends on zoom level. Zoom in for finer adjustment.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1812" id="note59"><tspan x="8" y="1812" sodipodi:role="line" id="note-tspan59">All the (, ) commands convert the object to path, if necessary, and produce regular path.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1814)"/><use xlink:href="#letterkey" transform="translate(56,1814)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1818.66851145"><tspan x="57.7" y="1818.66851145" sodipodi:role="line">J</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1819" id="action130"><tspan x="67" y="1819" sodipodi:role="line" id="action-tspan130">create dynamic offset</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,1822)"/><use xlink:href="#alt" transform="translate(45.33,1822)"/><use xlink:href="#letterkey" transform="translate(56,1822)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1826.66851145"><tspan x="57.7" y="1826.66851145" sodipodi:role="line">J</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1827" id="action131"><tspan x="67" y="1827" sodipodi:role="line" id="action-tspan131">create linked offset</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1832" id="note60"><tspan x="8" y="1832" sodipodi:role="line" id="note-tspan60">These commands produce an offset object, editable by the node tool, standalone or linked to the original.</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,1834)"/><use xlink:href="#letterkey" transform="translate(56,1834)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1838.66851145"><tspan x="57.7" y="1838.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1839" id="action132"><tspan x="67" y="1839" sodipodi:role="line" id="action-tspan132">select source</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1844" id="note61"><tspan x="8" y="1844" sodipodi:role="line" id="note-tspan61">Selecting a linked offset and giving this command will select the source path of the linked offset.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1853" id="title20"><tspan x="33" y="1853" sodipodi:role="line" id="title-tspan20">Combine</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1856)"/><use xlink:href="#letterkey" transform="translate(56,1856)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1860.66851145"><tspan x="57.7" y="1860.66851145" sodipodi:role="line">K</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1861" id="action133"><tspan x="67" y="1861" sodipodi:role="line" id="action-tspan133">combine paths</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1866" id="note62"><tspan x="8" y="1866" sodipodi:role="line" id="note-tspan62">This is different from grouping in that combined paths create one object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1870" id="note63"><tspan x="8" y="1870" sodipodi:role="line" id="note-tspan63">This is different from Union in that overlapping areas are not affected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1874" id="note64"><tspan x="8" y="1874" sodipodi:role="line" id="note-tspan64">Whether overlapping areas are filled is controlled by the Fill: winding/alternating switch on the Fill & Stroke dialog.</tspan></text>
<use xlink:href="#shift" transform="translate(28.16,1876)"/><use xlink:href="#ctrl" transform="translate(43.62,1876)"/><use xlink:href="#letterkey" transform="translate(56,1876)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1880.66851145"><tspan x="57.7" y="1880.66851145" sodipodi:role="line">K</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1881" id="action134"><tspan x="67" y="1881" sodipodi:role="line" id="action-tspan134">break paths apart</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1886" id="note65"><tspan x="8" y="1886" sodipodi:role="line" id="note-tspan65">This attempts to break an object into constituent paths; it will fail if the object is one solid path.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1895" id="title21"><tspan x="33" y="1895" sodipodi:role="line" id="title-tspan21">Simplify</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1898)"/><use xlink:href="#letterkey" transform="translate(56,1898)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1902.66851145"><tspan x="57.7" y="1902.66851145" sodipodi:role="line">L</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1903" id="action135"><tspan x="67" y="1903" sodipodi:role="line" id="action-tspan135">simplify</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1908" id="note66"><tspan x="8" y="1908" sodipodi:role="line" id="note-tspan66">This command attempts to simplify selected path(s) by removing extra nodes. It converts all objects to paths first.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1912" id="note67"><tspan x="8" y="1912" sodipodi:role="line" id="note-tspan67">If you invoke this command several times in quick succession, it will act more and more aggressively.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1916" id="note68"><tspan x="8" y="1916" sodipodi:role="line" id="note-tspan68">Invoking Simplify again after a pause restores the default threshold (settable in the Inkscape Preferences dialog).</tspan></text>
</g><g transform="translate(430,-1921.5)"><rect style="fill:#eee4dc;fill-rule:evenodd;stroke:none" width="215" height="876" x="0" y="1921.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="1942.5" id="sect1"><tspan x="33" y="1942.5" sodipodi:role="line" id="sect-tspan1">Selector</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="1953" id="title22"><tspan x="33" y="1953" sodipodi:role="line" id="title-tspan22">Keyboard select</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,1956)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1959.7"><tspan x="52.72" y="1959.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1961" id="action136"><tspan x="67" y="1961" sodipodi:role="line" id="action-tspan136">select next object </tspan></text>
<use xlink:href="#shift" transform="translate(36.16,1964)"/><use xlink:href="#misc" transform="translate(51.62,1964)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="1967.7"><tspan x="52.72" y="1967.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1969" id="action137"><tspan x="67" y="1969" sodipodi:role="line" id="action-tspan137">select previous object </tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1974" id="note69"><tspan x="8" y="1974" sodipodi:role="line" id="note-tspan69">These keys pick objects in their z-order (Tab cycles from bottom to top, Shift+Tab cycles from top to bottom).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1978" id="note70"><tspan x="8" y="1978" sodipodi:role="line" id="note-tspan70">Unless you did manual rearrangements, the last object you created is always on top.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1982" id="note71"><tspan x="8" y="1982" sodipodi:role="line" id="note-tspan71">As a result, if nothing is selected, pressing Shift+Tab once conveniently selects the object you created last.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1986" id="note72"><tspan x="8" y="1986" sodipodi:role="line" id="note-tspan72">This works on objects within the current layer (unless you change that in preferences).</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,1988)"/><use xlink:href="#letterkey" transform="translate(56,1988)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="1992.66851145"><tspan x="57.7" y="1992.66851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="1993" id="action138"><tspan x="67" y="1993" sodipodi:role="line" id="action-tspan138">select all (current layer)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="1998" id="note73"><tspan x="8" y="1998" sodipodi:role="line" id="note-tspan73">This works on objects within the current layer (unless you change that in preferences).</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,2000)"/><use xlink:href="#alt" transform="translate(45.33,2000)"/><use xlink:href="#letterkey" transform="translate(56,2000)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2004.66851145"><tspan x="57.7" y="2004.66851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2005" id="action139"><tspan x="67" y="2005" sodipodi:role="line" id="action-tspan139">select all (all layers)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2010" id="note74"><tspan x="8" y="2010" sodipodi:role="line" id="note-tspan74">This works on objects in all visible and unlocked layers.</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,2012)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2016.66851145"><tspan x="57.7" y="2016.66851145" sodipodi:role="line">!</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2017" id="action140"><tspan x="67" y="2017" sodipodi:role="line" id="action-tspan140">invert selection (current layer)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2022" id="note75"><tspan x="8" y="2022" sodipodi:role="line" id="note-tspan75">This inverts selection (deselects what was selected and vice versa) in the current layer.</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,2024)"/><use xlink:href="#letterkey" transform="translate(56,2024)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2028.66851145"><tspan x="57.7" y="2028.66851145" sodipodi:role="line">!</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2029" id="action141"><tspan x="67" y="2029" sodipodi:role="line" id="action-tspan141">invert selection (all layers)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2034" id="note76"><tspan x="8" y="2034" sodipodi:role="line" id="note-tspan76">This inverts selection (deselects what was selected and vice versa) in visible and unlocked layers.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,2036)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2039.7"><tspan x="52.72" y="2039.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2041" id="action142"><tspan x="67" y="2041" sodipodi:role="line" id="action-tspan142">deselect</tspan></text>
<use xlink:href="#misc-wide" transform="translate(15.54,2044)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="16.64" y="2047.7"><tspan x="16.64" y="2047.7" sodipodi:role="line">Backspace</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2049"><tspan x="32" y="2049" sodipodi:role="line">,</tspan></text><use xlink:href="#misc" transform="translate(51.62,2044)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2047.7"><tspan x="52.72" y="2047.7" sodipodi:role="line">Del</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2049" id="action143"><tspan x="67" y="2049" sodipodi:role="line" id="action-tspan143">delete selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2059" id="title23"><tspan x="33" y="2059" sodipodi:role="line" id="title-tspan23">Keyboard move</tspan></text>
<use xlink:href="#arrows" transform="translate(51.62,2062.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2067.5" id="action144"><tspan x="67" y="2067.5" sodipodi:role="line" id="action-tspan144">move selection by the nudge distance</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,2074)"/><use xlink:href="#arrows" transform="translate(51.62,2074)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2079" id="action145"><tspan x="67" y="2079" sodipodi:role="line" id="action-tspan145">move selection by 10x nudge distance</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2087" id="note77"><tspan x="8" y="2087" sodipodi:role="line" id="note-tspan77">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(40.95,2089.5)"/><use xlink:href="#arrows" transform="translate(51.62,2089.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2094.5" id="action146"><tspan x="67" y="2094.5" sodipodi:role="line" id="action-tspan146">move selection by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(25.49,2101)"/><use xlink:href="#shift" transform="translate(36.16,2101)"/><use xlink:href="#arrows" transform="translate(51.62,2101)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2106" id="action147"><tspan x="67" y="2106" sodipodi:role="line" id="action-tspan147">move selection by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2114" id="note78"><tspan x="8" y="2114" sodipodi:role="line" id="note-tspan78">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2123" id="title24"><tspan x="33" y="2123" sodipodi:role="line" id="title-tspan24">Keyboard scale</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,2126)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2130.66851145"><tspan x="26.7" y="2130.66851145" sodipodi:role="line">.</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2131"><tspan x="32" y="2131" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,2126)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2130.66851145"><tspan x="57.7" y="2130.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2131" id="action148"><tspan x="67" y="2131" sodipodi:role="line" id="action-tspan148">scale selection up by the scale step</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,2134)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2138.66851145"><tspan x="26.7" y="2138.66851145" sodipodi:role="line">,</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2139"><tspan x="32" y="2139" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,2134)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2138.66851145"><tspan x="57.7" y="2138.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2139" id="action149"><tspan x="67" y="2139" sodipodi:role="line" id="action-tspan149">scale selection down by the scale step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2144" id="note79"><tspan x="8" y="2144" sodipodi:role="line" id="note-tspan79">The default scale step is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,2146)"/><use xlink:href="#letterkey" transform="translate(25,2146)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2150.66851145"><tspan x="26.7" y="2150.66851145" sodipodi:role="line">.</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2151"><tspan x="32" y="2151" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,2146)"/><use xlink:href="#letterkey" transform="translate(56,2146)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2150.66851145"><tspan x="57.7" y="2150.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2151" id="action150"><tspan x="67" y="2151" sodipodi:role="line" id="action-tspan150">scale selection to 200%</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,2154)"/><use xlink:href="#letterkey" transform="translate(25,2154)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2158.66851145"><tspan x="26.7" y="2158.66851145" sodipodi:role="line">,</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2159"><tspan x="32" y="2159" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,2154)"/><use xlink:href="#letterkey" transform="translate(56,2154)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2158.66851145"><tspan x="57.7" y="2158.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2159" id="action151"><tspan x="67" y="2159" sodipodi:role="line" id="action-tspan151">scale selection to 50%</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,2162)"/><use xlink:href="#letterkey" transform="translate(25,2162)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2166.66851145"><tspan x="26.7" y="2166.66851145" sodipodi:role="line">.</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2167"><tspan x="32" y="2167" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,2162)"/><use xlink:href="#letterkey" transform="translate(56,2162)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2166.66851145"><tspan x="57.7" y="2166.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2167" id="action152"><tspan x="67" y="2167" sodipodi:role="line" id="action-tspan152">scale selection up by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,2170)"/><use xlink:href="#letterkey" transform="translate(25,2170)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2174.66851145"><tspan x="26.7" y="2174.66851145" sodipodi:role="line">,</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2175"><tspan x="32" y="2175" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,2170)"/><use xlink:href="#letterkey" transform="translate(56,2170)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2174.66851145"><tspan x="57.7" y="2174.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2175" id="action153"><tspan x="67" y="2175" sodipodi:role="line" id="action-tspan153">scale selection down by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2180" id="note80"><tspan x="8" y="2180" sodipodi:role="line" id="note-tspan80">The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2184" id="note81"><tspan x="8" y="2184" sodipodi:role="line" id="note-tspan81">Scaling is uniform around the center, so that the size increment applies to the larger of the two dimensions.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2193" id="title25"><tspan x="33" y="2193" sodipodi:role="line" id="title-tspan25">Keyboard rotate</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,2196)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2200.66851145"><tspan x="26.7" y="2200.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2201"><tspan x="32" y="2201" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,2196)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2200.66851145"><tspan x="57.7" y="2200.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2201" id="action154"><tspan x="67" y="2201" sodipodi:role="line" id="action-tspan154">rotate selection by the angle step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2206" id="note82"><tspan x="8" y="2206" sodipodi:role="line" id="note-tspan82">The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise.</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,2208)"/><use xlink:href="#letterkey" transform="translate(25,2208)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2212.66851145"><tspan x="26.7" y="2212.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2213"><tspan x="32" y="2213" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,2208)"/><use xlink:href="#letterkey" transform="translate(56,2208)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2212.66851145"><tspan x="57.7" y="2212.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2213" id="action155"><tspan x="67" y="2213" sodipodi:role="line" id="action-tspan155">rotate selection by 90 degrees</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,2216)"/><use xlink:href="#letterkey" transform="translate(25,2216)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2220.66851145"><tspan x="26.7" y="2220.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2221"><tspan x="32" y="2221" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,2216)"/><use xlink:href="#letterkey" transform="translate(56,2216)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2220.66851145"><tspan x="57.7" y="2220.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2221" id="action156"><tspan x="67" y="2221" sodipodi:role="line" id="action-tspan156">rotate selection by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2226" id="note83"><tspan x="8" y="2226" sodipodi:role="line" id="note-tspan83">The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2230" id="note84"><tspan x="8" y="2230" sodipodi:role="line" id="note-tspan84">These commands use the rotation center, draggable in Selector (by default it's in geometric center).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2239" id="title26"><tspan x="33" y="2239" sodipodi:role="line" id="title-tspan26">Keyboard flip</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,2242)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2246.66851145"><tspan x="57.7" y="2246.66851145" sodipodi:role="line">h</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2247" id="action157"><tspan x="67" y="2247" sodipodi:role="line" id="action-tspan157">flip selection horizontally</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,2250)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2254.66851145"><tspan x="57.7" y="2254.66851145" sodipodi:role="line">v</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2255" id="action158"><tspan x="67" y="2255" sodipodi:role="line" id="action-tspan158">flip selection vertically</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2265" id="title27"><tspan x="33" y="2265" sodipodi:role="line" id="title-tspan27">Mouse select</tspan></text>
<use xlink:href="#left-click" transform="translate(57,2268.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2273.5" id="action159"><tspan x="67" y="2273.5" sodipodi:role="line" id="action-tspan159">select an object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2281.5" id="note85"><tspan x="8" y="2281.5" sodipodi:role="line" id="note-tspan85">When you left-click on an object, previous selection is deselected.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,2284)"/><use xlink:href="#left-click" transform="translate(57,2284)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2289" id="action160"><tspan x="67" y="2289" sodipodi:role="line" id="action-tspan160">toggle selection </tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2297" id="note86"><tspan x="8" y="2297" sodipodi:role="line" id="note-tspan86">Shift+click adds an object to the current selection if it was not selected, or deselects it otherwise.</tspan></text>
<use xlink:href="#left-click" transform="translate(50,2299.5)"/><use xlink:href="#left-click" transform="translate(57,2299.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2304.5" id="action161"><tspan x="67" y="2304.5" sodipodi:role="line" id="action-tspan161">edit the object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2312.5" id="note87"><tspan x="8" y="2312.5" sodipodi:role="line" id="note-tspan87">For paths, double clicking switches to Node tool; for shapes, to corresponding shape tool; for text, to Text tool.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2316.5" id="note88"><tspan x="8" y="2316.5" sodipodi:role="line" id="note-tspan88">For groups, double clicking performs the "Enter group" command (the group becomes temporary layer).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2320.5" id="note89"><tspan x="8" y="2320.5" sodipodi:role="line" id="note-tspan89">Double clicking in empty space swithes to the parent layer in the hierarchy, if any.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2329.5" id="title28"><tspan x="33" y="2329.5" sodipodi:role="line" id="title-tspan28">Select within group, select under</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,2333)"/><use xlink:href="#left-click" transform="translate(57,2333)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2338" id="action162"><tspan x="67" y="2338" sodipodi:role="line" id="action-tspan162">select within group</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2346" id="note90"><tspan x="8" y="2346" sodipodi:role="line" id="note-tspan90">Ctrl+click selects the object at click point disregarding any levels of grouping that this object might belong to.</tspan></text>
<use xlink:href="#ctrl" transform="translate(29.16,2348.5)"/><use xlink:href="#shift" transform="translate(41.54,2348.5)"/><use xlink:href="#left-click" transform="translate(57,2348.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2353.5" id="action163"><tspan x="67" y="2353.5" sodipodi:role="line" id="action-tspan163">toggle selection within group</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,2360)"/><use xlink:href="#left-click" transform="translate(57,2360)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2365" id="action164"><tspan x="67" y="2365" sodipodi:role="line" id="action-tspan164">select under</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2373" id="note91"><tspan x="8" y="2373" sodipodi:role="line" id="note-tspan91">Alt+click selects the object at click point which is beneath (in z-order) the lowest selected object at click point.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2377" id="note92"><tspan x="8" y="2377" sodipodi:role="line" id="note-tspan92">If the bottom object is reached, Alt+click again selects the top object. So, several Alt+clicks cycle through z-order stack at point.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2381" id="note93"><tspan x="8" y="2381" sodipodi:role="line" id="note-tspan93">On Linux, Alt+click and Alt+drag may be reserved by the window manager. Reconfigure it so you can use them in Inkscape.</tspan></text>
<use xlink:href="#shift" transform="translate(30.87,2383.5)"/><use xlink:href="#alt" transform="translate(46.33,2383.5)"/><use xlink:href="#left-click" transform="translate(57,2383.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2388.5" id="action165"><tspan x="67" y="2388.5" sodipodi:role="line" id="action-tspan165">toggle under</tspan></text>
<use xlink:href="#ctrl" transform="translate(33.95,2395)"/><use xlink:href="#alt" transform="translate(46.33,2395)"/><use xlink:href="#left-click" transform="translate(57,2395)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2400" id="action166"><tspan x="67" y="2400" sodipodi:role="line" id="action-tspan166">select under, in groups</tspan></text>
<use xlink:href="#shift" transform="translate(18.49,2406.5)"/><use xlink:href="#ctrl" transform="translate(33.95,2406.5)"/><use xlink:href="#alt" transform="translate(46.33,2406.5)"/><use xlink:href="#left-click" transform="translate(57,2406.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2411.5" id="action167"><tspan x="67" y="2411.5" sodipodi:role="line" id="action-tspan167">toggle under, in groups</tspan></text>
<use xlink:href="#ctrl" transform="translate(34.16,2417.5)"/><use xlink:href="#misc-wide" transform="translate(46.54,2417.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="2421.2"><tspan x="47.64" y="2421.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2422.5" id="action168"><tspan x="67" y="2422.5" sodipodi:role="line" id="action-tspan168">enter group</tspan></text>
<use xlink:href="#ctrl" transform="translate(34.16,2425.5)"/><use xlink:href="#misc-wide" transform="translate(46.54,2425.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="2429.2"><tspan x="47.64" y="2429.2" sodipodi:role="line">Backspace</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2430.5" id="action169"><tspan x="67" y="2430.5" sodipodi:role="line" id="action-tspan169">go to parent group/layer</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2440.5" id="title29"><tspan x="33" y="2440.5" sodipodi:role="line" id="title-tspan29">Rubberband</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2444)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2449" id="action170"><tspan x="67" y="2449" sodipodi:role="line" id="action-tspan170">select multiple objects</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2457" id="note94"><tspan x="8" y="2457" sodipodi:role="line" id="note-tspan94">Dragging around objects does "rubberband" selection; previous selection is deselected.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,2459.5)"/><use xlink:href="#left-drag" transform="translate(57,2459.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2464.5" id="action171"><tspan x="67" y="2464.5" sodipodi:role="line" id="action-tspan171">add objects to selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2472.5" id="note95"><tspan x="8" y="2472.5" sodipodi:role="line" id="note-tspan95">Normally, you need to start from an empty space to initiate a rubberband.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2476.5" id="note96"><tspan x="8" y="2476.5" sodipodi:role="line" id="note-tspan96">However, if you press Shift before dragging, Inkscape will do rubberband selection even if you start from an object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2485.5" id="title30"><tspan x="33" y="2485.5" sodipodi:role="line" id="title-tspan30">Mouse move</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2489)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2494" id="action172"><tspan x="67" y="2494" sodipodi:role="line" id="action-tspan172">select + move</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2502" id="note97"><tspan x="8" y="2502" sodipodi:role="line" id="note-tspan97">Dragging an object selects it if it was not selected, then moves selection.</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,2504.5)"/><use xlink:href="#left-drag" transform="translate(57,2504.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2509.5" id="action173"><tspan x="67" y="2509.5" sodipodi:role="line" id="action-tspan173">move selected</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2517.5" id="note98"><tspan x="8" y="2517.5" sodipodi:role="line" id="note-tspan98">Alt+drag moves the current selection (without selecting what is under cursor), no matter where you start the drag.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2521.5" id="note99"><tspan x="8" y="2521.5" sodipodi:role="line" id="note-tspan99">On Linux, Alt+click and Alt+drag may be reserved by the window manager. Reconfigure it so you can use them in Inkscape.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,2524)"/><use xlink:href="#left-drag" transform="translate(57,2524)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2529" id="action174"><tspan x="67" y="2529" sodipodi:role="line" id="action-tspan174">restrict movement to horizontal or vertical</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,2535.5)"/><use xlink:href="#left-drag" transform="translate(57,2535.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2540.5" id="action175"><tspan x="67" y="2540.5" sodipodi:role="line" id="action-tspan175">temporarily disable snapping</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2548.5" id="note100"><tspan x="8" y="2548.5" sodipodi:role="line" id="note-tspan100">This temporaily disables snapping to grid or guides when you are dragging with grid or guides on.</tspan></text>
<use xlink:href="#left-drag" transform="translate(38.54,2551)"/><use xlink:href="#misc-wide" transform="translate(46.54,2551)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="2554.7"><tspan x="47.64" y="2554.7" sodipodi:role="line">Space</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2556" id="action176"><tspan x="67" y="2556" sodipodi:role="line" id="action-tspan176">drop a copy</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2564" id="note101"><tspan x="8" y="2564" sodipodi:role="line" id="note-tspan101">When dragging or transforming with mouse, each Space leaves a copy of the selected object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2568" id="note102"><tspan x="8" y="2568" sodipodi:role="line" id="note-tspan102">You can press and hold Space while dragging for a nice "trail."</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2577" id="title31"><tspan x="33" y="2577" sodipodi:role="line" id="title-tspan31">Mouse transform</tspan></text>
<use xlink:href="#left-click" transform="translate(57,2580.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2585.5" id="action177"><tspan x="67" y="2585.5" sodipodi:role="line" id="action-tspan177">toggle scale/rotation handles</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2592)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2597" id="action178"><tspan x="67" y="2597" sodipodi:role="line" id="action-tspan178">scale (scale handles)</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2603.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2608.5" id="action179"><tspan x="67" y="2608.5" sodipodi:role="line" id="action-tspan179">rotate or skew (rotation handles)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2621.5" id="title32"><tspan x="33" y="2621.5" sodipodi:role="line" id="title-tspan32">Scale handles</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2625)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2630" id="action180"><tspan x="67" y="2630" sodipodi:role="line" id="action-tspan180">scale</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,2636.5)"/><use xlink:href="#left-drag" transform="translate(57,2636.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2641.5" id="action181"><tspan x="67" y="2641.5" sodipodi:role="line" id="action-tspan181">scale preserving aspect ratio</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,2648)"/><use xlink:href="#left-drag" transform="translate(57,2648)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2653" id="action182"><tspan x="67" y="2653" sodipodi:role="line" id="action-tspan182">symmetric transformation</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2661" id="note103"><tspan x="8" y="2661" sodipodi:role="line" id="note-tspan103">Holding Shift while transforming makes transformation symmetric around the center of the selection.</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,2663.5)"/><use xlink:href="#left-drag" transform="translate(57,2663.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2668.5" id="action183"><tspan x="67" y="2668.5" sodipodi:role="line" id="action-tspan183">slow movement</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2676.5" id="note104"><tspan x="8" y="2676.5" sodipodi:role="line" id="note-tspan104">Holding Alt while transforming makes transformation lag behind mouse movement, allowing finer changes.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2685.5" id="title33"><tspan x="33" y="2685.5" sodipodi:role="line" id="title-tspan33">Rotation/skew handles</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2689)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2694" id="action184"><tspan x="67" y="2694" sodipodi:role="line" id="action-tspan184">rotate or skew</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,2700.5)"/><use xlink:href="#left-drag" transform="translate(57,2700.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2705.5" id="action185"><tspan x="67" y="2705.5" sodipodi:role="line" id="action-tspan185">snap skew angle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2713.5" id="note105"><tspan x="8" y="2713.5" sodipodi:role="line" id="note-tspan105">Holding Ctrl when dragging a skew (non-corner) handle snaps the skew angle to angle steps (default 15 degrees).</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,2716)"/><use xlink:href="#left-drag" transform="translate(57,2716)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2721" id="action186"><tspan x="67" y="2721" sodipodi:role="line" id="action-tspan186">snap rotation angle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2729" id="note106"><tspan x="8" y="2729" sodipodi:role="line" id="note-tspan106">Holding Ctrl when dragging a rotation (corner) handle snaps the rotation angle to angle steps (default 15 degrees).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2738" id="title34"><tspan x="33" y="2738" sodipodi:role="line" id="title-tspan34">Rotation center</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,2741.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2746.5" id="action187"><tspan x="67" y="2746.5" sodipodi:role="line" id="action-tspan187">move rotation center</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2754.5" id="note107"><tspan x="8" y="2754.5" sodipodi:role="line" id="note-tspan107">Moved rotation center remembers its position for (all) selected object(s) until you reset it.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,2757)"/><use xlink:href="#left-click" transform="translate(57,2757)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2762" id="action188"><tspan x="67" y="2762" sodipodi:role="line" id="action-tspan188">reset rotation center</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2770" id="note108"><tspan x="8" y="2770" sodipodi:role="line" id="note-tspan108">Resetting rotation center moves it back to the geometric center of the object's or selection's bounding box.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2779" id="title35"><tspan x="33" y="2779" sodipodi:role="line" id="title-tspan35">Cancel</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,2782)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2785.7"><tspan x="52.72" y="2785.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2787" id="action189"><tspan x="67" y="2787" sodipodi:role="line" id="action-tspan189">cancel rubberband, move, transformation</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2792" id="note109"><tspan x="8" y="2792" sodipodi:role="line" id="note-tspan109">Press Esc while mouse button is still down to cancel rubberband selection, move, or transformation of any kind.</tspan></text>
</g><g transform="translate(645,-2797.5)"><rect style="fill:#f9f1d9;fill-rule:evenodd;stroke:none" width="215" height="1036.5" x="0" y="2797.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="2818.5" id="sect1"><tspan x="33" y="2818.5" sodipodi:role="line" id="sect-tspan1">Node tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2829" id="title36"><tspan x="33" y="2829" sodipodi:role="line" id="title-tspan36">Keyboard select</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,2832)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2835.7"><tspan x="52.72" y="2835.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2837" id="action190"><tspan x="67" y="2837" sodipodi:role="line" id="action-tspan190">select next node</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,2840)"/><use xlink:href="#misc" transform="translate(51.62,2840)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2843.7"><tspan x="52.72" y="2843.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2845" id="action191"><tspan x="67" y="2845" sodipodi:role="line" id="action-tspan191">select previous node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2850" id="note110"><tspan x="8" y="2850" sodipodi:role="line" id="note-tspan110">These keys select nodes within the selected path</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,2852)"/><use xlink:href="#letterkey" transform="translate(56,2852)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2856.66851145"><tspan x="57.7" y="2856.66851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2857" id="action192"><tspan x="67" y="2857" sodipodi:role="line" id="action-tspan192">select all nodes in subpath(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2862" id="note111"><tspan x="8" y="2862" sodipodi:role="line" id="note-tspan111">If the path has multiple subpaths and some nodes selected, this selects all only in subpaths with already selected nodes.</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,2864)"/><use xlink:href="#alt" transform="translate(45.33,2864)"/><use xlink:href="#letterkey" transform="translate(56,2864)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2868.66851145"><tspan x="57.7" y="2868.66851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2869" id="action193"><tspan x="67" y="2869" sodipodi:role="line" id="action-tspan193">select all nodes in path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2874" id="note112"><tspan x="8" y="2874" sodipodi:role="line" id="note-tspan112">This selects all nodes in the entire path.</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,2876)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2880.66851145"><tspan x="57.7" y="2880.66851145" sodipodi:role="line">!</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2881" id="action194"><tspan x="67" y="2881" sodipodi:role="line" id="action-tspan194">invert selection in subpath(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2886" id="note113"><tspan x="8" y="2886" sodipodi:role="line" id="note-tspan113">If the path has multiple subpaths and some nodes selected, this inverts selection only in subpaths with already selected nodes.</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,2888)"/><use xlink:href="#letterkey" transform="translate(56,2888)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2892.66851145"><tspan x="57.7" y="2892.66851145" sodipodi:role="line">!</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2893" id="action195"><tspan x="67" y="2893" sodipodi:role="line" id="action-tspan195">invert selection in path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2898" id="note114"><tspan x="8" y="2898" sodipodi:role="line" id="note-tspan114">This inverts selection (deselects what was selected and vice versa) in the entire path.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,2900)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="2903.7"><tspan x="52.72" y="2903.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2905" id="action196"><tspan x="67" y="2905" sodipodi:role="line" id="action-tspan196">deselect all nodes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2915" id="title37"><tspan x="33" y="2915" sodipodi:role="line" id="title-tspan37">Keyboard move</tspan></text>
<use xlink:href="#arrows" transform="translate(51.62,2918.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2923.5" id="action197"><tspan x="67" y="2923.5" sodipodi:role="line" id="action-tspan197">move selected node(s) by the nudge distance</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,2930)"/><use xlink:href="#arrows" transform="translate(51.62,2930)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2935" id="action198"><tspan x="67" y="2935" sodipodi:role="line" id="action-tspan198">move selected node(s) by 10x nudge distance</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2943" id="note115"><tspan x="8" y="2943" sodipodi:role="line" id="note-tspan115">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(40.95,2945.5)"/><use xlink:href="#arrows" transform="translate(51.62,2945.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2950.5" id="action199"><tspan x="67" y="2950.5" sodipodi:role="line" id="action-tspan199">move selected node(s) by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(25.49,2957)"/><use xlink:href="#shift" transform="translate(36.16,2957)"/><use xlink:href="#arrows" transform="translate(51.62,2957)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2962" id="action200"><tspan x="67" y="2962" sodipodi:role="line" id="action-tspan200">move selected node(s) by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2970" id="note116"><tspan x="8" y="2970" sodipodi:role="line" id="note-tspan116">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="2979" id="title38"><tspan x="33" y="2979" sodipodi:role="line" id="title-tspan38">Keyboard handle scale (1 node selected)</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,2982)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2986.66851145"><tspan x="26.7" y="2986.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2987"><tspan x="32" y="2987" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,2982)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2986.66851145"><tspan x="57.7" y="2986.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2987" id="action201"><tspan x="67" y="2987" sodipodi:role="line" id="action-tspan201">contract/expand both handles by scale step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="2992" id="note117"><tspan x="8" y="2992" sodipodi:role="line" id="note-tspan117">The default scale step is 2 px (SVG pixel units, not screen pixels). May apply to more than one node.</tspan></text>
<use xlink:href="#left" transform="translate(3.92,2994)"/><use xlink:href="#ctrl" transform="translate(12.62,2994)"/><use xlink:href="#letterkey" transform="translate(25,2994)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="2998.66851145"><tspan x="26.7" y="2998.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="2999"><tspan x="32" y="2999" sodipodi:role="line">,</tspan></text><use xlink:href="#left" transform="translate(34.92,2994)"/><use xlink:href="#ctrl" transform="translate(43.62,2994)"/><use xlink:href="#letterkey" transform="translate(56,2994)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="2998.66851145"><tspan x="57.7" y="2998.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="2999" id="action202"><tspan x="67" y="2999" sodipodi:role="line" id="action-tspan202">scale left handle by the scale step</tspan></text>
<use xlink:href="#right" transform="translate(1.72,3002)"/><use xlink:href="#ctrl" transform="translate(12.62,3002)"/><use xlink:href="#letterkey" transform="translate(25,3002)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3006.66851145"><tspan x="26.7" y="3006.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3007"><tspan x="32" y="3007" sodipodi:role="line">,</tspan></text><use xlink:href="#right" transform="translate(32.72,3002)"/><use xlink:href="#ctrl" transform="translate(43.62,3002)"/><use xlink:href="#letterkey" transform="translate(56,3002)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3006.66851145"><tspan x="57.7" y="3006.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3007" id="action203"><tspan x="67" y="3007" sodipodi:role="line" id="action-tspan203">scale right handle by the scale step</tspan></text>
<use xlink:href="#left" transform="translate(5.63,3010)"/><use xlink:href="#alt" transform="translate(14.33,3010)"/><use xlink:href="#letterkey" transform="translate(25,3010)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3014.66851145"><tspan x="26.7" y="3014.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3015"><tspan x="32" y="3015" sodipodi:role="line">,</tspan></text><use xlink:href="#left" transform="translate(36.63,3010)"/><use xlink:href="#alt" transform="translate(45.33,3010)"/><use xlink:href="#letterkey" transform="translate(56,3010)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3014.66851145"><tspan x="57.7" y="3014.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3015" id="action204"><tspan x="67" y="3015" sodipodi:role="line" id="action-tspan204">scale left handle by 1 pixel</tspan></text>
<use xlink:href="#right" transform="translate(3.43,3018)"/><use xlink:href="#alt" transform="translate(14.33,3018)"/><use xlink:href="#letterkey" transform="translate(25,3018)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3022.66851145"><tspan x="26.7" y="3022.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3023"><tspan x="32" y="3023" sodipodi:role="line">,</tspan></text><use xlink:href="#right" transform="translate(34.43,3018)"/><use xlink:href="#alt" transform="translate(45.33,3018)"/><use xlink:href="#letterkey" transform="translate(56,3018)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3022.66851145"><tspan x="57.7" y="3022.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3023" id="action205"><tspan x="67" y="3023" sodipodi:role="line" id="action-tspan205">scale right handle by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3028" id="note118"><tspan x="8" y="3028" sodipodi:role="line" id="note-tspan118">The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3032" id="note119"><tspan x="8" y="3032" sodipodi:role="line" id="note-tspan119">Instead of the < and > keys, you can use the , (comma) and . (period) keys respectively.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3041" id="title39"><tspan x="33" y="3041" sodipodi:role="line" id="title-tspan39">Keyboard handle rotate (1 node selected)</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,3044)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3048.66851145"><tspan x="26.7" y="3048.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3049"><tspan x="32" y="3049" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,3044)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3048.66851145"><tspan x="57.7" y="3048.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3049" id="action206"><tspan x="67" y="3049" sodipodi:role="line" id="action-tspan206">rotate both handles by the angle step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3054" id="note120"><tspan x="8" y="3054" sodipodi:role="line" id="note-tspan120">The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise. May apply to more than one node.</tspan></text>
<use xlink:href="#left" transform="translate(3.92,3056)"/><use xlink:href="#ctrl" transform="translate(12.62,3056)"/><use xlink:href="#letterkey" transform="translate(25,3056)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3060.66851145"><tspan x="26.7" y="3060.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3061"><tspan x="32" y="3061" sodipodi:role="line">,</tspan></text><use xlink:href="#left" transform="translate(34.92,3056)"/><use xlink:href="#ctrl" transform="translate(43.62,3056)"/><use xlink:href="#letterkey" transform="translate(56,3056)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3060.66851145"><tspan x="57.7" y="3060.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3061" id="action207"><tspan x="67" y="3061" sodipodi:role="line" id="action-tspan207">rotate left handle by the angle step</tspan></text>
<use xlink:href="#right" transform="translate(1.72,3064)"/><use xlink:href="#ctrl" transform="translate(12.62,3064)"/><use xlink:href="#letterkey" transform="translate(25,3064)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3068.66851145"><tspan x="26.7" y="3068.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3069"><tspan x="32" y="3069" sodipodi:role="line">,</tspan></text><use xlink:href="#right" transform="translate(32.72,3064)"/><use xlink:href="#ctrl" transform="translate(43.62,3064)"/><use xlink:href="#letterkey" transform="translate(56,3064)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3068.66851145"><tspan x="57.7" y="3068.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3069" id="action208"><tspan x="67" y="3069" sodipodi:role="line" id="action-tspan208">rotate right handle by the angle step</tspan></text>
<use xlink:href="#left" transform="translate(5.63,3072)"/><use xlink:href="#alt" transform="translate(14.33,3072)"/><use xlink:href="#letterkey" transform="translate(25,3072)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3076.66851145"><tspan x="26.7" y="3076.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3077"><tspan x="32" y="3077" sodipodi:role="line">,</tspan></text><use xlink:href="#left" transform="translate(36.63,3072)"/><use xlink:href="#alt" transform="translate(45.33,3072)"/><use xlink:href="#letterkey" transform="translate(56,3072)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3076.66851145"><tspan x="57.7" y="3076.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3077" id="action209"><tspan x="67" y="3077" sodipodi:role="line" id="action-tspan209">rotate left handle by 1 pixel</tspan></text>
<use xlink:href="#right" transform="translate(3.43,3080)"/><use xlink:href="#alt" transform="translate(14.33,3080)"/><use xlink:href="#letterkey" transform="translate(25,3080)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3084.66851145"><tspan x="26.7" y="3084.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3085"><tspan x="32" y="3085" sodipodi:role="line">,</tspan></text><use xlink:href="#right" transform="translate(34.43,3080)"/><use xlink:href="#alt" transform="translate(45.33,3080)"/><use xlink:href="#letterkey" transform="translate(56,3080)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3084.66851145"><tspan x="57.7" y="3084.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3085" id="action210"><tspan x="67" y="3085" sodipodi:role="line" id="action-tspan210">rotate right handle by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3095" id="title40"><tspan x="33" y="3095" sodipodi:role="line" id="title-tspan40">Keyboard scale (>1 nodes selected)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3100" id="note121"><tspan x="8" y="3100" sodipodi:role="line" id="note-tspan121">These commands scale the selected nodes as if they were an "object", around the center of that object.</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,3102)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3106.66851145"><tspan x="26.7" y="3106.66851145" sodipodi:role="line">.</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3107"><tspan x="32" y="3107" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,3102)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3106.66851145"><tspan x="57.7" y="3106.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3107" id="action211"><tspan x="67" y="3107" sodipodi:role="line" id="action-tspan211">scale nodes up by the scale step</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,3110)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3114.66851145"><tspan x="26.7" y="3114.66851145" sodipodi:role="line">,</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3115"><tspan x="32" y="3115" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,3110)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3114.66851145"><tspan x="57.7" y="3114.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3115" id="action212"><tspan x="67" y="3115" sodipodi:role="line" id="action-tspan212">scale nodes down by the scale step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3120" id="note122"><tspan x="8" y="3120" sodipodi:role="line" id="note-tspan122">The default scale step is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,3122)"/><use xlink:href="#letterkey" transform="translate(25,3122)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3126.66851145"><tspan x="26.7" y="3126.66851145" sodipodi:role="line">.</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3127"><tspan x="32" y="3127" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,3122)"/><use xlink:href="#letterkey" transform="translate(56,3122)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3126.66851145"><tspan x="57.7" y="3126.66851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3127" id="action213"><tspan x="67" y="3127" sodipodi:role="line" id="action-tspan213">scale nodes up by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,3130)"/><use xlink:href="#letterkey" transform="translate(25,3130)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3134.66851145"><tspan x="26.7" y="3134.66851145" sodipodi:role="line">,</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3135"><tspan x="32" y="3135" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,3130)"/><use xlink:href="#letterkey" transform="translate(56,3130)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3134.66851145"><tspan x="57.7" y="3134.66851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3135" id="action214"><tspan x="67" y="3135" sodipodi:role="line" id="action-tspan214">scale nodes down by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3140" id="note123"><tspan x="8" y="3140" sodipodi:role="line" id="note-tspan123">The actual size increment for pixel scaling depends on zoom level. Zoom in for finer scaling.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3144" id="note124"><tspan x="8" y="3144" sodipodi:role="line" id="note-tspan124">Scaling is uniform around the center, so that the size increment applies to the larger of the two dimensions.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3153" id="title41"><tspan x="33" y="3153" sodipodi:role="line" id="title-tspan41">Keyboard rotate (>1 nodes selected)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3158" id="note125"><tspan x="8" y="3158" sodipodi:role="line" id="note-tspan125">These commands rotate the selected nodes as if they were an "object", around the center of that object.</tspan></text>
<use xlink:href="#letterkey" transform="translate(25,3160)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3164.66851145"><tspan x="26.7" y="3164.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3165"><tspan x="32" y="3165" sodipodi:role="line">,</tspan></text><use xlink:href="#letterkey" transform="translate(56,3160)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3164.66851145"><tspan x="57.7" y="3164.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3165" id="action215"><tspan x="67" y="3165" sodipodi:role="line" id="action-tspan215">rotate nodes by the angle step</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3170" id="note126"><tspan x="8" y="3170" sodipodi:role="line" id="note-tspan126">The default angle step is 15 degrees. ] rotates clockwise, [ rotates counterclockwise.</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,3172)"/><use xlink:href="#letterkey" transform="translate(25,3172)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="3176.66851145"><tspan x="26.7" y="3176.66851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3177"><tspan x="32" y="3177" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,3172)"/><use xlink:href="#letterkey" transform="translate(56,3172)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3176.66851145"><tspan x="57.7" y="3176.66851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3177" id="action216"><tspan x="67" y="3177" sodipodi:role="line" id="action-tspan216">rotate nodes by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3182" id="note127"><tspan x="8" y="3182" sodipodi:role="line" id="note-tspan127">The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3191" id="title42"><tspan x="33" y="3191" sodipodi:role="line" id="title-tspan42">Keyboard flip (>1 nodes selected)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3196" id="note128"><tspan x="8" y="3196" sodipodi:role="line" id="note-tspan128">These commands flip the selected nodes as if they were an "object", around the center of that object.</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,3198)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3202.66851145"><tspan x="57.7" y="3202.66851145" sodipodi:role="line">h</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3203" id="action217"><tspan x="67" y="3203" sodipodi:role="line" id="action-tspan217">flip nodes horizontally</tspan></text>
<use xlink:href="#letterkey" transform="translate(56,3206)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3210.66851145"><tspan x="57.7" y="3210.66851145" sodipodi:role="line">v</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3211" id="action218"><tspan x="67" y="3211" sodipodi:role="line" id="action-tspan218">flip nodes vertically</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3221" id="title43"><tspan x="33" y="3221" sodipodi:role="line" id="title-tspan43">Change segment(s)</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3224)"/><use xlink:href="#letterkey" transform="translate(56,3224)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3228.66851145"><tspan x="57.7" y="3228.66851145" sodipodi:role="line">L</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3229" id="action219"><tspan x="67" y="3229" sodipodi:role="line" id="action-tspan219">make line</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3232)"/><use xlink:href="#letterkey" transform="translate(56,3232)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3236.66851145"><tspan x="57.7" y="3236.66851145" sodipodi:role="line">U</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3237" id="action220"><tspan x="67" y="3237" sodipodi:role="line" id="action-tspan220">make curve</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3242" id="note129"><tspan x="8" y="3242" sodipodi:role="line" id="note-tspan129">These commands require that more than two adjacent nodes be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3251" id="title44"><tspan x="33" y="3251" sodipodi:role="line" id="title-tspan44">Change node type</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3254)"/><use xlink:href="#letterkey" transform="translate(56,3254)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3258.66851145"><tspan x="57.7" y="3258.66851145" sodipodi:role="line">C</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3259" id="action221"><tspan x="67" y="3259" sodipodi:role="line" id="action-tspan221">make cusp</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3262)"/><use xlink:href="#letterkey" transform="translate(56,3262)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3266.66851145"><tspan x="57.7" y="3266.66851145" sodipodi:role="line">S</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3267" id="action222"><tspan x="67" y="3267" sodipodi:role="line" id="action-tspan222">make smooth</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3270)"/><use xlink:href="#letterkey" transform="translate(56,3270)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3274.66851145"><tspan x="57.7" y="3274.66851145" sodipodi:role="line">Y</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3275" id="action223"><tspan x="67" y="3275" sodipodi:role="line" id="action-tspan223">make symmetric</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3280" id="note130"><tspan x="8" y="3280" sodipodi:role="line" id="note-tspan130">When making smooth or symmetric, you can lock the position of one of the handles by hovering mouse over it.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3282.5)"/><use xlink:href="#left-click" transform="translate(57,3282.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3287.5" id="action224"><tspan x="67" y="3287.5" sodipodi:role="line" id="action-tspan224">toggle smooth/cusp/symmetric</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3300.5" id="title45"><tspan x="33" y="3300.5" sodipodi:role="line" id="title-tspan45">Join/break</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3303.5)"/><use xlink:href="#letterkey" transform="translate(56,3303.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3308.16851145"><tspan x="57.7" y="3308.16851145" sodipodi:role="line">J</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3308.5" id="action225"><tspan x="67" y="3308.5" sodipodi:role="line" id="action-tspan225">join selected nodes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3313.5" id="note131"><tspan x="8" y="3313.5" sodipodi:role="line" id="note-tspan131">This requires that exactly two end nodes within the path be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3317.5" id="note132"><tspan x="8" y="3317.5" sodipodi:role="line" id="note-tspan132">You can lock the position of one of the two joined nodes by hovering mouse over it.</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3319.5)"/><use xlink:href="#letterkey" transform="translate(56,3319.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3324.16851145"><tspan x="57.7" y="3324.16851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3324.5" id="action226"><tspan x="67" y="3324.5" sodipodi:role="line" id="action-tspan226">break selected node(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3329.5" id="note133"><tspan x="8" y="3329.5" sodipodi:role="line" id="note-tspan133">After break, only one of each two new nodes is selected. May apply to more than one node.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3338.5" id="title46"><tspan x="33" y="3338.5" sodipodi:role="line" id="title-tspan46">Delete, create, duplicate</tspan></text>
<use xlink:href="#misc-wide" transform="translate(15.54,3341.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="16.64" y="3345.2"><tspan x="16.64" y="3345.2" sodipodi:role="line">Backspace</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3346.5"><tspan x="32" y="3346.5" sodipodi:role="line">,</tspan></text><use xlink:href="#misc" transform="translate(51.62,3341.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="3345.2"><tspan x="52.72" y="3345.2" sodipodi:role="line">Del</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3346.5" id="action227"><tspan x="67" y="3346.5" sodipodi:role="line" id="action-tspan227">delete selected node(s)</tspan></text>
<use xlink:href="#ctrl" transform="translate(3.16,3349.5)"/><use xlink:href="#misc-wide" transform="translate(15.54,3349.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="16.64" y="3353.2"><tspan x="16.64" y="3353.2" sodipodi:role="line">Backspace</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="3354.5"><tspan x="32" y="3354.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(39.24,3349.5)"/><use xlink:href="#misc" transform="translate(51.62,3349.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="3353.2"><tspan x="52.72" y="3353.2" sodipodi:role="line">Del</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3354.5" id="action228"><tspan x="67" y="3354.5" sodipodi:role="line" id="action-tspan228">delete without preserving shape</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3359.5" id="note134"><tspan x="8" y="3359.5" sodipodi:role="line" id="note-tspan134">Deleting without Ctrl adjusts handles on the remaining nodes to preserve the shape of the curve as much as possible.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3363.5" id="note135"><tspan x="8" y="3363.5" sodipodi:role="line" id="note-tspan135">Deleting with Ctrl does not touch the remaining nodes.</tspan></text>
<use xlink:href="#ctrl" transform="translate(33.95,3366)"/><use xlink:href="#alt" transform="translate(46.33,3366)"/><use xlink:href="#left-click" transform="translate(57,3366)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3371" id="action229"><tspan x="67" y="3371" sodipodi:role="line" id="action-tspan229">create/delete node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3379" id="note136"><tspan x="8" y="3379" sodipodi:role="line" id="note-tspan136">Ctrl+Alt+click on a node deletes it; Ctrl+Alt+click on the path between nodes creates a new node in the click point.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3383" id="note137"><tspan x="8" y="3383" sodipodi:role="line" id="note-tspan137">Deleting nodes this way always tries to preserve the shape of the curve (same as Del/Backspace).</tspan></text>
<use xlink:href="#left-click" transform="translate(50,3385.5)"/><use xlink:href="#left-click" transform="translate(57,3385.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3390.5" id="action230"><tspan x="67" y="3390.5" sodipodi:role="line" id="action-tspan230">create node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3398.5" id="note138"><tspan x="8" y="3398.5" sodipodi:role="line" id="note-tspan138">Double clicking on the path between nodes creates a node in the click point.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,3400.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="3404.2"><tspan x="52.72" y="3404.2" sodipodi:role="line">Ins</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3405.5" id="action231"><tspan x="67" y="3405.5" sodipodi:role="line" id="action-tspan231">insert new node(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3410.5" id="note139"><tspan x="8" y="3410.5" sodipodi:role="line" id="note-tspan139">This adds new node(s) in the middle(s) of selected segment(s), so it requires that more than two adjacent nodes be selected.</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3412.5)"/><use xlink:href="#letterkey" transform="translate(56,3412.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3417.16851145"><tspan x="57.7" y="3417.16851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3417.5" id="action232"><tspan x="67" y="3417.5" sodipodi:role="line" id="action-tspan232">duplicate selected node(s)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3422.5" id="note140"><tspan x="8" y="3422.5" sodipodi:role="line" id="note-tspan140">New nodes are created on the same path; they are placed exactly over the old ones and are selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3431.5" id="title47"><tspan x="33" y="3431.5" sodipodi:role="line" id="title-tspan47">Mouse select: objects</tspan></text>
<use xlink:href="#left-click" transform="translate(57,3435)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3440" id="action233"><tspan x="67" y="3440" sodipodi:role="line" id="action-tspan233">click a non-selected object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,3446.5)"/><use xlink:href="#left-click" transform="translate(57,3446.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3451.5" id="action234"><tspan x="67" y="3451.5" sodipodi:role="line" id="action-tspan234">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3458)"/><use xlink:href="#left-click" transform="translate(57,3458)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3463" id="action235"><tspan x="67" y="3463" sodipodi:role="line" id="action-tspan235">toggle selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3471" id="note141"><tspan x="8" y="3471" sodipodi:role="line" id="note-tspan141">These work the same as in Selector. The nodes or handles of the single selected object become editable.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3480" id="title48"><tspan x="33" y="3480" sodipodi:role="line" id="title-tspan48">Mouse select: nodes</tspan></text>
<use xlink:href="#left-click" transform="translate(57,3483.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3488.5" id="action236"><tspan x="67" y="3488.5" sodipodi:role="line" id="action-tspan236">select a node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3496.5" id="note142"><tspan x="8" y="3496.5" sodipodi:role="line" id="note-tspan142">Clicking on a node selects it.</tspan></text>
<use xlink:href="#left-click" transform="translate(57,3499)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3504" id="action237"><tspan x="67" y="3504" sodipodi:role="line" id="action-tspan237">select two adjacent nodes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3512" id="note143"><tspan x="8" y="3512" sodipodi:role="line" id="note-tspan143">Clicking on a selected path between the nodes selects the two nodes closest to the click point.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3514.5)"/><use xlink:href="#left-click" transform="translate(57,3514.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3519.5" id="action238"><tspan x="67" y="3519.5" sodipodi:role="line" id="action-tspan238">toggle selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3527.5" id="note144"><tspan x="8" y="3527.5" sodipodi:role="line" id="note-tspan144">This adds/removes a node (if clicked on node) or two nodes (if clicked on path) to/from the node selection.</tspan></text>
<use xlink:href="#left-click" transform="translate(57,3530)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3535" id="action239"><tspan x="67" y="3535" sodipodi:role="line" id="action-tspan239">deselect</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3543" id="note145"><tspan x="8" y="3543" sodipodi:role="line" id="note-tspan145">Clicking in an empty space deselects all selected nodes. Next click will deselect the object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3552" id="title49"><tspan x="33" y="3552" sodipodi:role="line" id="title-tspan49">Rubberband</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,3555.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3560.5" id="action240"><tspan x="67" y="3560.5" sodipodi:role="line" id="action-tspan240">select multiple nodes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3568.5" id="note146"><tspan x="8" y="3568.5" sodipodi:role="line" id="note-tspan146">Dragging around nodes does "rubberband" selection; previous node selection is deselected.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3571)"/><use xlink:href="#left-drag" transform="translate(57,3571)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3576" id="action241"><tspan x="67" y="3576" sodipodi:role="line" id="action-tspan241">add nodes to selection</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3584" id="note147"><tspan x="8" y="3584" sodipodi:role="line" id="note-tspan147">Normally, you need to start from a point not over a path or a node to initiate a rubberband.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3588" id="note148"><tspan x="8" y="3588" sodipodi:role="line" id="note-tspan148">However, if you press Shift before dragging, Inkscape will do rubberband selection even if you start over the path.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3597" id="title50"><tspan x="33" y="3597" sodipodi:role="line" id="title-tspan50">Node move (mouse)</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,3600.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3605.5" id="action242"><tspan x="67" y="3605.5" sodipodi:role="line" id="action-tspan242">move selected nodes</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3612)"/><use xlink:href="#left-drag" transform="translate(57,3612)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3617" id="action243"><tspan x="67" y="3617" sodipodi:role="line" id="action-tspan243">restrict movement to horizontal or vertical</tspan></text>
<use xlink:href="#ctrl" transform="translate(33.95,3623.5)"/><use xlink:href="#alt" transform="translate(46.33,3623.5)"/><use xlink:href="#left-drag" transform="translate(57,3623.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3628.5" id="action244"><tspan x="67" y="3628.5" sodipodi:role="line" id="action-tspan244">move along handles</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3636.5" id="note149"><tspan x="8" y="3636.5" sodipodi:role="line" id="note-tspan149">This restricts movement to the directions of the node's handles, their continuations and perpendiculars (total 8 snaps).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3640.5" id="note150"><tspan x="8" y="3640.5" sodipodi:role="line" id="note-tspan150">If the node has straight lines on one or both sides, this will snap it to these lines' directions and perpendiculars instead.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3643)"/><use xlink:href="#left-drag" transform="translate(57,3643)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3648" id="action245"><tspan x="67" y="3648" sodipodi:role="line" id="action-tspan245">temporarily disable snapping</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3656" id="note151"><tspan x="8" y="3656" sodipodi:role="line" id="note-tspan151">Snapping nodes is enabled in Document Preferences. By default, only bounding box of objects snaps to grid/guides.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3658.5)"/><use xlink:href="#left-drag" transform="translate(57,3658.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3663.5" id="action246"><tspan x="67" y="3663.5" sodipodi:role="line" id="action-tspan246">drag out handle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3671.5" id="note152"><tspan x="8" y="3671.5" sodipodi:role="line" id="note-tspan152">If a node has a retracted handle, dragging with Shift lets you drag it out of the node.</tspan></text>
<use xlink:href="#left-drag" transform="translate(38.54,3674)"/><use xlink:href="#misc-wide" transform="translate(46.54,3674)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="3677.7"><tspan x="47.64" y="3677.7" sodipodi:role="line">Space</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3679" id="action247"><tspan x="67" y="3679" sodipodi:role="line" id="action-tspan247">drop a copy</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3687" id="note153"><tspan x="8" y="3687" sodipodi:role="line" id="note-tspan153">When dragging nodes with mouse, each Space leaves a copy of the selected object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3691" id="note154"><tspan x="8" y="3691" sodipodi:role="line" id="note-tspan154">You can press and hold Space while dragging for a nice "trail."</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3700" id="title51"><tspan x="33" y="3700" sodipodi:role="line" id="title-tspan51">Node handles</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,3703.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3708.5" id="action248"><tspan x="67" y="3708.5" sodipodi:role="line" id="action-tspan248">move a node handle</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3715)"/><use xlink:href="#left-drag" transform="translate(57,3715)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3720" id="action249"><tspan x="67" y="3720" sodipodi:role="line" id="action-tspan249">snap the handle to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3728" id="note155"><tspan x="8" y="3728" sodipodi:role="line" id="note-tspan155">The default angle step is 15 degrees. This also snaps to the handle's original angle, its continuation and perpendiculars.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3730.5)"/><use xlink:href="#left-drag" transform="translate(57,3730.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3735.5" id="action250"><tspan x="67" y="3735.5" sodipodi:role="line" id="action-tspan250">rotate both handles</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,3742)"/><use xlink:href="#left-drag" transform="translate(57,3742)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3747" id="action251"><tspan x="67" y="3747" sodipodi:role="line" id="action-tspan251">lock the handle length</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3755" id="note156"><tspan x="8" y="3755" sodipodi:role="line" id="note-tspan156">Ctrl, Shift, Alt can be combined when dragging handles.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3757.5)"/><use xlink:href="#left-click" transform="translate(57,3757.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3762.5" id="action252"><tspan x="67" y="3762.5" sodipodi:role="line" id="action-tspan252">retract the handle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3770.5" id="note157"><tspan x="8" y="3770.5" sodipodi:role="line" id="note-tspan157">Retracted handle is zero length; use Shift+drag to drag it back out.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3779.5" id="title52"><tspan x="33" y="3779.5" sodipodi:role="line" id="title-tspan52">Reversing</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,3782.5)"/><use xlink:href="#letterkey" transform="translate(56,3782.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="3787.16851145"><tspan x="57.7" y="3787.16851145" sodipodi:role="line">r</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3787.5" id="action253"><tspan x="67" y="3787.5" sodipodi:role="line" id="action-tspan253">reverse path direction</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3797.5" id="title53"><tspan x="33" y="3797.5" sodipodi:role="line" id="title-tspan53">Editing shapes</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3802.5" id="note158"><tspan x="8" y="3802.5" sodipodi:role="line" id="note-tspan158">Node tool can also drag the handles of shapes (rectangles, ellipses, stars, spirals). Click on a shape to select it.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3806.5" id="note159"><tspan x="8" y="3806.5" sodipodi:role="line" id="note-tspan159">See the corresponding shape tools for their editing shortcuts, all of which also work in node tool.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3815.5" id="title54"><tspan x="33" y="3815.5" sodipodi:role="line" id="title-tspan54">Cancel</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,3818.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="3822.2"><tspan x="52.72" y="3822.2" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3823.5" id="action254"><tspan x="67" y="3823.5" sodipodi:role="line" id="action-tspan254">cancel rubberband or move</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3828.5" id="note160"><tspan x="8" y="3828.5" sodipodi:role="line" id="note-tspan160">Press Esc while mouse button is still down to cancel rubberband selection, node move, handle move, or handle move.</tspan></text>
</g><g transform="translate(860,-3834)"><rect style="fill:#ebf1fd;fill-rule:evenodd;stroke:none" width="215" height="183.5" x="0" y="3834"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="3855" id="sect1"><tspan x="33" y="3855" sodipodi:role="line" id="sect-tspan1">Rectangle tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3865.5" id="title55"><tspan x="33" y="3865.5" sodipodi:role="line" id="title-tspan55">Drawing</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,3869)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3874" id="action255"><tspan x="67" y="3874" sodipodi:role="line" id="action-tspan255">draw a rectangle</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3880.5)"/><use xlink:href="#left-drag" transform="translate(57,3880.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3885.5" id="action256"><tspan x="67" y="3885.5" sodipodi:role="line" id="action-tspan256">make a square or integer-ratio rectangle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3893.5" id="note161"><tspan x="8" y="3893.5" sodipodi:role="line" id="note-tspan161">This restricts rectangle so its height/width ratio is a whole number.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3896)"/><use xlink:href="#left-drag" transform="translate(57,3896)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3901" id="action257"><tspan x="67" y="3901" sodipodi:role="line" id="action-tspan257">draw around the starting point</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3909" id="note162"><tspan x="8" y="3909" sodipodi:role="line" id="note-tspan162">This creates a rectangle symmetric around the starting point of the mouse drag.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="3918" id="title56"><tspan x="33" y="3918" sodipodi:role="line" id="title-tspan56">Editing</tspan></text>
<use xlink:href="#left-click" transform="translate(57,3921.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3926.5" id="action258"><tspan x="67" y="3926.5" sodipodi:role="line" id="action-tspan258">click an object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,3933)"/><use xlink:href="#left-click" transform="translate(57,3933)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3938" id="action259"><tspan x="67" y="3938" sodipodi:role="line" id="action-tspan259">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,3944.5)"/><use xlink:href="#left-click" transform="translate(57,3944.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3949.5" id="action260"><tspan x="67" y="3949.5" sodipodi:role="line" id="action-tspan260">toggle selection</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,3956)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3961" id="action261"><tspan x="67" y="3961" sodipodi:role="line" id="action-tspan261">drag a handle to resize or round corners</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3969" id="note163"><tspan x="8" y="3969" sodipodi:role="line" id="note-tspan163">Initially, the two rounding handles are in the top right corner; two resize handles are in top left and bottom right corners.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3971.5)"/><use xlink:href="#left-drag" transform="translate(57,3971.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3976.5" id="action262"><tspan x="67" y="3976.5" sodipodi:role="line" id="action-tspan262">lock width, height, or ratio (resize handles)</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,3983)"/><use xlink:href="#left-drag" transform="translate(57,3983)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="3988" id="action263"><tspan x="67" y="3988" sodipodi:role="line" id="action-tspan263">lock the corner circular (rounding handles)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="3996" id="note164"><tspan x="8" y="3996" sodipodi:role="line" id="note-tspan164">Resize handles change the width and height of the rectangle in its own coordinate system, before any transforms are applied.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4000" id="note165"><tspan x="8" y="4000" sodipodi:role="line" id="note-tspan165">When rounding corners, dragging only one rounding handle (with the other at the corner) keeps the corner circular.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4004" id="note166"><tspan x="8" y="4004" sodipodi:role="line" id="note-tspan166">You can drag both handles for an elliptic rounded corner, or drag one with Ctrl to make sure the other one is synchronized.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,4006)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="4009.7"><tspan x="52.72" y="4009.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4011" id="action264"><tspan x="67" y="4011" sodipodi:role="line" id="action-tspan264">deselect</tspan></text>
<rect style="fill:#ffece8;fill-rule:evenodd;stroke:none" width="215" height="179.5" x="0" y="4017.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4038.5" id="sect2"><tspan x="33" y="4038.5" sodipodi:role="line" id="sect-tspan2">Ellipse tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4049" id="title57"><tspan x="33" y="4049" sodipodi:role="line" id="title-tspan57">Drawing</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4052.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4057.5" id="action265"><tspan x="67" y="4057.5" sodipodi:role="line" id="action-tspan265">draw an ellipse</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4064)"/><use xlink:href="#left-drag" transform="translate(57,4064)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4069" id="action266"><tspan x="67" y="4069" sodipodi:role="line" id="action-tspan266">make circle or integer-ratio ellipse</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4077" id="note167"><tspan x="8" y="4077" sodipodi:role="line" id="note-tspan167">This restricts ellipse so its height/width ratio is a whole number.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4079.5)"/><use xlink:href="#left-drag" transform="translate(57,4079.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4084.5" id="action267"><tspan x="67" y="4084.5" sodipodi:role="line" id="action-tspan267">draw around the starting point</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4092.5" id="note168"><tspan x="8" y="4092.5" sodipodi:role="line" id="note-tspan168">This creates an ellipse symmetric around the starting point of the mouse drag.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4101.5" id="title58"><tspan x="33" y="4101.5" sodipodi:role="line" id="title-tspan58">Editing</tspan></text>
<use xlink:href="#left-click" transform="translate(57,4105)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4110" id="action268"><tspan x="67" y="4110" sodipodi:role="line" id="action-tspan268">click an object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4116.5)"/><use xlink:href="#left-click" transform="translate(57,4116.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4121.5" id="action269"><tspan x="67" y="4121.5" sodipodi:role="line" id="action-tspan269">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4128)"/><use xlink:href="#left-click" transform="translate(57,4128)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4133" id="action270"><tspan x="67" y="4133" sodipodi:role="line" id="action-tspan270">toggle selection</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4139.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4144.5" id="action271"><tspan x="67" y="4144.5" sodipodi:role="line" id="action-tspan271">drag a handle to resize, make arc or segment</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4152.5" id="note169"><tspan x="8" y="4152.5" sodipodi:role="line" id="note-tspan169">Initially, the two arc/segment handles are in the rightmost point; two resize handles are at the topmost and leftmost points.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4155)"/><use xlink:href="#left-drag" transform="translate(57,4155)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4160" id="action272"><tspan x="67" y="4160" sodipodi:role="line" id="action-tspan272">lock circle (resize handles)</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4166.5)"/><use xlink:href="#left-drag" transform="translate(57,4166.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4171.5" id="action273"><tspan x="67" y="4171.5" sodipodi:role="line" id="action-tspan273">snap to angle steps (arc/segment handles)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4179.5" id="note170"><tspan x="8" y="4179.5" sodipodi:role="line" id="note-tspan170">Resize handles change the width and height of the ellipse in its own coordinate system, before any transforms are applied.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4183.5" id="note171"><tspan x="8" y="4183.5" sodipodi:role="line" id="note-tspan171">The default angle step is 15 degrees.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,4185.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="4189.2"><tspan x="52.72" y="4189.2" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4190.5" id="action274"><tspan x="67" y="4190.5" sodipodi:role="line" id="action-tspan274">deselect</tspan></text>
<rect style="fill:#f8f7d5;fill-rule:evenodd;stroke:none" width="215" height="186.5" x="0" y="4197"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4218" id="sect3"><tspan x="33" y="4218" sodipodi:role="line" id="sect-tspan3">Star tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4228.5" id="title59"><tspan x="33" y="4228.5" sodipodi:role="line" id="title-tspan59">Drawing</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4232)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4237" id="action275"><tspan x="67" y="4237" sodipodi:role="line" id="action-tspan275">draw a star</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4243.5)"/><use xlink:href="#left-drag" transform="translate(57,4243.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4248.5" id="action276"><tspan x="67" y="4248.5" sodipodi:role="line" id="action-tspan276">snap star to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4256.5" id="note172"><tspan x="8" y="4256.5" sodipodi:role="line" id="note-tspan172">The default angle step is 15 degrees.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4265.5" id="title60"><tspan x="33" y="4265.5" sodipodi:role="line" id="title-tspan60">Editing</tspan></text>
<use xlink:href="#left-click" transform="translate(57,4269)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4274" id="action277"><tspan x="67" y="4274" sodipodi:role="line" id="action-tspan277">click an object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4280.5)"/><use xlink:href="#left-click" transform="translate(57,4280.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4285.5" id="action278"><tspan x="67" y="4285.5" sodipodi:role="line" id="action-tspan278">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4292)"/><use xlink:href="#left-click" transform="translate(57,4292)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4297" id="action279"><tspan x="67" y="4297" sodipodi:role="line" id="action-tspan279">toggle selection</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4303.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4308.5" id="action280"><tspan x="67" y="4308.5" sodipodi:role="line" id="action-tspan280">drag a handle to vary the star shape</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4315)"/><use xlink:href="#left-drag" transform="translate(57,4315)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4320" id="action281"><tspan x="67" y="4320" sodipodi:role="line" id="action-tspan281">keep star rays radial (no skew)</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4326.5)"/><use xlink:href="#left-drag" transform="translate(57,4326.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4331.5" id="action282"><tspan x="67" y="4331.5" sodipodi:role="line" id="action-tspan282">round the star</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4338)"/><use xlink:href="#left-click" transform="translate(57,4338)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4343" id="action283"><tspan x="67" y="4343" sodipodi:role="line" id="action-tspan283">remove rounding</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4349.5)"/><use xlink:href="#left-drag" transform="translate(57,4349.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4354.5" id="action284"><tspan x="67" y="4354.5" sodipodi:role="line" id="action-tspan284">randomize the star</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4361)"/><use xlink:href="#left-click" transform="translate(57,4361)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4366" id="action285"><tspan x="67" y="4366" sodipodi:role="line" id="action-tspan285">remove randomization</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,4372)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="4375.7"><tspan x="52.72" y="4375.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4377" id="action286"><tspan x="67" y="4377" sodipodi:role="line" id="action-tspan286">deselect</tspan></text>
<rect style="fill:#f3f3f3;fill-rule:evenodd;stroke:none" width="215" height="222" x="0" y="4383.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4404.5" id="sect4"><tspan x="33" y="4404.5" sodipodi:role="line" id="sect-tspan4">Spiral tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4415" id="title61"><tspan x="33" y="4415" sodipodi:role="line" id="title-tspan61">Drawing</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4418.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4423.5" id="action287"><tspan x="67" y="4423.5" sodipodi:role="line" id="action-tspan287">draw a spiral</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4430)"/><use xlink:href="#left-drag" transform="translate(57,4430)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4435" id="action288"><tspan x="67" y="4435" sodipodi:role="line" id="action-tspan288">snap spiral to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4443" id="note173"><tspan x="8" y="4443" sodipodi:role="line" id="note-tspan173">The default angle step is 15 degrees.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4452" id="title62"><tspan x="33" y="4452" sodipodi:role="line" id="title-tspan62">Editing</tspan></text>
<use xlink:href="#left-click" transform="translate(57,4455.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4460.5" id="action289"><tspan x="67" y="4460.5" sodipodi:role="line" id="action-tspan289">click an object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4467)"/><use xlink:href="#left-click" transform="translate(57,4467)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4472" id="action290"><tspan x="67" y="4472" sodipodi:role="line" id="action-tspan290">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4478.5)"/><use xlink:href="#left-click" transform="translate(57,4478.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4483.5" id="action291"><tspan x="67" y="4483.5" sodipodi:role="line" id="action-tspan291">toggle selection</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4490)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4495" id="action292"><tspan x="67" y="4495" sodipodi:role="line" id="action-tspan292">roll/unroll from inside (inner handle)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4503" id="note174"><tspan x="8" y="4503" sodipodi:role="line" id="note-tspan174">Dragging the inner handle adjusts the "inner radius" parameter.</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4505.5)"/><use xlink:href="#left-drag" transform="translate(57,4505.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4510.5" id="action293"><tspan x="67" y="4510.5" sodipodi:role="line" id="action-tspan293">converge/diverge (inner handle)</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,4517)"/><use xlink:href="#left-click" transform="translate(57,4517)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4522" id="action294"><tspan x="67" y="4522" sodipodi:role="line" id="action-tspan294">reset divergence (inner handle)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4530" id="note175"><tspan x="8" y="4530" sodipodi:role="line" id="note-tspan175">Vertical Alt+drag of the inner handle adjusts the "divergence" parameter, Alt+click resets it to 1.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4532.5)"/><use xlink:href="#left-click" transform="translate(57,4532.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4537.5" id="action295"><tspan x="67" y="4537.5" sodipodi:role="line" id="action-tspan295">zero inner radius (inner handle)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4545.5" id="note176"><tspan x="8" y="4545.5" sodipodi:role="line" id="note-tspan176">Shift+click on inner handle makes the spiral start from the center.</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4548)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4553" id="action296"><tspan x="67" y="4553" sodipodi:role="line" id="action-tspan296">roll/unroll from outside (outer handle)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4561" id="note177"><tspan x="8" y="4561" sodipodi:role="line" id="note-tspan177">Dragging the outer handle adjusts the "turns" parameter. Use Shift+Alt+drag to roll/unroll without changing radius.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4563.5)"/><use xlink:href="#left-drag" transform="translate(57,4563.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4568.5" id="action297"><tspan x="67" y="4568.5" sodipodi:role="line" id="action-tspan297">scale/rotate (outer handle)</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4576.5" id="note178"><tspan x="8" y="4576.5" sodipodi:role="line" id="note-tspan178">Use Shift+Alt to rotate only (locks the radius of the spiral).</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4579)"/><use xlink:href="#left-drag" transform="translate(57,4579)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4584" id="action298"><tspan x="67" y="4584" sodipodi:role="line" id="action-tspan298">snap handles to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4592" id="note179"><tspan x="8" y="4592" sodipodi:role="line" id="note-tspan179">The default angle step is 15 degrees. This works for both handles.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,4594)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="4597.7"><tspan x="52.72" y="4597.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4599" id="action299"><tspan x="67" y="4599" sodipodi:role="line" id="action-tspan299">deselect</tspan></text>
</g><g transform="translate(1075,-4605.5)"><rect style="fill:#e7e9f3;fill-rule:evenodd;stroke:none" width="215" height="65.5" x="0" y="4605.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4626.5" id="sect1"><tspan x="33" y="4626.5" sodipodi:role="line" id="sect-tspan1">Zoom tool</tspan></text>
<use xlink:href="#left-click" transform="translate(57,4633.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4638.5" id="action300"><tspan x="67" y="4638.5" sodipodi:role="line" id="action-tspan300">zoom in</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4645)"/><use xlink:href="#left-click" transform="translate(57,4645)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4650" id="action301"><tspan x="67" y="4650" sodipodi:role="line" id="action-tspan301">zoom out</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4656.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4661.5" id="action302"><tspan x="67" y="4661.5" sodipodi:role="line" id="action-tspan302">zoom into the area</tspan></text>
<rect style="fill:#e9efc5;fill-rule:evenodd;stroke:none" width="215" height="73.5" x="0" y="4671"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4692" id="sect2"><tspan x="33" y="4692" sodipodi:role="line" id="sect-tspan2">Pencil tool</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4699)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4704" id="action303"><tspan x="67" y="4704" sodipodi:role="line" id="action-tspan303">draw a freehand line</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4710.5)"/><use xlink:href="#left-drag" transform="translate(57,4710.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4715.5" id="action304"><tspan x="67" y="4715.5" sodipodi:role="line" id="action-tspan304">add to selected path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4723.5" id="note180"><tspan x="8" y="4723.5" sodipodi:role="line" id="note-tspan180">If a path is selected, Shift+dragging anywhere creates a new subpath instead of a new independent path.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4726)"/><use xlink:href="#left-drag" transform="translate(57,4726)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4731" id="action305"><tspan x="67" y="4731" sodipodi:role="line" id="action-tspan305">temporarily disable snapping</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4739" id="note181"><tspan x="8" y="4739" sodipodi:role="line" id="note-tspan181">Shift also temporaily disables snapping to grid or guides when you are drawing with grid or guides on.</tspan></text>
<rect style="fill:#e7f5d7;fill-rule:evenodd;stroke:none" width="215" height="292.5" x="0" y="4744.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="4765.5" id="sect3"><tspan x="33" y="4765.5" sodipodi:role="line" id="sect-tspan3">Pen (Bezier) tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4776" id="title63"><tspan x="33" y="4776" sodipodi:role="line" id="title-tspan63">Create nodes</tspan></text>
<use xlink:href="#left-click" transform="translate(57,4779.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4784.5" id="action306"><tspan x="67" y="4784.5" sodipodi:role="line" id="action-tspan306">create a sharp node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4792.5" id="note182"><tspan x="8" y="4792.5" sodipodi:role="line" id="note-tspan182">If no path is being created, this starts a new path.</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4795)"/><use xlink:href="#left-click" transform="translate(57,4795)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4800" id="action307"><tspan x="67" y="4800" sodipodi:role="line" id="action-tspan307">add to selected path</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4808" id="note183"><tspan x="8" y="4808" sodipodi:role="line" id="note-tspan183">If a path is selected, Shift+clicking anywhere starts a new subpath instead of a new independent path.</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,4810.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4815.5" id="action308"><tspan x="67" y="4815.5" sodipodi:role="line" id="action-tspan308">create a bezier node with two handles</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,4822)"/><use xlink:href="#left-drag" transform="translate(57,4822)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4827" id="action309"><tspan x="67" y="4827" sodipodi:role="line" id="action-tspan309">move only one handle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4835" id="note184"><tspan x="8" y="4835" sodipodi:role="line" id="note-tspan184">This moves only one handle (instead of both) while creating a node, making it cusp.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,4837.5)"/><use xlink:href="#left-drag" transform="translate(57,4837.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4842.5" id="action310"><tspan x="67" y="4842.5" sodipodi:role="line" id="action-tspan310">snap the handle to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4850.5" id="note185"><tspan x="8" y="4850.5" sodipodi:role="line" id="note-tspan185">The default angle step is 15 degrees.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4859.5" id="title64"><tspan x="33" y="4859.5" sodipodi:role="line" id="title-tspan64">Move last node</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4864.5" id="note186"><tspan x="8" y="4864.5" sodipodi:role="line" id="note-tspan186">These commands move the last created node (at the start of the red segment) while creating a path.</tspan></text>
<use xlink:href="#arrows" transform="translate(51.62,4867)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4872" id="action311"><tspan x="67" y="4872" sodipodi:role="line" id="action-tspan311">move last node by the nudge distance</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,4878.5)"/><use xlink:href="#arrows" transform="translate(51.62,4878.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4883.5" id="action312"><tspan x="67" y="4883.5" sodipodi:role="line" id="action-tspan312">move last node by 10x nudge distance</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4891.5" id="note187"><tspan x="8" y="4891.5" sodipodi:role="line" id="note-tspan187">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(40.95,4894)"/><use xlink:href="#arrows" transform="translate(51.62,4894)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4899" id="action313"><tspan x="67" y="4899" sodipodi:role="line" id="action-tspan313">move last node by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(25.49,4905.5)"/><use xlink:href="#shift" transform="translate(36.16,4905.5)"/><use xlink:href="#arrows" transform="translate(51.62,4905.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4910.5" id="action314"><tspan x="67" y="4910.5" sodipodi:role="line" id="action-tspan314">move last node by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4918.5" id="note188"><tspan x="8" y="4918.5" sodipodi:role="line" id="note-tspan188">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4927.5" id="title65"><tspan x="33" y="4927.5" sodipodi:role="line" id="title-tspan65">Create/modify segments</tspan></text>
<use xlink:href="#ctrl" transform="translate(51.62,4930.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4935.5" id="action315"><tspan x="67" y="4935.5" sodipodi:role="line" id="action-tspan315">snap last segment to angle steps</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4940.5" id="note189"><tspan x="8" y="4940.5" sodipodi:role="line" id="note-tspan189">This snaps the new node's angle, relative to the previous node, to angle steps (default 15 degrees).</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,4942.5)"/><use xlink:href="#letterkey" transform="translate(56,4942.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="4947.16851145"><tspan x="57.7" y="4947.16851145" sodipodi:role="line">L</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4947.5" id="action316"><tspan x="67" y="4947.5" sodipodi:role="line" id="action-tspan316">make last segment line</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,4950.5)"/><use xlink:href="#letterkey" transform="translate(56,4950.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="4955.16851145"><tspan x="57.7" y="4955.16851145" sodipodi:role="line">U</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4955.5" id="action317"><tspan x="67" y="4955.5" sodipodi:role="line" id="action-tspan317">make last segment curve</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="4960.5" id="note190"><tspan x="8" y="4960.5" sodipodi:role="line" id="note-tspan190">These commands change the last (red) segment of the path to straight line or curve.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="4969.5" id="title66"><tspan x="33" y="4969.5" sodipodi:role="line" id="title-tspan66">Finish</tspan></text>
<use xlink:href="#misc-wide" transform="translate(46.54,4972.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="4976.2"><tspan x="47.64" y="4976.2" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4977.5" id="action318"><tspan x="67" y="4977.5" sodipodi:role="line" id="action-tspan318">finish current line</tspan></text>
<use xlink:href="#right-click" transform="translate(57,4981)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4986" id="action319"><tspan x="67" y="4986" sodipodi:role="line" id="action-tspan319">finish current line</tspan></text>
<use xlink:href="#left-click" transform="translate(50,4992.5)"/><use xlink:href="#left-click" transform="translate(57,4992.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="4997.5" id="action320"><tspan x="67" y="4997.5" sodipodi:role="line" id="action-tspan320">finish current line</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5005.5" id="note191"><tspan x="8" y="5005.5" sodipodi:role="line" id="note-tspan191">Enter, right click, or double left click finish the current line, discarding the last unfinished (red) segment.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5014.5" id="title67"><tspan x="33" y="5014.5" sodipodi:role="line" id="title-tspan67">Cancel</tspan></text>
<use xlink:href="#misc" transform="translate(20.62,5017.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="5021.2"><tspan x="21.72" y="5021.2" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5022.5"><tspan x="32" y="5022.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,5017.5)"/><use xlink:href="#letterkey" transform="translate(56,5017.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5022.16851145"><tspan x="57.7" y="5022.16851145" sodipodi:role="line">z</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5022.5" id="action321"><tspan x="67" y="5022.5" sodipodi:role="line" id="action-tspan321">cancel current line</tspan></text>
<use xlink:href="#misc-wide" transform="translate(15.54,5025.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="16.64" y="5029.2"><tspan x="16.64" y="5029.2" sodipodi:role="line">Backspace</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5030.5"><tspan x="32" y="5030.5" sodipodi:role="line">,</tspan></text><use xlink:href="#misc" transform="translate(51.62,5025.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5029.2"><tspan x="52.72" y="5029.2" sodipodi:role="line">Del</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5030.5" id="action322"><tspan x="67" y="5030.5" sodipodi:role="line" id="action-tspan322">erase last segment of current line</tspan></text>
<rect style="fill:#e9dfef;fill-rule:evenodd;stroke:none" width="215" height="77.5" x="0" y="5037"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="5058" id="sect4"><tspan x="33" y="5058" sodipodi:role="line" id="sect-tspan4">Calligraphy</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5065)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5070" id="action323"><tspan x="67" y="5070" sodipodi:role="line" id="action-tspan323">draw a calligraphic line</tspan></text>
<use xlink:href="#left-arrow" transform="translate(25,5076.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5081.5"><tspan x="32" y="5081.5" sodipodi:role="line">,</tspan></text><use xlink:href="#right-arrow" transform="translate(56,5076.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5081.5" id="action324"><tspan x="67" y="5081.5" sodipodi:role="line" id="action-tspan324">adjust pen width</tspan></text>
<use xlink:href="#up" transform="translate(25,5088)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5093"><tspan x="32" y="5093" sodipodi:role="line">,</tspan></text><use xlink:href="#down" transform="translate(56,5088)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5093" id="action325"><tspan x="67" y="5093" sodipodi:role="line" id="action-tspan325">adjust pen angle</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5101" id="note192"><tspan x="8" y="5101" sodipodi:role="line" id="note-tspan192">Width and angle can be adjusted while drawing. </tspan></text>
<use xlink:href="#misc" transform="translate(51.62,5103)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5106.7"><tspan x="52.72" y="5106.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5108" id="action326"><tspan x="67" y="5108" sodipodi:role="line" id="action-tspan326">deselect</tspan></text>
<rect style="fill:#e9f3e7;fill-rule:evenodd;stroke:none" width="215" height="239" x="0" y="5114.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="5135.5" id="sect5"><tspan x="33" y="5135.5" sodipodi:role="line" id="sect-tspan5">Gradient tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5146" id="title68"><tspan x="33" y="5146" sodipodi:role="line" id="title-tspan68">Creating gradients</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5149.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5154.5" id="action327"><tspan x="67" y="5154.5" sodipodi:role="line" id="action-tspan327">create gradient</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5162.5" id="note193"><tspan x="8" y="5162.5" sodipodi:role="line" id="note-tspan193">This creates gradient on selected objects. The Controls bar lets you select linear/radial and fill/stroke for the new gradient.</tspan></text>
<use xlink:href="#left-click" transform="translate(50,5165)"/><use xlink:href="#left-click" transform="translate(57,5165)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5170" id="action328"><tspan x="67" y="5170" sodipodi:role="line" id="action-tspan328">create default gradient</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5178" id="note194"><tspan x="8" y="5178" sodipodi:role="line" id="note-tspan194">This creates default (horizontal edge-to-edge for linear, centered edge-to-edge-to-edge for radial) gradient on clicked object. </tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5187" id="title69"><tspan x="33" y="5187" sodipodi:role="line" id="title-tspan69">Handles</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,5190)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5193.7"><tspan x="52.72" y="5193.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5195" id="action329"><tspan x="67" y="5195" sodipodi:role="line" id="action-tspan329">select next handle</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,5198)"/><use xlink:href="#misc" transform="translate(51.62,5198)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5201.7"><tspan x="52.72" y="5201.7" sodipodi:role="line">Tab</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5203" id="action330"><tspan x="67" y="5203" sodipodi:role="line" id="action-tspan330">select previous handle</tspan></text>
<use xlink:href="#arrows" transform="translate(51.62,5206.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5211.5" id="action331"><tspan x="67" y="5211.5" sodipodi:role="line" id="action-tspan331">move selected handle by the nudge distance</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,5218)"/><use xlink:href="#arrows" transform="translate(51.62,5218)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5223" id="action332"><tspan x="67" y="5223" sodipodi:role="line" id="action-tspan332">move selected handle by 10x nudge distance</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5231" id="note195"><tspan x="8" y="5231" sodipodi:role="line" id="note-tspan195">The default nudge distance is 2 px (SVG pixel units, not screen pixels).</tspan></text>
<use xlink:href="#alt" transform="translate(40.95,5233.5)"/><use xlink:href="#arrows" transform="translate(51.62,5233.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5238.5" id="action333"><tspan x="67" y="5238.5" sodipodi:role="line" id="action-tspan333">move selected handle by 1 pixel</tspan></text>
<use xlink:href="#alt" transform="translate(25.49,5245)"/><use xlink:href="#shift" transform="translate(36.16,5245)"/><use xlink:href="#arrows" transform="translate(51.62,5245)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5250" id="action334"><tspan x="67" y="5250" sodipodi:role="line" id="action-tspan334">move selected handle by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5258" id="note196"><tspan x="8" y="5258" sodipodi:role="line" id="note-tspan196">The actual distance for pixel movements depends on zoom level. Zoom in for finer movement.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,5260)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5263.7"><tspan x="52.72" y="5263.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5265" id="action335"><tspan x="67" y="5265" sodipodi:role="line" id="action-tspan335">deselect handle</tspan></text>
<use xlink:href="#left-click" transform="translate(50,5268.5)"/><use xlink:href="#left-click" transform="translate(57,5268.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5273.5" id="action336"><tspan x="67" y="5273.5" sodipodi:role="line" id="action-tspan336">open gradient editor</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5281.5" id="note197"><tspan x="8" y="5281.5" sodipodi:role="line" id="note-tspan197">Double clicking a gradient handle opens the Gradient Editor with that gradient and the clicked handle chosen in the stops list.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5290.5" id="title70"><tspan x="33" y="5290.5" sodipodi:role="line" id="title-tspan70">Reversing</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,5293.5)"/><use xlink:href="#letterkey" transform="translate(56,5293.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5298.16851145"><tspan x="57.7" y="5298.16851145" sodipodi:role="line">r</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5298.5" id="action337"><tspan x="67" y="5298.5" sodipodi:role="line" id="action-tspan337">reverse gradient definition</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5303.5" id="note198"><tspan x="8" y="5303.5" sodipodi:role="line" id="note-tspan198">This mirrors the stop positions of the current gradient without moving the gradient handles.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5312.5" id="title71"><tspan x="33" y="5312.5" sodipodi:role="line" id="title-tspan71">Mouse select</tspan></text>
<use xlink:href="#left-click" transform="translate(57,5316)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5321" id="action338"><tspan x="67" y="5321" sodipodi:role="line" id="action-tspan338">click an object to select</tspan></text>
<use xlink:href="#alt" transform="translate(46.33,5327.5)"/><use xlink:href="#left-click" transform="translate(57,5327.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5332.5" id="action339"><tspan x="67" y="5332.5" sodipodi:role="line" id="action-tspan339">select under</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,5339)"/><use xlink:href="#left-click" transform="translate(57,5339)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5344" id="action340"><tspan x="67" y="5344" sodipodi:role="line" id="action-tspan340">toggle selection</tspan></text>
<rect style="fill:#feeffa;fill-rule:evenodd;stroke:none" width="215" height="112.5" x="0" y="5353.5"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="5374.5" id="sect6"><tspan x="33" y="5374.5" sodipodi:role="line" id="sect-tspan6">Dropper tool</tspan></text>
<use xlink:href="#left-click" transform="translate(57,5381.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5386.5" id="action341"><tspan x="67" y="5386.5" sodipodi:role="line" id="action-tspan341">pick fill color</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,5393)"/><use xlink:href="#left-click" transform="translate(57,5393)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5398" id="action342"><tspan x="67" y="5398" sodipodi:role="line" id="action-tspan342">pick stroke color</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5404.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5409.5" id="action343"><tspan x="67" y="5409.5" sodipodi:role="line" id="action-tspan343">average fill color</tspan></text>
<use xlink:href="#shift" transform="translate(41.54,5416)"/><use xlink:href="#left-drag" transform="translate(57,5416)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5421" id="action344"><tspan x="67" y="5421" sodipodi:role="line" id="action-tspan344">average stroke color</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5429" id="note199"><tspan x="8" y="5429" sodipodi:role="line" id="note-tspan199">Click applies the color under cursor to the current selection. Dragging a radius calculates the average color of a circular area.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5433" id="note200"><tspan x="8" y="5433" sodipodi:role="line" id="note-tspan200">If a gradient handle (in Gradient tool) is selected, it gets the color instead of the entire object.</tspan></text>
<use xlink:href="#alt" transform="translate(15.33,5435.5)"/><use xlink:href="#left-click" transform="translate(26,5435.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32.6" y="5440.5"><tspan x="32.6" y="5440.5" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(46.33,5435.5)"/><use xlink:href="#left-drag" transform="translate(57,5435.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5440.5" id="action345"><tspan x="67" y="5440.5" sodipodi:role="line" id="action-tspan345">pick inverse color</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5448.5" id="note201"><tspan x="8" y="5448.5" sodipodi:role="line" id="note-tspan201">If Alt is pressed, picking color (with or without Shift, by click or by drag) picks the inverse of the color.</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,5450.5)"/><use xlink:href="#letterkey" transform="translate(56,5450.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5455.16851145"><tspan x="57.7" y="5455.16851145" sodipodi:role="line">C</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5455.5" id="action346"><tspan x="67" y="5455.5" sodipodi:role="line" id="action-tspan346">copy color</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5460.5" id="note202"><tspan x="8" y="5460.5" sodipodi:role="line" id="note-tspan202">This copies the color under cursor to the system clipboard, as text in RRGGBBAA format (8 hex digits).</tspan></text>
</g><g transform="translate(1290,-5466)"><rect style="fill:#eefdf3;fill-rule:evenodd;stroke:none" width="215" height="637" x="0" y="5466"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:bold;font-size:24;text-anchor:start;writing-mode:lr;letter-spacing:-2;" x="33" y="5487" id="sect1"><tspan x="33" y="5487" sodipodi:role="line" id="sect-tspan1">Text tool</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5497.5" id="title72"><tspan x="33" y="5497.5" sodipodi:role="line" id="title-tspan72">Selecting/creating</tspan></text>
<use xlink:href="#left-click" transform="translate(57,5501)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5506" id="action347"><tspan x="67" y="5506" sodipodi:role="line" id="action-tspan347">create/select a text object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5514" id="note203"><tspan x="8" y="5514" sodipodi:role="line" id="note-tspan203">Clicking in an empty space or on a non-text creates a text object; now you can type your text.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5518" id="note204"><tspan x="8" y="5518" sodipodi:role="line" id="note-tspan204">Clicking on a text object selects it; cursor is placed near the click point.</tspan></text>
<use xlink:href="#misc" transform="translate(51.62,5520)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5523.7"><tspan x="52.72" y="5523.7" sodipodi:role="line">Esc</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5525" id="action348"><tspan x="67" y="5525" sodipodi:role="line" id="action-tspan348">deselect the text object</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5535" id="title73"><tspan x="33" y="5535" sodipodi:role="line" id="title-tspan73">Text navigation</tspan></text>
<use xlink:href="#arrows" transform="translate(51.62,5538.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5543.5" id="action349"><tspan x="67" y="5543.5" sodipodi:role="line" id="action-tspan349">move cursor by one character</tspan></text>
<use xlink:href="#ctrl" transform="translate(20.62,5550)"/><use xlink:href="#left-arrow" transform="translate(25,5550)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5555"><tspan x="32" y="5555" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(51.62,5550)"/><use xlink:href="#right-arrow" transform="translate(56,5550)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5555" id="action350"><tspan x="67" y="5555" sodipodi:role="line" id="action-tspan350">move cursor by one word</tspan></text>
<use xlink:href="#ctrl" transform="translate(20.62,5561.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5566.5"><tspan x="32" y="5566.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(51.62,5561.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5566.5" id="action351"><tspan x="67" y="5566.5" sodipodi:role="line" id="action-tspan351">move cursor by one paragraph</tspan></text>
<use xlink:href="#misc" transform="translate(20.62,5572.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="5576.2"><tspan x="21.72" y="5576.2" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5577.5"><tspan x="32" y="5577.5" sodipodi:role="line">,</tspan></text><use xlink:href="#misc" transform="translate(51.62,5572.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5576.2"><tspan x="52.72" y="5576.2" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5577.5" id="action352"><tspan x="67" y="5577.5" sodipodi:role="line" id="action-tspan352">go to beginning/end of line</tspan></text>
<use xlink:href="#ctrl" transform="translate(8.24,5580.5)"/><use xlink:href="#misc" transform="translate(20.62,5580.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="5584.2"><tspan x="21.72" y="5584.2" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5585.5"><tspan x="32" y="5585.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(39.24,5580.5)"/><use xlink:href="#misc" transform="translate(51.62,5580.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5584.2"><tspan x="52.72" y="5584.2" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5585.5" id="action353"><tspan x="67" y="5585.5" sodipodi:role="line" id="action-tspan353">go to beginning/end of text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5590.5" id="note205"><tspan x="8" y="5590.5" sodipodi:role="line" id="note-tspan205">All these commands cancel current text selection, if any.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5599.5" id="title74"><tspan x="33" y="5599.5" sodipodi:role="line" id="title-tspan74">Flowed text (internal frame)</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5603)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5608" id="action354"><tspan x="67" y="5608" sodipodi:role="line" id="action-tspan354">create flowed text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5616" id="note206"><tspan x="8" y="5616" sodipodi:role="line" id="note-tspan206">Clicking and dragging in an empty space or on a non-text creates a flowed text object with internal frame.</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5618.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5623.5" id="action355"><tspan x="67" y="5623.5" sodipodi:role="line" id="action-tspan355">adjust frame size</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5631.5" id="note207"><tspan x="8" y="5631.5" sodipodi:role="line" id="note-tspan207">Dragging the handle in the lower right corner of the selected flowed text changes width/height of the frame.</tspan></text>
<use xlink:href="#ctrl" transform="translate(44.62,5634)"/><use xlink:href="#left-drag" transform="translate(57,5634)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5639" id="action356"><tspan x="67" y="5639" sodipodi:role="line" id="action-tspan356">lock width, height, or ratio of frame</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5647" id="note208"><tspan x="8" y="5647" sodipodi:role="line" id="note-tspan208">Dragging the corner handle with Ctrl resizes the frame preserving either width, or height, or ratio.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5656" id="title75"><tspan x="33" y="5656" sodipodi:role="line" id="title-tspan75">Flowed text (external frame)</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,5659)"/><use xlink:href="#letterkey" transform="translate(56,5659)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5663.66851145"><tspan x="57.7" y="5663.66851145" sodipodi:role="line">W</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5664" id="action357"><tspan x="67" y="5664" sodipodi:role="line" id="action-tspan357">flow text into frame</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5669" id="note209"><tspan x="8" y="5669" sodipodi:role="line" id="note-tspan209">With a text object and a shape/path selected, this flows text into the shape/path.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5673" id="note210"><tspan x="8" y="5673" sodipodi:role="line" id="note-tspan210">Both remain separate objects, but are linked; editing the shape/path causes the text to reflow.</tspan></text>
<use xlink:href="#alt" transform="translate(29.87,5675)"/><use xlink:href="#shift" transform="translate(40.54,5675)"/><use xlink:href="#letterkey" transform="translate(56,5675)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5679.66851145"><tspan x="57.7" y="5679.66851145" sodipodi:role="line">W</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5680" id="action358"><tspan x="67" y="5680" sodipodi:role="line" id="action-tspan358">unflow text from frame</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5685" id="note211"><tspan x="8" y="5685" sodipodi:role="line" id="note-tspan211">This cuts the flowed text's link to the shape/path, producing a single-line regular text object.</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,5687)"/><use xlink:href="#letterkey" transform="translate(56,5687)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5691.66851145"><tspan x="57.7" y="5691.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5692" id="action359"><tspan x="67" y="5692" sodipodi:role="line" id="action-tspan359">select external frame</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5697" id="note212"><tspan x="8" y="5697" sodipodi:role="line" id="note-tspan212">To find out which object is the frame of this flowed text, select it and press Shift+D. The frame will be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5706" id="title76"><tspan x="33" y="5706" sodipodi:role="line" id="title-tspan76">Text on path</tspan></text>
<use xlink:href="#shift" transform="translate(40.54,5709)"/><use xlink:href="#letterkey" transform="translate(56,5709)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5713.66851145"><tspan x="57.7" y="5713.66851145" sodipodi:role="line">D</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5714" id="action360"><tspan x="67" y="5714" sodipodi:role="line" id="action-tspan360">select path from text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5719" id="note213"><tspan x="8" y="5719" sodipodi:role="line" id="note-tspan213">To find out which path this text is put on, select it and press Shift+D. The path will be selected.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5728" id="title77"><tspan x="33" y="5728" sodipodi:role="line" id="title-tspan77">Editing text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5733" id="note214"><tspan x="8" y="5733" sodipodi:role="line" id="note-tspan214">To type + and - characters, use the main keyboard; keypad + and - are reserved for zoom (unless NumLock is on).</tspan></text>
<use xlink:href="#misc-wide" transform="translate(46.54,5735)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="5738.7"><tspan x="47.64" y="5738.7" sodipodi:role="line">Enter</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5740" id="action361"><tspan x="67" y="5740" sodipodi:role="line" id="action-tspan361">start a new line or paragraph</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5745" id="note215"><tspan x="8" y="5745" sodipodi:role="line" id="note-tspan215">Enter in regular text creates new line; in flowed text it creates a new paragraph</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,5747)"/><use xlink:href="#letterkey" transform="translate(56,5747)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5751.66851145"><tspan x="57.7" y="5751.66851145" sodipodi:role="line">U</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5752" id="action362"><tspan x="67" y="5752" sodipodi:role="line" id="action-tspan362">toggle Unicode entry</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5757" id="note216"><tspan x="8" y="5757" sodipodi:role="line" id="note-tspan216">To insert an arbitrary Unicode character, type Ctrl+U, then the hexadecimal code point, then Enter.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5761" id="note217"><tspan x="8" y="5761" sodipodi:role="line" id="note-tspan217">For example, Ctrl+U 2 0 1 4 Enter inserts an em-dash.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5765" id="note218"><tspan x="8" y="5765" sodipodi:role="line" id="note-tspan218">To stay in Unicode mode after inserting the character, press Space instead of Enter.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5769" id="note219"><tspan x="8" y="5769" sodipodi:role="line" id="note-tspan219">Press Esc or another Ctrl+U to cancel Unicode mode without inserting the character.</tspan></text>
<use xlink:href="#ctrl" transform="translate(34.16,5771)"/><use xlink:href="#misc-wide" transform="translate(46.54,5771)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="47.64" y="5774.7"><tspan x="47.64" y="5774.7" sodipodi:role="line">Space</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5776" id="action363"><tspan x="67" y="5776" sodipodi:role="line" id="action-tspan363">insert no-break space</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5781" id="note220"><tspan x="8" y="5781" sodipodi:role="line" id="note-tspan220">A no-break space is visible even in a text object without xml:space="preserve".</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5790" id="title78"><tspan x="33" y="5790" sodipodi:role="line" id="title-tspan78">Selecting text</tspan></text>
<use xlink:href="#left-drag" transform="translate(57,5793.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5798.5" id="action364"><tspan x="67" y="5798.5" sodipodi:role="line" id="action-tspan364">select text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5806.5" id="note221"><tspan x="8" y="5806.5" sodipodi:role="line" id="note-tspan221">Left-dragging over a text object selects a text span.</tspan></text>
<use xlink:href="#shift" transform="translate(36.16,5809)"/><use xlink:href="#arrows" transform="translate(51.62,5809)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5814" id="action365"><tspan x="67" y="5814" sodipodi:role="line" id="action-tspan365">select text by character</tspan></text>
<use xlink:href="#ctrl" transform="translate(23.78,5820.5)"/><use xlink:href="#shift" transform="translate(36.16,5820.5)"/><use xlink:href="#arrows" transform="translate(51.62,5820.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5825.5" id="action366"><tspan x="67" y="5825.5" sodipodi:role="line" id="action-tspan366">select text by word</tspan></text>
<use xlink:href="#shift" transform="translate(5.16,5831.5)"/><use xlink:href="#misc" transform="translate(20.62,5831.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="5835.2"><tspan x="21.72" y="5835.2" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5836.5"><tspan x="32" y="5836.5" sodipodi:role="line">,</tspan></text><use xlink:href="#shift" transform="translate(36.16,5831.5)"/><use xlink:href="#misc" transform="translate(51.62,5831.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5835.2"><tspan x="52.72" y="5835.2" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5836.5" id="action367"><tspan x="67" y="5836.5" sodipodi:role="line" id="action-tspan367">select to beginning/end of line</tspan></text>
<use xlink:href="#ctrl" transform="translate(-7.22,5839.5)"/><use xlink:href="#shift" transform="translate(5.16,5839.5)"/><use xlink:href="#misc" transform="translate(20.62,5839.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="21.72" y="5843.2"><tspan x="21.72" y="5843.2" sodipodi:role="line">Home</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="5844.5"><tspan x="32" y="5844.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(23.78,5839.5)"/><use xlink:href="#shift" transform="translate(36.16,5839.5)"/><use xlink:href="#misc" transform="translate(51.62,5839.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="52.72" y="5843.2"><tspan x="52.72" y="5843.2" sodipodi:role="line">End</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5844.5" id="action368"><tspan x="67" y="5844.5" sodipodi:role="line" id="action-tspan368">select to beginning/end of text</tspan></text>
<use xlink:href="#left-click" transform="translate(50,5848)"/><use xlink:href="#left-click" transform="translate(57,5848)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5853" id="action369"><tspan x="67" y="5853" sodipodi:role="line" id="action-tspan369">select word</tspan></text>
<use xlink:href="#left-click" transform="translate(43,5859.5)"/><use xlink:href="#left-click" transform="translate(50,5859.5)"/><use xlink:href="#left-click" transform="translate(57,5859.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5864.5" id="action370"><tspan x="67" y="5864.5" sodipodi:role="line" id="action-tspan370">select line</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,5870.5)"/><use xlink:href="#letterkey" transform="translate(56,5870.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5875.16851145"><tspan x="57.7" y="5875.16851145" sodipodi:role="line">A</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5875.5" id="action371"><tspan x="67" y="5875.5" sodipodi:role="line" id="action-tspan371">select all text</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5880.5" id="note222"><tspan x="8" y="5880.5" sodipodi:role="line" id="note-tspan222">This selects the entire text of the current text object.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5889.5" id="title79"><tspan x="33" y="5889.5" sodipodi:role="line" id="title-tspan79">Styling selection</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,5892.5)"/><use xlink:href="#letterkey" transform="translate(56,5892.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5897.16851145"><tspan x="57.7" y="5897.16851145" sodipodi:role="line">B</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5897.5" id="action372"><tspan x="67" y="5897.5" sodipodi:role="line" id="action-tspan372">make selection bold</tspan></text>
<use xlink:href="#ctrl" transform="translate(43.62,5900.5)"/><use xlink:href="#letterkey" transform="translate(56,5900.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5905.16851145"><tspan x="57.7" y="5905.16851145" sodipodi:role="line">I</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5905.5" id="action373"><tspan x="67" y="5905.5" sodipodi:role="line" id="action-tspan373">make selection italic</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5910.5" id="note223"><tspan x="8" y="5910.5" sodipodi:role="line" id="note-tspan223">Also, you can use the Text&Font or Fill&Stroke dialogs to assign any style to text selection.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5919.5" id="title80"><tspan x="33" y="5919.5" sodipodi:role="line" id="title-tspan80">Letter spacing</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,5922.5)"/><use xlink:href="#letterkey" transform="translate(56,5922.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5927.16851145"><tspan x="57.7" y="5927.16851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5927.5" id="action374"><tspan x="67" y="5927.5" sodipodi:role="line" id="action-tspan374">expand line/paragraph by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,5930.5)"/><use xlink:href="#alt" transform="translate(45.33,5930.5)"/><use xlink:href="#letterkey" transform="translate(56,5930.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5935.16851145"><tspan x="57.7" y="5935.16851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5935.5" id="action375"><tspan x="67" y="5935.5" sodipodi:role="line" id="action-tspan375">expand line/paragraph by 10 pixels</tspan></text>
<use xlink:href="#alt" transform="translate(45.33,5938.5)"/><use xlink:href="#letterkey" transform="translate(56,5938.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5943.16851145"><tspan x="57.7" y="5943.16851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5943.5" id="action376"><tspan x="67" y="5943.5" sodipodi:role="line" id="action-tspan376">contract line/paragraph by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(29.87,5946.5)"/><use xlink:href="#alt" transform="translate(45.33,5946.5)"/><use xlink:href="#letterkey" transform="translate(56,5946.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5951.16851145"><tspan x="57.7" y="5951.16851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5951.5" id="action377"><tspan x="67" y="5951.5" sodipodi:role="line" id="action-tspan377">contract line/paragraph by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5956.5" id="note224"><tspan x="8" y="5956.5" sodipodi:role="line" id="note-tspan224">These commands (only when editing text) adjust letter spacing in the current line (regular text) or paragraph (flowed text).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="5960.5" id="note225"><tspan x="8" y="5960.5" sodipodi:role="line" id="note-tspan225">The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="5969.5" id="title81"><tspan x="33" y="5969.5" sodipodi:role="line" id="title-tspan81">Line spacing</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,5972.5)"/><use xlink:href="#alt" transform="translate(45.33,5972.5)"/><use xlink:href="#letterkey" transform="translate(56,5972.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5977.16851145"><tspan x="57.7" y="5977.16851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5977.5" id="action378"><tspan x="67" y="5977.5" sodipodi:role="line" id="action-tspan378">make the text object taller by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(17.49,5980.5)"/><use xlink:href="#ctrl" transform="translate(32.95,5980.5)"/><use xlink:href="#alt" transform="translate(45.33,5980.5)"/><use xlink:href="#letterkey" transform="translate(56,5980.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5985.16851145"><tspan x="57.7" y="5985.16851145" sodipodi:role="line">></tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5985.5" id="action379"><tspan x="67" y="5985.5" sodipodi:role="line" id="action-tspan379">make the text object taller by 10 pixels</tspan></text>
<use xlink:href="#ctrl" transform="translate(32.95,5988.5)"/><use xlink:href="#alt" transform="translate(45.33,5988.5)"/><use xlink:href="#letterkey" transform="translate(56,5988.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="5993.16851145"><tspan x="57.7" y="5993.16851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="5993.5" id="action380"><tspan x="67" y="5993.5" sodipodi:role="line" id="action-tspan380">make the text object shorter by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(17.49,5996.5)"/><use xlink:href="#ctrl" transform="translate(32.95,5996.5)"/><use xlink:href="#alt" transform="translate(45.33,5996.5)"/><use xlink:href="#letterkey" transform="translate(56,5996.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="6001.16851145"><tspan x="57.7" y="6001.16851145" sodipodi:role="line"><</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="6001.5" id="action381"><tspan x="67" y="6001.5" sodipodi:role="line" id="action-tspan381">make the text object shorter by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6006.5" id="note226"><tspan x="8" y="6006.5" sodipodi:role="line" id="note-tspan226">These commands (only when editing text) adjust line spacing in the entire text object (regular or flowed).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6010.5" id="note227"><tspan x="8" y="6010.5" sodipodi:role="line" id="note-tspan227">The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="6019.5" id="title82"><tspan x="33" y="6019.5" sodipodi:role="line" id="title-tspan82">Kerning and shifting</tspan></text>
<use xlink:href="#alt" transform="translate(40.95,6023)"/><use xlink:href="#arrows" transform="translate(51.62,6023)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="6028" id="action382"><tspan x="67" y="6028" sodipodi:role="line" id="action-tspan382">shift characters by 1 pixel</tspan></text>
<use xlink:href="#shift" transform="translate(25.49,6034.5)"/><use xlink:href="#alt" transform="translate(40.95,6034.5)"/><use xlink:href="#arrows" transform="translate(51.62,6034.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="6039.5" id="action383"><tspan x="67" y="6039.5" sodipodi:role="line" id="action-tspan383">shift characters by 10 pixels</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6047.5" id="note228"><tspan x="8" y="6047.5" sodipodi:role="line" id="note-tspan228">These commands work when editing a regular text object. Kerning does not work in flowed text.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6051.5" id="note229"><tspan x="8" y="6051.5" sodipodi:role="line" id="note-tspan229">With no selection, they shift (horizontally or vertically) the characters after the cursor until the end of line.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6055.5" id="note230"><tspan x="8" y="6055.5" sodipodi:role="line" id="note-tspan230">With selection, they shift the selection relative to the rest of text (by inserting opposite kerns at both ends of selection).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6059.5" id="note231"><tspan x="8" y="6059.5" sodipodi:role="line" id="note-tspan231">The actual adjustment for pixel movements depends on zoom level. Zoom in for finer adjustment.</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:oblique;font-weight:bold;font-size:7.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.2;" x="33" y="6068.5" id="title83"><tspan x="33" y="6068.5" sodipodi:role="line" id="title-tspan83">Rotating</tspan></text>
<use xlink:href="#ctrl" transform="translate(12.62,6071.5)"/><use xlink:href="#letterkey" transform="translate(25,6071.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="6076.16851145"><tspan x="26.7" y="6076.16851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="6076.5"><tspan x="32" y="6076.5" sodipodi:role="line">,</tspan></text><use xlink:href="#ctrl" transform="translate(43.62,6071.5)"/><use xlink:href="#letterkey" transform="translate(56,6071.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="6076.16851145"><tspan x="57.7" y="6076.16851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="6076.5" id="action384"><tspan x="67" y="6076.5" sodipodi:role="line" id="action-tspan384">rotate character(s) by 90 degrees</tspan></text>
<use xlink:href="#alt" transform="translate(14.33,6079.5)"/><use xlink:href="#letterkey" transform="translate(25,6079.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="26.7" y="6084.16851145"><tspan x="26.7" y="6084.16851145" sodipodi:role="line">[</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="32" y="6084.5"><tspan x="32" y="6084.5" sodipodi:role="line">,</tspan></text><use xlink:href="#alt" transform="translate(45.33,6079.5)"/><use xlink:href="#letterkey" transform="translate(56,6079.5)"/><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:4.4;text-anchor:start;writing-mode:lr;" x="57.7" y="6084.16851145"><tspan x="57.7" y="6084.16851145" sodipodi:role="line">]</tspan></text><text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:6.4;text-anchor:start;writing-mode:lr;letter-spacing:-0.4;" x="67" y="6084.5" id="action385"><tspan x="67" y="6084.5" sodipodi:role="line" id="action-tspan385">rotate character(s) by 1 pixel</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6089.5" id="note232"><tspan x="8" y="6089.5" sodipodi:role="line" id="note-tspan232">These commands rotate the next character (without selection) or all characters in the selection (with selection).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6093.5" id="note233"><tspan x="8" y="6093.5" sodipodi:role="line" id="note-tspan233">Rotation only works in regular text (not flowed text).</tspan></text>
<text xml:space="preserve" style="fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:3;text-anchor:start;writing-mode:lr;letter-spacing:0;" x="8" y="6097.5" id="note234"><tspan x="8" y="6097.5" sodipodi:role="line" id="note-tspan234">The actual angle for pixel rotation depends on zoom level. Zoom in for finer movement.</tspan></text>
</g></svg>
|