tutorial-tips.vi.svg revision d048f1c15089c16b8ca1b264513a2f92ff86e703
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
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico<?xml version="1.0" encoding="UTF-8" standalone="no"?>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48" xmlns:dc="http://purl.org/dc/elements/1.1/">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop842" stop-color="#0082ab" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="linearGradient1657" y2="0.91667" xlink:href="#linearGradient841" y1="0.16666" x2="0.51619" x1="0.51619"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop667" stop-color="#FFF" stop-opacity="0.336" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop668" stop-color="#FFF" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <radialGradient id="radialGradient669" xlink:href="#linearGradient666"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="0.27753" x="0.18215" fill="url(#linearGradient1657)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path93" stroke-width="1.0000000pt" fill="#FFF" d="M150.97,4.9606h-9.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.913-0.57,1.722-0.95,2.1-0.5,0.522-1.41,0.769-2.74,0.769h-1.06c-0.48,0-0.87-0.078-1.02-0.195-0.11-0.079-0.12-0.157-0.12-0.431v-3.3251h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.339,0.58,0.756,0.61,1.526h0.75v-4.2776h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2294h1.8c1.43,0,2.18-0.091,2.82-0.339,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.2608-1.61-0.4043-2.71-0.4043h-5.58v0.613h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2073,0.378c0,0.548-0.14,0.613-1.43,0.613h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.065-1.43-0.613v-0.378-2.582zm0-0.6128v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.678-0.38,0.769-0.62,0.978-0.25,0.248-0.7,0.404-1.13,0.404h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.247-1.29-0.743,0-0.156,0.05-0.339,0.14-0.548l0.53-1.147h4.22l0.87,1.747c0.09,0.196,0.12,0.287,0.12,0.352,0,0.209-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.104-1.34-0.834l-4.06-8.1509zm-0.78,2.1387l1.8,3.7032h-3.57l1.77-3.7032zm-11-2.0474h-0.61l-0.63,0.7694c-1.13-0.6782-1.76-0.8738-2.82-0.8738-1.55,0-2.825,0.5086-3.909,1.565-1.02,0.9911-1.498,2.0865-1.498,3.4297,0,2.8043,2.247,4.8123,5.387,4.8123,2.55,0,4.18-1.226,4.54-3.417l-0.75-0.104c-0.16,0.691-0.35,1.16-0.63,1.552-0.66,0.9-1.68,1.356-2.97,1.356-2.358,0-3.473-1.343-3.473-4.1471,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.4825,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.013h-0.589l-0.638,0.7825c-0.749-0.5869-1.769-0.8999-2.901-0.8999-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6214l1.514,0.313c1.18,0.248,1.291,0.274,1.626,0.482,0.478,0.3,0.733,0.731,0.733,1.239,0,0.522-0.239,0.952-0.717,1.304-0.526,0.379-1.052,0.522-1.928,0.522-1.18,0-2.025-0.3-2.774-0.978-0.669-0.613-1.004-1.226-1.243-2.23h-0.686l0.064,3.717h0.622l0.717-0.887c1.068,0.717,1.961,0.978,3.347,0.978,2.343,0,3.842-1.122,3.842-2.869,0-0.809-0.335-1.5-0.957-1.9954-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.3912,2.662,1.1346,0.462,0.5347,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2296v-3.5473-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.613h-5.244v0.613h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2073,0.378c0,0.548-0.143,0.613-1.434,0.613h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.065-1.435-0.613v-0.378-1.656l1.849-1.5258,2.774,3.3258c0.255,0.313,0.319,0.417,0.319,0.547,0,0.209-0.303,0.3-1.084,0.3h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.091-1.562-0.652l-3.857-4.551,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.613h-4.909v0.613h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.2082zm-17.82-5.1514h-3.283v0.613h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5421c0,1.787-0.319,2.165-1.849,2.217v0.613h4.543v-0.613c-1.515-0.052-1.834-0.43-1.834-2.217v-4.8379l7.109,7.8509h0.67v-6.7685c0-1.7866,0.319-2.1648,1.849-2.2169v-0.613h-4.543v0.613c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0945l-6.36-6.9244zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.613h-5.276v0.613h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2073,0.378c0,0.548-0.144,0.613-1.435,0.613h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.065-1.418-0.613v-0.378-6.2073z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1124" d="M139.23,12.451h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.7,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.17-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm10.77,2.849h1.6c-1.35,4.326-2.03,7.067-2.03,8.224,0,0.428,0.11,0.643,0.34,0.643,0.27,0,0.59-0.257,0.97-0.771,0.38-0.529,0.72-1.178,1-1.949l0.47,0.192c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.285,0.04-0.749,0.11-1.392-0.56,0.857-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.535-0.34-0.357-0.52-0.8-0.52-1.328,0-0.257,0.22-1.121,0.65-2.592l0.38-1.328c0.43-1.471,0.64-2.377,0.64-2.72,0-0.271-0.09-0.407-0.27-0.407-0.6,0-1.4,0.943-2.38,2.827l-0.47-0.235c1.08-2.228,2.17-3.341,3.27-3.341,0.4,0,0.73,0.149,0.97,0.449,0.26,0.3,0.38,0.693,0.38,1.178,0,0.6-0.14,1.35-0.42,2.249l-0.58,1.821c-0.47,1.485-0.71,2.348-0.71,2.591,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.835,0.56-0.557,1.06-1.293,1.5-2.206,0.67-1.386,1.36-3.349,2.08-5.89zm6.33-2.849h1.5l-0.92,3.02h1.69l-0.15,0.493h-1.69l-0.41,1.242c-0.34,1.056-0.71,2.334-1.09,3.834-0.39,1.485-0.58,2.348-0.58,2.591,0,0.329,0.15,0.493,0.45,0.493,0.53,0,1.16-0.728,1.91-2.185,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.157-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.092,0-0.4,0.07-0.85,0.2-1.35,0.14-0.556,0.6-2.156,1.37-4.797l0.36-1.242h-1.71l0.17-0.493h1.71l1.03-3.02zm7.41,3.234c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.792-0.84,3.963,0,1.085,0.48,1.627,1.44,1.627,0.77,0,1.44-0.492,2.01-1.477,0.37-0.629,0.69-1.457,0.97-2.485,0.27-1.042,0.42-2.02,0.47-2.934,0.05-1.128-0.38-1.721-1.31-1.778zm-0.02-0.492c0.84,0,1.53,0.335,2.06,1.006,0.52,0.657,0.79,1.514,0.79,2.57,0,1.3-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.599,0.58-3.113,1.75-4.541,1.03-1.256,2.17-1.884,3.41-1.884zm4.18,3.384l-0.45-0.193c0.37-0.914,0.82-1.671,1.35-2.271,0.52-0.613,0.99-0.92,1.41-0.92,0.93,0,1.39,0.678,1.39,2.034,0,0.243-0.04,0.728-0.13,1.457,0.99-2.328,2.04-3.491,3.15-3.491,0.32,0,0.58,0.099,0.79,0.299,0.23,0.186,0.35,0.414,0.35,0.686,0,0.228-0.08,0.421-0.24,0.578s-0.35,0.236-0.58,0.236c-0.48,0-0.73-0.279-0.73-0.836,0-0.157-0.05-0.235-0.15-0.235-0.14,0-0.34,0.128-0.6,0.385-0.25,0.257-0.47,0.557-0.66,0.9-0.57,1.028-1.5,3.484-2.78,7.368h-1.61c0.67-2.014,1.11-3.484,1.31-4.413,0.31-1.456,0.47-2.513,0.47-3.169,0-0.7-0.12-1.05-0.35-1.05-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.864zm12.1-8.225c0.27,0,0.5,0.1,0.68,0.3,0.2,0.186,0.3,0.414,0.3,0.685,0,0.272-0.1,0.507-0.3,0.707-0.18,0.2-0.41,0.3-0.68,0.3s-0.51-0.1-0.71-0.3-0.3-0.435-0.3-0.707c0-0.271,0.1-0.499,0.3-0.685,0.2-0.2,0.44-0.3,0.71-0.3zm0.32,11.244l0.43,0.215c-0.96,2.027-2,3.041-3.13,3.041-0.4,0-0.73-0.143-0.99-0.428-0.25-0.3-0.38-0.679-0.38-1.136,0-0.314,0.04-0.606,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.949c0.48-1.157,0.73-1.935,0.73-2.335,0-0.285-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.856,1.98-2.784,2.91-2.784,0.39,0,0.7,0.142,0.94,0.428,0.25,0.285,0.37,0.657,0.37,1.114,0,0.542-0.3,1.549-0.88,3.02l-0.9,2.248c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.242,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.75-0.56,0.514-1.08,1.206-1.56,2.077-0.97,1.728-1.46,3.177-1.46,4.348,0,0.914,0.36,1.371,1.07,1.371,1.16,0,2.25-1.135,3.28-3.406,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921-0.19-0.242-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.957-0.84,2.356-1.46,4.198-0.65,1.985-0.98,3.334-0.98,4.048,0,0.3,0.11,0.45,0.34,0.45,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.299-1.11,2.191-1.54,2.677-0.43,0.485-0.92,0.728-1.46,0.728-0.88,0-1.33-0.4-1.33-1.199,0-0.215,0.07-0.65,0.2-1.307-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.242-1.78-0.728-0.45-0.485-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.733,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.392,1.63,1.177l0.34-0.899zm4.4-4.691l0.12-0.492c1.08-0.043,2.29-0.114,3.65-0.214-0.12,0.385-0.2,0.664-0.26,0.835-0.16,0.443-0.38,1.114-0.67,2.013l-1.73,5.655c-0.83,2.698-1.24,4.354-1.24,4.968,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.928,0.92-1.585l0.49,0.236c-0.42,0.785-0.75,1.342-0.96,1.67-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.471s-0.4-0.714-0.4-1.2c0-0.599,0.24-1.692,0.72-3.277l1.89-6.146c0.41-1.357,0.62-2.121,0.62-2.292,0-0.257-0.1-0.429-0.3-0.514-0.2-0.1-0.62-0.157-1.26-0.172z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1.0000000pt" fill="#FFF"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)" height="1052.3622" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="g1798" fill-rule="evenodd" transform="translate(-1.250000e-6,0.000000)">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path691" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.149671,-45.83576)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path690" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,2.022526,-44.58496)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path689" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.397884,-48.75451)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path688" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,8.068429,-48.33756)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path674" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,12.02955,-53.13256)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path673" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,9.855679,-58.05951)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path672" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.269166,-61.39511)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path671" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,0.265717,-60.76966)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path670" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.903834,-56.18316)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path665" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-6.614049,-53.47301)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient669)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="g839" transform="matrix(5.883700e-2,0.000000,0.000000,5.883700e-2,-4.768899,-3.296641)">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path805" d="M397.64,320.25l-117.25-37.73-29.65-157.69,94.34-95.683,48.52,17.52,90.3,88.953-86.26,184.63z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1791" d="M476.96,339.17c18.82,3.77,22.59,16.94,18.82,20.71-3.76,3.76-13.17,7.53-20.7,1.88-7.54-5.65-7.54-18.82,1.88-22.59z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1792" d="M286.46,340.43c-1.83,0.49-17.16-12.72-29.29-6.6s-20.28,19.83-8.94,25.45c11.33,5.62,19.43-0.86,29.37-7.84s9.58-8.32,8.86-11.01z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1793" d="M510.36,306.93c10.23-2.56,33.88,0,30.12,15.06-3.77,15.06-35.77,9.41-56.48,1.88-1.88-15.06,21.53-15.74,26.36-16.94z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path831" d="M359.24,21.363c-11.31,0-22.61,4.32-31.27,12.989l-154.1,154.06c-8.49,8.5-12.76,19.55-12.93,30.64h-0.06c0,0.04,0.06,0.07,0.06,0.11,0,0.19-0.06,0.37-0.06,0.56h0.27c2.95,11.22,79.15,25.52,87.65,34.02,12.84,12.84-49.23,22.27-36.4,35.11,12.84,12.84,77.59,24.84,90.43,37.68s-26.23,26.51-13.39,39.35c12.83,12.84,55.96-3.21,48.15,30.28,17.34,17.34,53.51,9.06,77.73-8.28,12.84-12.84-24.63-11.7-11.79-24.54s45.25-12.91,72.56-43.62c-10.99-17.1-46.98-24.38-34.14-37.22s37.8-6.32,91.66-30.78c26.29-11.94,24.12-21.01,24.02-32-0.01-0.23,0-0.44,0-0.67h-0.06c-0.17-11.09-4.47-22.14-12.96-30.64l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.32,20.04c5.03,0.131,9.1,3.965,17.06,9.128l72.79,53.979c0.8,0.51,1.55,1.05,2.25,1.61,0.7,0.55,1.34,1.14,1.93,1.72,0.6,0.59,1.14,1.18,1.64,1.79s0.95,1.24,1.35,1.87c0.4,0.64,0.75,1.28,1.05,1.93s0.53,1.33,0.73,1.99,0.37,1.32,0.47,1.99,0.15,1.35,0.15,2.02l-43.13-20.831-4.3,32.561-23.72-11.12-36.63,24.46-14.02-48.33-18.05,42.28-50.41,5.03,0.56-22.44c0-5.39,29.06-43.124,46.75-52.107l32.39-23.259c4.78-3.097,8.13-4.35,11.14-4.271zm-66.99,220.21c22.94,5.95,48.47,13.76,68.95,13.9l0.88,9.22c-17.54-1.81-54.65-10.28-63.4-14.75l-6.43-8.37z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2086" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)" height="1052.3622" fill-opacity="0.11076898" width="320.00000" y="0.0000000" x="0.0000000" font-family="Bitstream Vera Sans" fill="#ffffff"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.81229" x="3.6203015" font-family="sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:0.29056421;" y="-326.81229">Use <tspan id="tspan7523" font-weight="bold">Ctrl+down arrow</tspan> to scroll </tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path7527" opacity="0.5" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" sodipodi:type="star" sodipodi:sides="3" fill-rule="evenodd" fill="#000" sodipodi:r1="7.6034532" sodipodi:r2="3.8017266" sodipodi:arg1="0.62024949" sodipodi:arg2="1.667447" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.4558,201.6044)" inkscape:randomized="0" sodipodi:cy="193.40422" sodipodi:cx="332.34018" inkscape:rounded="0" inkscape:flatsided="true" d="M338.53,197.82l-13.11-1.27,7.65-10.71,5.46,11.98z"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-family="sans" font-size="7.0000000" font-style="normal" transform="scale(1.130730,1.130730)" font-stretch="normal" font-variant="normal" y="18.25828" x="176.24451" font-weight="normal" fill="#ffffff">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan1668" style="letter-spacing:2.1813099;" dx="0 -0.57057059 0 0 0 0 0" fill="#ffffff">::TIPS AND TRICKS</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e10" display="none" height="1000px" width="264" y="36" x="35"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;" font-family="sans" font-size="7.2" line-height="150%" font-weight="normal" font-style="italic" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Bài hướng dẫn này sẽ giới thiệu cho bạn nhiều mẹo mực mà người dùng đã thực hiện cùng Inkscape, cũng như một số tính năng "ẩn" có thể giúp bạn tăng tốc độ làm việc.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="90.106248" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="90.106248" x="10">Bố trí tròn các Bản sao Lát đều</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e19" display="none" height="1000px" width="288" y="95.306" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Ta có thể tạo các mẫu chữ nhật khá dễ dàng bằng hộp thoại <flowSpan font-family="sans serif">Tạo bản sao đã lát đều</flowSpan>. Tuyệt vời hơn nữa, ta còn có thể tạo các <flowSpan font-style="italic">bố trí tròn</flowSpan> có các đối tượng cùng quy chiếu đến 1 tâm xoay.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e28" display="none" height="1000px" width="288" y="137.21" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Nếu mẫu tròn của bạn chỉ có 3, 4, 6, 8, hoặc 12 thành phần, bạn có thể dùng các phép đối xứng P3, P31M, P3M1, P4, P4M, P6, P6M. Ta sẽ thu được các hình đối xứng tương tự bông tuyết. Ngoài ra, bạn có thể dùng phương pháp tổng quát sau đây.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e31" display="none" height="1000px" width="288" y="189.21" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Chọn phép đối xứng P1 (di chuyển đơn giản) và <flowSpan font-style="italic">bổ sung</flowSpan> vào phép di chuyển này bằng cách chuyển sang thẻ <flowSpan font-family="sans serif">Dời chỗ</flowSpan> và đặt <flowSpan font-family="sans serif">Mỗi hàng/Dời chỗ Y</flowSpan> và <flowSpan font-family="sans serif">Mỗi cột/Dời chỗ X</flowSpan> thành -100%. Giờ tất cả các bản sao sẽ được sắp chồng lên nhau tại vị trí gốc. Cuối cùng, ta chuyển sang thẻ <flowSpan font-family="sans serif">Xoay</flowSpan> và đặt một góc xoay cho các cột, rồi tạo mẫu có 1 hàng và nhiều cột. Ví dụ, đây là một mẫu được tạo ra bằng 1 đường thẳng nằm ngang, có 30 cột, mỗi cột xoay góc 6 độ:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="tips-f01-vi.svgpath25" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" d="M81.5,58.9h117.5" inkscape:tile-w="117.80000" transform="translate(10, 282.318465) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" inkscape:tile-h="0.30000001" stroke-miterlimit="4.0000000" inkscape:tile-cx="160.25000" inkscape:tile-cy="346.50000" stroke-width="0.30000001" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse55" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.994522,0.104528,-0.104528,0.994522,6.925170,-14.33743) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse56" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.978148,0.207912,-0.207912,0.978148,15.31072,-27.87239) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse57" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.951057,0.309017,-0.309017,0.951057,25.06545,-40.45673) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse58" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.913545,0.406737,-0.406737,0.913545,36.08194,-51.95277) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse59" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.866025,0.500000,-0.500000,0.866025,48.23990,-62.23401) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse60" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.809017,0.587785,-0.587785,0.809017,61.40597,-71.18799) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse61" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.743145,0.669131,-0.669131,0.743145,75.43562,-78.71674) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse62" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.669131,0.743145,-0.743145,0.669131,90.17562,-84.73774) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse63" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.587785,0.809017,-0.809017,0.587785,105.4642,-89.18526) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse64" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.500000,0.866025,-0.866025,0.500000,121.1340,-92.01010) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse65" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.406737,0.913545,-0.913545,0.406737,137.0132,-93.18140) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse66" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.309017,0.951057,-0.951057,0.309017,152.9274,-92.68676) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse67" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.207912,0.978148,-0.978148,0.207912,168.7031,-90.53114) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse68" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(0.104528,0.994522,-0.994522,0.104528,184.1673,-86.73846) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse69" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,199.1500,-81.35000) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse70" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.104528,0.994522,-0.994522,-0.104528,213.4874,-74.42481) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse71" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.207912,0.978148,-0.978148,-0.207912,227.0224,-66.03933) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse72" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.309017,0.951057,-0.951057,-0.309017,239.6068,-56.28455) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse73" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.406737,0.913545,-0.913545,-0.406737,251.1028,-45.26806) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse74" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.500000,0.866025,-0.866025,-0.500000,261.3840,-33.11010) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse75" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.587785,0.809017,-0.809017,-0.587785,270.3380,-19.94403) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse76" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.669131,0.743145,-0.743145,-0.669131,277.8668,-5.914380) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse77" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.743145,0.669131,-0.669131,-0.743145,283.8877,8.825618) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse78" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.809017,0.587785,-0.587785,-0.809017,288.3353,24.11421) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse79" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.866025,0.500000,-0.500000,-0.866025,291.1601,39.78401) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse80" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.913545,0.406737,-0.406737,-0.913545,292.3314,55.66320) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse81" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.951057,0.309017,-0.309017,-0.951057,291.8368,71.57745) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse82" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.978148,0.207912,-0.207912,-0.978148,289.6811,87.35318) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f01-vi.svguse83" xlink:href="#tips-f01-vi.svgpath25" transform="translate(10, 282.318465) matrix(-0.994522,0.104528,-0.104528,-0.994522,285.8885,102.8173) translate(-10, -282.318465)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#path25" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e59" display="none" height="1000px" width="288" y="412.12" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Để tạo ra 1 cái đồng hồ từ hình này, bạn chỉ việc cắt ra hoặc phủ lên phần giữa một hình tròn trắng (bỏ liên kết giữa các bản sao trước khi để thực hiện các phép toán tập hợp lên chúng)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e62" display="none" height="1000px" width="288" y="454.02" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Khi dùng cả hàng và cột, bạn có thể tạo ra nhiều hiệu ứng thú vị hơn. Có một mẫu 10 cột và 8 hàng, góc xoay là 2 độ đối với hàng và 18 độ đối với cột. Mỗi nhóm đường ở đây là 1 “cột”, do vậy các nhóm xoay 18 độ so với nhau; đối với các cột, các đường riêng biệt khác nhau 2 độ:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="tips-f02-vi.svgpath92" stroke-linejoin="miter" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" d="M72.5,71.65h143" inkscape:tile-w="143.30000" transform="translate(10, 514.0299130000001) " stroke-dashoffset="0.0000000" stroke="#000" stroke-linecap="butt" inkscape:tile-h="0.30000001" stroke-miterlimit="4.0000000" inkscape:tile-cx="164.00000" inkscape:tile-cy="543.50000" stroke-width="0.30000001" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1473" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.999657,2.617695e-2,-2.617695e-2,0.999657,1.924910,-3.745086) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1474" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.998630,5.233596e-2,-5.233596e-2,0.998630,3.947230,-7.437965) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1475" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.996917,7.845910e-2,-7.845910e-2,0.996917,6.065500,-11.07739) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1476" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.994522,0.104528,-0.104528,0.994522,8.278530,-14.65955) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1477" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.991445,0.130526,-0.130526,0.991445,10.58424,-18.18274) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1478" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.987688,0.156434,-0.156434,0.987688,12.98172,-21.64461) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1479" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.983255,0.182236,-0.182236,0.983255,15.46808,-25.04208) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1480" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.951057,0.309017,-0.309017,0.951057,29.18885,-40.99141) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1481" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.942641,0.333807,-0.333807,0.942641,32.17667,-43.95868) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1482" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.933580,0.358368,-0.358368,0.933580,35.24138,-46.84623) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1483" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.923880,0.382683,-0.382683,0.923880,38.38095,-49.65217) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1484" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.913545,0.406737,-0.406737,0.913545,41.59183,-52.37582) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1485" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.902585,0.430511,-0.430511,0.902585,44.87392,-55.01397) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1486" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.891007,0.453990,-0.453990,0.891007,48.22376,-57.56504) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1487" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.878817,0.477159,-0.477159,0.878817,51.63863,-60.02816) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1488" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.809017,0.587785,-0.587785,0.809017,69.61669,-70.95716) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1489" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.793353,0.608761,-0.608761,0.793353,73.37512,-72.85554) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1490" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.777146,0.629320,-0.629320,0.777146,77.18198,-74.65460) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1491" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.760406,0.649448,-0.649448,0.760406,81.03440,-76.35361) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1492" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.743145,0.669131,-0.669131,0.743145,84.93020,-77.95106) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1493" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.725374,0.688355,-0.688355,0.725374,88.86650,-79.44634) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1494" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.707107,0.707107,-0.707107,0.707107,92.84060,-80.83745) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1495" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.688355,0.725374,-0.725374,0.688355,96.85030,-82.12436) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1496" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.587785,0.809017,-0.809017,0.587785,117.3249,-86.96326) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1497" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.566406,0.824126,-0.824126,0.566406,121.4861,-87.60718) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1498" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.544639,0.838671,-0.838671,0.544639,125.6626,-88.14188) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1499" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.522499,0.852640,-0.852640,0.522499,129.8520,-88.56700) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1500" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.500000,0.866025,-0.866025,0.500000,134.0508,-88.88270) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1501" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.477159,0.878817,-0.878817,0.477159,138.2564,-89.08796) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1502" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.453990,0.891007,-0.891007,0.453990,142.4656,-89.18356) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1503" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.430511,0.902585,-0.902585,0.430511,146.6768,-89.16850) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1504" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.309017,0.951057,-0.951057,0.309017,167.6443,-87.44306) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1505" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.284015,0.958820,-0.958820,0.284015,171.8011,-86.77010) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1506" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.258819,0.965926,-0.965926,0.258819,175.9385,-85.98768) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1507" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.233445,0.972370,-0.972370,0.233445,180.0541,-85.09770) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1508" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.207912,0.978148,-0.978148,0.207912,184.1447,-84.10004) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1509" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.182236,0.983255,-0.983255,0.182236,188.2082,-82.99550) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1510" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.156434,0.987688,-0.987688,0.156434,192.2414,-81.78604) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1511" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(0.130526,0.991445,-0.991445,0.130526,196.2412,-80.47010) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1512" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,215.6500,-72.35000) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1513" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-2.617695e-2,0.999657,-0.999657,-2.617695e-2,219.3950,-70.42517) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1514" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-5.233596e-2,0.998630,-0.998630,-5.233596e-2,223.0879,-68.40298) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1515" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-7.845910e-2,0.996917,-0.996917,-7.845910e-2,226.7273,-66.28453) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1516" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.104528,0.994522,-0.994522,-0.104528,230.3096,-64.07158) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1517" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.130526,0.991445,-0.991445,-0.130526,233.8331,-61.76595) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1518" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.156434,0.987688,-0.987688,-0.156434,237.2945,-59.36826) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1519" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.182236,0.983255,-0.983255,-0.182236,240.6922,-56.88192) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1520" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.309017,0.951057,-0.951057,-0.309017,256.6413,-43.16115) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1521" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.333807,0.942641,-0.942641,-0.333807,259.6088,-40.17333) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1522" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.358368,0.933580,-0.933580,-0.358368,262.4962,-37.10862) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1523" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.382683,0.923880,-0.923880,-0.382683,265.3021,-33.96905) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1524" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.406737,0.913545,-0.913545,-0.406737,268.0261,-30.75817) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1525" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.430511,0.902585,-0.902585,-0.430511,270.6643,-27.47608) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1526" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.453990,0.891007,-0.891007,-0.453990,273.2149,-24.12624) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1527" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.477159,0.878817,-0.878817,-0.477159,275.6780,-20.71137) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1528" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.587785,0.809017,-0.809017,-0.587785,286.6070,-2.733510) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1529" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.608761,0.793353,-0.793353,-0.608761,288.5057,1.025120) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1530" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.629320,0.777146,-0.777146,-0.629320,290.3045,4.831980) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1531" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.649448,0.760406,-0.760406,-0.649448,292.0034,8.684401) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1532" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.669131,0.743145,-0.743145,-0.669131,293.6010,12.58018) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1533" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.688355,0.725374,-0.725374,-0.688355,295.0964,16.51657) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1534" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.707107,0.707107,-0.707107,-0.707107,296.4873,20.49058) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1535" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.725374,0.688355,-0.688355,-0.725374,297.7741,24.50044) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1536" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.809017,0.587785,-0.587785,-0.809017,302.6135,44.97581) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1537" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.824126,0.566406,-0.566406,-0.824126,303.2572,49.13771) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1538" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.838671,0.544639,-0.544639,-0.838671,303.7919,53.31061) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1539" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.852640,0.522499,-0.522499,-0.852640,304.2170,57.50440) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1540" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.866025,0.500000,-0.500000,-0.866025,304.5327,61.70160) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1541" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.878817,0.477159,-0.477159,-0.878817,304.7380,65.90736) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1542" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.891007,0.453990,-0.453990,-0.891007,304.8336,70.11673) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1543" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.902585,0.430511,-0.430511,-0.902585,304.8185,74.32639) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1544" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.951057,0.309017,-0.309017,-0.951057,303.0931,95.29267) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1545" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.958820,0.284015,-0.284015,-0.958820,302.4201,99.45188) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1546" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.965926,0.258819,-0.258819,-0.965926,301.6377,103.5896) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1547" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.972370,0.233445,-0.233445,-0.972370,300.7477,107.7029) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1548" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.978148,0.207912,-0.207912,-0.978148,299.7500,111.7972) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1549" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.983255,0.182236,-0.182236,-0.983255,298.6455,115.8555) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1550" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.987688,0.156434,-0.156434,-0.987688,297.4360,119.8908) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f02-vi.svguse1551" xlink:href="#tips-f02-vi.svgpath92" transform="translate(10, 514.0299130000001) matrix(-0.991445,0.130526,-0.130526,-0.991445,296.1201,123.8925) translate(-10, -514.0299130000001)" height="2150.5000" width="320.00000" inkscape:tiled-clone-of="#path92" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e75" display="none" height="1000px" width="288" y="669.33" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Trong ví dụ trên, đường thẳng được xoay quanh tâm của nó. Nhưng nếu bạn muốn tâm xoay đặt bên ngoài đối tượng thì sao? Chỉ việc tạo một hình chữ nhật vô hình (không có màu tô và nét viền) bao quanh đối tượng, sao cho tâm hình chữ nhật nằm tại tâm phép xoay, rồi nhóm đối tượng và hình chữ nhật lại, sau đó dùng hiệu ứng <flowSpan font-family="sans serif">Tạo bản sao đã lát đều</flowSpan> cho nhóm này. Bạn sẽ thu được các hình giống như “vụ nổ” hoặc “sao” khi điều chỉnh co giãn kích thước, phép xoay và cả độ mờ đục:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="tips-f03-vi.svgg1768" inkscape:tile-w="87.999840" transform="translate(10, 763.786151) matrix(0.637680,0.000000,0.000000,0.637680,37.60870,-470.9209)" inkscape:tile-h="7.3333200" inkscape:tile-cx="158.99982" inkscape:tile-cy="859.24904">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="tips-f03-vi.svgpath1592" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill="#000" d="M210.17,859.92c4.54-2.08,15.81-3.8,15.81-0.12,0,3.67-15.81,0.12-15.81,0.12z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f03-vi.svgrect1680" opacity="0" style="marker-end:none;color:#000000;marker-start:none;marker-mid:none;" height="11.5" width="138" y="853.5" x="90" stroke-width="0.25px"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5827" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.582388,-0.949047,0.949047,1.582388,-154.0340,87.07056) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5828" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.158025,-0.146700,0.146700,0.158025,105.7377,85.22851) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5829" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.381205,-0.310377,0.310377,0.381205,62.11156,90.79346) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5830" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.916096,-0.772439,0.772439,0.916096,-47.81907,113.8302) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5831" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.271176,1.020398,-1.020398,0.271176,179.8827,-85.71164) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5832" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(5.449488e-2,1.117922,-1.117922,5.449488e-2,217.5118,-82.58176) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5833" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.301172,-0.342483,0.342483,1.301172,-68.23569,24.41345) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5834" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.437831,-5.706090e-2,5.706090e-2,0.437831,73.74740,51.22179) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5835" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.306813,9.940890e-2,-9.940890e-2,0.306813,104.0080,39.56182) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5836" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-3.070037e-2,0.733791,-0.733791,-3.070037e-2,199.7728,-22.62704) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5837" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.587705,1.503905,-1.503905,0.587705,173.1183,-177.2931) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5838" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-6.358936e-2,0.241746,-0.241746,-6.358936e-2,166.4545,48.29976) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5839" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.112789,0.480395,-0.480395,-0.112789,191.6708,18.91615) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5840" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.470476,0.344786,-0.344786,0.470476,100.1539,-7.148430) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5841" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.903283,1.297602,-1.297602,0.903283,113.3661,-172.9191) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5842" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.638722,0.413477,-0.413477,1.638722,-56.94251,-106.6588) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5843" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.375364,0.841378,-0.841378,1.375364,12.61539,-145.8564) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5844" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.372431,1.257953,-1.257953,0.372431,184.1022,-126.5285) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5845" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.974189,0.807369,-0.807369,0.974189,65.75931,-110.2368) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5846" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.731938,1.633265,-1.633265,-0.731938,366.5094,-93.65480) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5847" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.673132,0.518622,-0.518622,0.673132,85.37160,-46.91760) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5848" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(2.547028e-2,0.998190,-0.998190,2.547028e-2,212.3249,-63.70384) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5849" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-3.605237e-2,0.532086,-0.532086,-3.605237e-2,184.9846,5.822092) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5850" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.090290,0.485825,-0.485825,-1.090290,327.9609,93.43394) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5851" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.698354,0.189739,-0.189739,-0.698354,250.6815,104.4086) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5852" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(5.885208e-2,0.812223,-0.812223,5.885208e-2,193.3647,-40.42509) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5853" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.726872,1.565645,-1.565645,0.726872,158.5279,-196.5916) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5854" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.937370,0.984031,-0.984031,-0.937370,345.0698,12.40872) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5855" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.744032,-0.332291,0.332291,-1.744032,355.8320,257.4943) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5856" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.222960,1.144285,-1.144285,0.222960,196.1248,-99.21930) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5857" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.343933,1.153051,-1.153051,-0.343933,275.5978,-56.78320) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5858" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.184014,0.803951,-0.803951,-0.184014,226.4862,-20.57292) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5859" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.657759,0.630998,-0.630998,-0.657759,279.0187,39.94792) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5860" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.178407,8.005262e-3,-8.005262e-3,-1.178407,303.4147,166.6376) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5861" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.188778,0.960756,-0.960756,-1.188778,378.2234,35.00298) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5862" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.580462,-3.074334e-2,3.074334e-2,-0.580462,217.3166,125.9781) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5863" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.867001,0.425050,-0.425050,-0.867001,292.2441,84.68779) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5864" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.700823,0.100133,-0.100133,-0.700823,244.1245,117.0541) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5865" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.763055,-0.226403,0.226403,-1.763055,366.6297,244.2414) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5866" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.982450,-1.091297,1.091297,-0.982450,191.5241,304.3507) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5867" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.112597,-0.111700,0.111700,-0.112597,146.0492,101.2028) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5868" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.465116,-0.231915,0.231915,-0.465116,185.7921,145.0584) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5869" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.344854,3.164347e-2,-3.164347e-2,-1.344854,328.3710,176.1683) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5870" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.841796,0.711101,-0.711101,-0.841796,310.7677,42.98625) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5871" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.406734,-1.716231,1.716231,-0.406734,63.37569,346.8820) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5872" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.512726,-1.119051,1.119051,-0.512726,124.0951,272.0361) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5873" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.009778,0.397051,-0.397051,-1.009778,309.9339,99.57444) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5874" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.342373,-1.254425,1.254425,-0.342373,89.99150,277.7351) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5875" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.321413,-5.632474e-2,5.632474e-2,-1.321413,318.3386,186.5905) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5876" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(8.124399e-2,-1.492381,1.492381,8.124399e-2,12.78507,278.1906) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5877" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.735465,-0.521409,0.521409,-0.735465,201.0780,206.1158) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5878" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.826712,-0.390986,0.390986,-0.826712,223.8044,195.0139) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5879" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(9.504403e-2,-1.201923,1.201923,9.504403e-2,33.23421,236.7537) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5880" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.407521,-0.948369,0.948369,-0.407521,122.6155,240.2096) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5881" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.237366,-0.784455,0.784455,0.237366,45.59887,167.7661) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5882" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.297228,-0.331596,0.331596,0.297228,72.15004,100.2089) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5883" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-7.089730e-2,-0.560229,0.560229,-7.089730e-2,105.7138,160.3371) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5884" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-9.284730e-3,-0.591196,0.591196,-9.284730e-3,94.76460,159.8969) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5885" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.647489,-0.895367,0.895367,0.647489,-19.94909,151.6009) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5886" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.206174,-0.655204,0.655204,0.206174,59.88748,152.2020) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5887" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.228684,-1.074090,1.074090,-0.228684,88.07570,243.9143) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5888" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.157023,-1.395573,1.395573,-1.157023,192.3591,360.0865) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5889" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-1.029056,-1.277949,1.277949,-1.029056,183.6293,333.8833) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5890" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.838138,-1.332274,1.332274,0.838138,-80.09370,197.6504) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5891" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-9.741253e-2,-1.150852,1.150852,-9.741253e-2,63.91813,244.4753) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5892" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(-0.214987,-0.730718,0.730718,-0.214987,112.6132,195.1310) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5893" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.688294,-0.170486,0.170486,1.688294,-108.8011,-29.30468) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5894" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.553777,-0.203849,0.203849,0.553777,46.32707,62.69652) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5895" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.162667,-0.637705,0.637705,1.162667,-71.71793,76.11500) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5896" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(1.521722,-0.574611,0.574611,1.521722,-116.7675,39.69527) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="tips-f03-vi.svguse5897" xlink:href="#tips-f03-vi.svgg1768" transform="translate(10, 763.786151) matrix(0.546248,-0.904563,0.904563,0.546248,-6.585200,160.6755) translate(-10, -763.786151)" height="1052.3622" width="744.09448" inkscape:tiled-clone-of="#g1768" y="0.0000000" x="0.0000000"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="942.596911" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="942.596911" x="10">Làm thế nào để chia ảnh (dựa trên nhiều vùng hình chữ nhật)?</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e97" display="none" height="1000px" width="288" y="947.8" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Tạo một lớp mới, trong đó có các hình chữ nhật vô hình bao lấy các phần ảnh cần chia. Hãy đảm bảo là đơn vị đo bạn dùng là điểm ảnh (px - mặc định), bật lưới và chế độ đính các hình chữ nhật vào trong lưới để mỗi hình tạo bởi 1 số nguyên các ô lưới. Gán các tên hiệu (id) có ý nghĩa cho chúng để dễ phân biệt, và xuất mỗi hình ra 1 tập tin riêng. Các hình chữ nhật sẽ lưu lại tên tập tin được xuất ra tương ứng. Sau đó, ta có thể xuất lại một vài hình chữ nhật: chuyển sang lớp xuất, dùng phím Tab để chọn hình chữ nhật bạn cần (hoặc dùng lệnh Tìm dựa trên id) và nhấn Xuất trong hộp thoại. Hoặc, bạn cũng có thể viết một văn lệnh hệ vỏ hoặc một tập tin lệnh gộp để xuất tất cả các vùng đã đặt, với lệnh sau:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e100" display="none" height="1000px" width="288" y="1076.8" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">inkscape -i area-id -t filename.svg
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e103" display="none" height="1000px" width="288" y="1094.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">cho mỗi vùng được xuất ra. Khoá -t báo với Inkscape dùng thông tin của vùng làm tên tập tin xuất ra, hoặc bạn có thể cung cấp tên tập tin với khoá -e. Một cách nữa, bạn có thể dùng tiện ích <flowSpan font-weight="bold" font-family="sans serif">svgslice</flowSpan> để tự động xuất tài liệu SVG của Inkscape, dùng lớp chia hoặc các đường gióng.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1159.4487227999998" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1159.4487227999998" x="10">Chuyển sắc phi tuyến</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e115" display="none" height="1000px" width="288" y="1164.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Phiên bản 1.1 của SVG không hỗ trợ các chuyển sắc phi tuyến (tức là chuyển sắc có chuyển đổi màu không đồng nhất). Tuy nhiên, bạn có thể giả lập các chuyển sắc loại này bằng chuyển sắc <flowSpan font-style="italic">nhiều pha</flowSpan>.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e121" display="none" height="1000px" width="288" y="1206.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Trước hết hãy dùng một chuyển sắc có 2 pha màu. Mở bộ sửa Chuyển sắc (bằng cách bấm đúp chuột lên một chốt chuyển sắc bất kỳ với công cụ Chuyển sắc). Thêm một pha chuyển sắc ở giữa, kéo nó lệch đi 1 chút. Sau đó thêm nhiều pha màu khác trước và sau pha màu ở giữa và kéo chúng lệch đi, sao cho màu sắc được chuyển đổi mượt mà. Càng nhiều pha được thêm vào, chuyển sắc bạn tạo ra càng mượt hơn. Dưới đây là chuyển sắc 2 pha đen-trắng ban đầu:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f04-vi.svglinearGradient844" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-753.98" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,178.9029,1.615078e-15)" y1="-71.602" x1="-753.98">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f04-vi.svgstop842" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f04-vi.svgstop843" stop-color="#FFF" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f04-vi.svgrect1511" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1300.5929767999999) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-16.125" fill="url(#tips-f04-vi.svglinearGradient844)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e134" display="none" height="1000px" width="288" y="1328.7" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Và đây là rất nhiều chuyển sắc nhiều pha “phi tuyến” (hãy tìm hiểu chúng trong Bộ sửa Chuyển sắc):</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3979" y2="-4.5118" gradientUnits="userSpaceOnUse" x2="-1484.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,241.3779,2.179081e-15)" y1="-72.469" x1="-1484.6" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop903" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop1388" stop-color="#1f1f1f" offset="0.30971"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop911" stop-color="#3f3f3f" offset="0.51169"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop904" stop-color="#7f7f7f" offset="0.6941"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop905" stop-color="#bfbfbf" offset="0.85671"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop906" stop-color="#dfdfdf" offset="0.93052"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop907" stop-color="#efefef" offset="0.96831"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop908" stop-color="#f7f7f7" offset="0.98965"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop909" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3982" y2="-4.5119" gradientUnits="userSpaceOnUse" x2="-1021.7" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.3771,2.197130e-15)" y1="-72.469" x1="-1021.7" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop892" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop893" stop-color="#3f3f3f" offset="0.032569"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop894" stop-color="#7f7f7f" offset="0.082509"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop895" stop-color="#bfbfbf" offset="0.15915"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop896" stop-color="#dfdfdf" offset="0.20343"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop897" stop-color="#efefef" offset="0.27003"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop898" stop-color="#f7f7f7" offset="0.33919"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop899" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3985" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1088.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.2092,2.195615e-15)" y1="-72.469" x1="-1088.6" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop881" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop882" stop-color="#3f3f3f" offset="0.050992"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop883" stop-color="#7f7f7f" offset="0.13841"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop884" stop-color="#bfbfbf" offset="0.31314"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop885" stop-color="#dfdfdf" offset="0.41979"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop886" stop-color="#efefef" offset="0.48934"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop887" stop-color="#f7f7f7" offset="0.6629"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop888" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3988" y2="-4.5118" gradientUnits="userSpaceOnUse" x2="-1417.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,241.5457,2.180595e-15)" y1="-72.469" x1="-1417.6" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop871" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop1390" stop-color="#3f3f3f" offset="0.34958"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop872" stop-color="#7f7f7f" offset="0.60247"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop873" stop-color="#bfbfbf" offset="0.78191"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop874" stop-color="#dfdfdf" offset="0.86472"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop875" stop-color="#efefef" offset="0.93806"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop876" stop-color="#f7f7f7" offset="0.97619"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop877" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3991" y2="-4.5119" gradientUnits="userSpaceOnUse" x2="-1354.9" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.1509,2.186058e-15)" y1="-72.469" x1="-1354.9" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop860" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop861" stop-color="#7f7f7f" offset="0.47509"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop862" stop-color="#bfbfbf" offset="0.70159"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop863" stop-color="#dfdfdf" offset="0.83404"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop864" stop-color="#efefef" offset="0.89395"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop865" stop-color="#f7f7f7" offset="0.95386"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop866" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3994" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1155.6" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,243.0416,2.194101e-15)" y1="-72.469" x1="-1155.6" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop849" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop850" stop-color="#3f3f3f" offset="0.08634"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop851" stop-color="#7f7f7f" offset="0.23435"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop852" stop-color="#bfbfbf" offset="0.44844"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop853" stop-color="#dfdfdf" offset="0.53717"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop854" stop-color="#efefef" offset="0.64299"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop855" stop-color="#f7f7f7" offset="0.77809"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop856" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient3997" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1222.2" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.7845,2.191778e-15)" y1="-72.469" x1="-1222.2" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop838" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop846" stop-color="#3f3f3f" offset="0.11729"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop839" stop-color="#7f7f7f" offset="0.30868"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop840" stop-color="#bfbfbf" offset="0.55673"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop841" stop-color="#dfdfdf" offset="0.68916"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop1490" stop-color="#efefef" offset="0.77552"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop1491" stop-color="#f7f7f7" offset="0.85833"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop844" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="tips-f05-vi.svglinearGradient4000" y2="-5.6264" gradientUnits="userSpaceOnUse" x2="-1289.3" gradientTransform="matrix(0.237277,0.000000,0.000000,4.214480,242.6501,2.190567e-15)" y1="-72.469" x1="-1289.3" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3629" stop-color="#000" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3633" stop-color="#7f7f7f" offset="0.39661"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3634" stop-color="#bfbfbf" offset="0.68131"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3635" stop-color="#dfdfdf" offset="0.78264"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3636" stop-color="#efefef" offset="0.86468"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3637" stop-color="#f7f7f7" offset="0.89296"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f05-vi.svgstop3630" stop-color="#fff" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect3632" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-79.393" fill="url(#tips-f05-vi.svglinearGradient4000)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect836" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-63.336" fill="url(#tips-f05-vi.svglinearGradient3997)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect847" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-47.28" fill="url(#tips-f05-vi.svglinearGradient3994)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect858" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-95.45" fill="url(#tips-f05-vi.svglinearGradient3991)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect869" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-111.51" fill="url(#tips-f05-vi.svglinearGradient3988)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect879" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-31.223" fill="url(#tips-f05-vi.svglinearGradient3985)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect890" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-15.167" fill="url(#tips-f05-vi.svglinearGradient3982)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f05-vi.svgrect901" fill-opacity="0.75" fill-rule="evenodd" transform="translate(10, 1367.5905438) matrix(9.027671e-18,-1.000000,-1.000000,-5.333410e-18,0.000000,0.000000)" height="286.4" width="16.125" y="-305.42" x="-127.56" fill="url(#tips-f05-vi.svglinearGradient3979)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1520.9114438" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1520.9114438" x="10">Chuyển sắc tròn lệch tâm</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e153" display="none" height="1000px" width="288" y="1526.1" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Các chuyển sắc tròn không nhất thiết phải đối xứng. Chọn công cụ Chuyển sắc, kéo chốt nằm giữa của một chuyển sắc elip khi giữ <flowSpan font-weight="bold">Shift</flowSpan>. Thao tác này sẽ di chuyển <flowSpan font-style="italic">chốt tiêu điểm</flowSpan> hình chữ x của chuyển sắc ra khỏi vị trí chính giữa. Khi bạn không cần hiệu ứng này nữa, bạn có thể đính tiêu điểm trở lại bằng cách kéo nó gần về chính giữa.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <radialGradient id="tips-f06-vi.svgradialGradient4031" gradientUnits="userSpaceOnUse" fx="164.26" fy="495.96" cx="187.87" cy="494.13" r="40.258" gradientTransform="matrix(0.930312,0.000000,0.000000,0.853811,16.07898,-387.2360)" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f06-vi.svgstop1057" stop-color="#0082ab" stop-opacity="0" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f06-vi.svgstop1058" stop-color="#000" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </radialGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <radialGradient id="tips-f06-vi.svgradialGradient4034" gradientUnits="userSpaceOnUse" fx="122.44" fy="495.35" cx="92.072" cy="494.13" r="40.514" gradientTransform="matrix(0.930312,0.000000,0.000000,0.853811,22.35642,-387.2360)" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f06-vi.svgstop1078" stop-color="#ff2ee1" stop-opacity="0.529229" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="tips-f06-vi.svgstop1079" stop-color="#000" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </radialGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f06-vi.svgrect1569" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1598.1032808) " height="68.187" width="74.385" stroke="#000" y="0.55902" x="70.82" stroke-width="0.89427pt" fill="url(#tips-f06-vi.svgradialGradient4034)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="tips-f06-vi.svgrect1570" fill-rule="evenodd" fill-opacity="0.75" transform="translate(10, 1598.1032808) " height="68.187" width="74.385" stroke="#000" y="0.55902" x="153.67" stroke-width="0.89427pt" fill="url(#tips-f06-vi.svgradialGradient4031)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1692.2077398" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1692.2077398" x="10">Sắp hàng vào giữa trang</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e178" display="none" height="1000px" width="288" y="1697.4" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Để sắp hàng các đối tượng vào giữa trang, hãy chọn các đối tượng hoặc nhóm và chọn <flowSpan font-family="sans serif">Trang</flowSpan> trong hộp <flowSpan font-family="sans serif">Tương đối với:</flowSpan> ở hộp thoại Sắp hàng (<flowSpan font-weight="bold">Ctrl+Shift+A</flowSpan>).</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1751.6218958" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1751.6218958" x="10">Làm sạch tài liệu</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e196" display="none" height="1000px" width="288" y="1756.8" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Có rất nhiều các chuyển sắc, mẫu và hình nút thừa (chính xác hơn là các đối tượng do bạn tự tay sửa) còn nằm trong bảng tương ứng, và có thể được dùng lại cho các đối tượng mới. Tuy nhiên nếu bạn muốn tối ưu tài liệu của mình, hãy dùng lệnh <flowSpan font-family="sans serif">Làm sạch defs</flowSpan> trong trình đơn Tập tin. Lệnh này sẽ xoá các chuyển sắc, mẫu hoặc hình nút không được dùng tới trong tài liệu của bạn, để cho tập tin của bạn nhỏ hơn.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1844.2340208" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1844.2340208" x="10">Xén hoặc phủ mặt nạ lên một ảnh bitmap</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e208" display="none" height="1000px" width="288" y="1849.4" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">By default, an imported bitmap (e.g. a photo) is an image element which is not
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoeditable by the Node tool. To work around this, convert the image into a rectangle with
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicopattern fill by <flowSpan font-family="sans serif">Object to Pattern</flowSpan> (<flowSpan font-weight="bold">Alt+I</flowSpan>). This will
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicogive you a rectangle <flowSpan font-style="italic">filled</flowSpan> with your bitmap. Now this object can
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicobe converted to path, node-edited, intersected with other shapes etc. In
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico<flowSpan font-family="sans serif">Inkscape Preferences</flowSpan> (<flowSpan font-family="sans serif">Misc</flowSpan> tab), you can set the
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicooption of always importing bitmaps as pattern-filled rectangles.
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="1943.9689148" x="10" font-family="sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan y="1943.9689148" x="10">Các tính năng ẩn và Bộ sửa XML</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e232" display="none" height="1000px" width="288" y="1949.2" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowDiv xml:space="preserve">The XML editor allows you to change almost all aspects of the document without using an
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNicoexternal text editor. Also, Inkscape usually supports more SVG features than are
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNicoaccessible from the GUI. The XML editor is one way to get access to these features (if
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNicoyou know SVG).
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2021.8531348" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2021.8531348" x="10">Thay đổi đơn vị đo trên thước kẻ</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e241" display="none" height="1000px" width="288" y="2027.1" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Trong mẫu tài liệu mặc định, đơn vị đo được dùng là điểm ảnh px (“đơn vị người dùng SVG”, trong Inkscape nó tương đương với 0.8pt hay 1/90 inch). Đây cũng là đơn vị được dùng để biểu diễn hệ toạ độ nằm trong góc dưới bên trái và trong tất cả các trình đơn đơn vị. (Bạn luôn có thể di chuột lên trên thước kẻ để xem thông điệp trợ giúp hiện lên thông báo về đơn vị đang được dùng.) Để thay đổi đơn vị đo, hãy mở <flowSpan font-family="sans serif">Tuỳ thích Tài liệu</flowSpan> (<flowSpan font-weight="bold">Ctrl+Shift+D</flowSpan>) và chỉnh lại ô <flowSpan font-family="sans serif">Đơn vị mặc định</flowSpan> trong thẻ <flowSpan font-family="sans serif">Trang</flowSpan>.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2135.5042428" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e262" display="none" height="1000px" width="288" y="2140.7" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Để tạo ra nhiều bản sao của 1 đối tượng trong tài liệu, hãy dùng phương pháp <flowSpan font-style="italic">đóng dấu</flowSpan>. Chỉ việc di chuyển đối tượng (hoặc co giãn hay xoay nó), và trong khi vẫn giữ chuột, bạn nhấn <flowSpan font-weight="bold">Phím cách</flowSpan>. Thao tác này giống như “đóng dấu” xuống tài liệu, với hình dạng của đối tượng chính là con dấu. Bạn có thể lặp đi lặp lại thao tác này nhiều lần.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2216.5624858" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2216.5624858" x="10">Các mẹo sử dụng công cụ Bút</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e277" display="none" height="1000px" width="288" y="2221.8" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Với công cụ Bút (Bezier), bạn có các tuỳ chỉnh sau để kết thúc đường nét hiện tại:</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <circle cy="0" cx="0" r="2" transform="translate(15, 2257.4557128)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e283" display="none" height="1000px" width="258" y="2251.5" x="20"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Nhấn <flowSpan font-weight="bold">Enter</flowSpan></flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <circle cy="0" cx="0" r="2" transform="translate(15, 2274.6979003)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e289" display="none" height="1000px" width="258" y="2268.7" x="20"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Bấm đúp chuột trái</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <circle cy="0" cx="0" r="2" transform="translate(15, 2293.4908691)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e293" display="none" height="1000px" width="258" y="2287.5" x="20"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Chọn công cụ Bút một lần nữa</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <circle cy="0" cx="0" r="2" transform="translate(15, 2312.3971191)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e297" display="none" height="1000px" width="258" y="2306.4" x="20"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Chọn 1 công cụ khác</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e301" display="none" height="1000px" width="288" y="2324.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Lưu ý rằng khi đường nét chưa hoàn thiện (tức là nét có màu xanh lục, và đoạn đang vẽ màu đỏ) nó chưa tồn tại dưới dạng đối tượng trong tài liệu của bạn. Vì thế, để xoá nó, hãy dùng <flowSpan font-weight="bold">Esc</flowSpan> (xoá toàn bộ đường nét) hoặc <flowSpan font-weight="bold">Backspace</flowSpan> (xoá đoạn cuối cùng đang vẽ trong đường nét chưa hoàn chỉnh) thay vì lệnh <flowSpan font-family="sans serif">Huỷ bước</flowSpan>.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e313" display="none" height="1000px" width="288" y="2388.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Để thêm 1 đường nét thành phần cho 1 đường nét có sẵn, chọn đường nét đó và bắt đầu vẽ khi giữ <flowSpan font-weight="bold">Shift</flowSpan> từ 1 điểm bất kỳ. Tuy nhiên, nếu bạn muốn <flowSpan font-style="italic">vẽ tiếp</flowSpan> thêm vào nét đang có, bạn không cần phải giữ Shift; chỉ việc bắt đầu vẽ từ 1 nút cuối bên trong đường nét đang chọn.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2453.9252453000004" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2453.9252453000004" x="10">Nhập các giá trị Unicode</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e328" display="none" height="1000px" width="288" y="2459.1" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">While in the Text tool, pressing <flowSpan font-weight="bold">Ctrl+U</flowSpan> toggles between Unicode and
7b1aa68aa70f0fd01248fda5441d4e1a5a103786JazzyNiconormal mode. In Unicode mode, each group of 4 hexadecimal digits you type becomes a
7b1aa68aa70f0fd01248fda5441d4e1a5a103786JazzyNicosingle Unicode character, thus allowing you to enter arbitrary symbols (as long as you
7b1aa68aa70f0fd01248fda5441d4e1a5a103786JazzyNicoknow their Unicode codepoints and the font supports them). To finish the Unicode input,
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicopress <flowSpan font-weight="bold">Enter</flowSpan>. For example, <flowSpan font-weight="bold">Ctrl+U 2 0 1 4 Enter</flowSpan> inserts
7b1aa68aa70f0fd01248fda5441d4e1a5a103786JazzyNicoan em-dash (—). To quit the Unicode mode without inserting anything press
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2553.6601393000005" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2553.6601393000005" x="10">Dùng lưới để vẽ biểu tượng</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e349" display="none" height="1000px" width="288" y="2558.9" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Giả sử bạn muốn tạo một biểu tượng có kích thước 24x24 px. Hãy tạo 1 vùng vẽ 24x24 px (dùng hộp thoại <flowSpan font-family="sans serif">Tuỳ thích Tài liệu</flowSpan>) và đặt lưới là 0.5 px (48x48 đường lưới). Giờ, nếu bạn sắp hàng các đối tượng vào các đường lưới <flowSpan font-style="italic">chẵn</flowSpan>, và tô nét viền đối tượng vào các đường lưới <flowSpan font-style="italic">lẽ</flowSpan> khi chọn độ rộng nét viền là 1 số nguyên px, và xuất nó ra ở chế độ mặc định 90dpi (để 1 px trở thành 1 pixel bitmap), bạn sẽ thu được một ảnh giòn mà không cần khử răng cưa.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2656.7648143000006" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2656.7648143000006" x="10">Xoay đối tượng</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e367" display="none" height="1000px" width="288" y="2662" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Khi dùng công cụ Chọn, <flowSpan font-weight="bold">bấm chuột</flowSpan> lên một đối tượng để hiển thị các mũi tên co giãn, rồi <flowSpan font-weight="bold">bấm lần nữa</flowSpan> để hiển thị các mũi tên xoay và dịch chuyển. Nếu các mũi tên ở góc được bấm và di chuyển, đối tượng sẽ bị xoay quanh tâm (dấu chữ thập). Nếu bạn giữ <flowSpan font-weight="bold">Shift</flowSpan> khi thực hiện thao tác này, phép xoay sẽ lấy tâm là góc đối diện của đối tượng. Bạn cũng có thể di chuyển tâm xoay ra vị trí bất kỳ.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e379" display="none" height="1000px" width="288" y="2736.1" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Hoặc, bạn có thể xoay đối tượng bằng bàn phím thông qua phím <flowSpan font-weight="bold">[</flowSpan> và <flowSpan font-weight="bold">]</flowSpan> (mỗi lần 15 độ) hoặc <flowSpan font-weight="bold">Ctrl+[</flowSpan> và <flowSpan font-weight="bold">Ctrl+]</flowSpan> (mỗi lần 90 độ). Cặp phím <flowSpan font-weight="bold">[]</flowSpan> kết hợp với phím <flowSpan font-weight="bold">Alt</flowSpan> cho phép ta xoay các góc nhỏ theo mức điểm ảnh.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2790.8173363000005" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2790.8173363000005" x="10">Hộp thoại Mở ở dạng bảng đối tượng</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e406" display="none" height="1000px" width="288" y="2796" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Nếu bạn có nhiều các tập tin SVG nhỏ hay được dùng lại trong các tài liệu khác, bạn có thể dùng hộp thoại Mở như một bảng đối tượng. Thêm thư mục chứa các tập tin SVG nguồn vào trong danh sách đánh dấu để bạn có thể nhanh chóng mở thư mục đó ra. Sau đó duyệt thư mục và xem ảnh xem trước. Sau khi tìm ra tập tin cần mở, bạn chỉ việc kéo nó vào trong vùng vẽ và nó sẽ được nhập vào trong tài liệu hiện hành.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2882.8889383000005" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2882.8889383000005" x="10">Đổ bóng</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e415" display="none" height="1000px" width="288" y="2888.1" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Inkscape có bộ lọc Làm mờ Gaussian cho SVG, để bạn dễ dàng tạo hiệu ứng đổ bóng cho các đối tượng trong tài liệu. Chọn một đối tượng, nhân đôi nó lên bằng <flowSpan font-weight="bold">Ctrl+D</flowSpan>, nhấn <flowSpan font-weight="bold">PgDown</flowSpan> để đem nó xuống dưới đối tượng gốc, đặt nó hơi lệch xuống dưới và sang phải so với vị trí ban đầu. Giờ hãy mở hộp thoại Tô và Nét, rồi thay đổi giá trị Làm mờ thành 5.0 chả hạn.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="2974.7341573000003" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="2974.7341573000003" x="10">Đặt văn bản theo đường nét</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e430" display="none" height="1000px" width="288" y="2979.9" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Để đặt văn bản dọc theo 1 đường nét, chọn văn bản và đường nét rồi chọn lệnh <flowSpan font-family="sans serif">Để trên đường nét</flowSpan> từ trình đơn Văn bản. Văn bản sẽ bắt đầu từ đầu đường nét. Nói chung, bạn nên tạo riêng một đường nét để đặt văn bản lên trên đó, hơn là dùng các thành phần khác có sẵn trong tài liệu — việc này cho phép bạn dễ điều khiển hơn, mà không làm ảnh hưởng tới các thành phần khác trong bản vẽ.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3066.8057593000003" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="3066.8057593000003" x="10">Chọn đối tượng gốc</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e442" display="none" height="1000px" width="288" y="3072" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Nếu bạn có văn bản nằm trên đường nét, một đối tượng dời hình liên kết, hoặc một bản sao, có thể việc chọn các đối tượng/đường nét gốc sẽ trở nên khó khăn vì có thể chúng nằm ngay phía dưới hoặc/và bị khoá. Tổ hợp phím <flowSpan font-weight="bold">Shift+D</flowSpan> sẽ giúp bạn thực hiện việc chọn chúng; chọn văn bản, đối tượng dời hình liên kết, hoặc bản sao, và nhấn <flowSpan font-weight="bold">Shift+D</flowSpan> để chuyển vùng chọn sang đối tượng đường nét, hình gốc tương ứng.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3159.8464693000005" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="3159.8464693000005" x="10">Khôi phục cửa sổ</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e457" display="none" height="1000px" width="288" y="3165" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Khi di chuyển tài liệu giữa các máy tinhs có độ phân giải khác nhau hoặc màn hình hiển thị khác nhau, bạn có thể thấy rằng Inkscape đã lưu lại vị trí cửa sổ nằm bên ngoài vùng hiển thị của màn hình. Chỉ việc phóng to tài liệu (để hiển thị cửa sổ Inkscape trên màn hình, dùng thanh tác vụ), lưu lại và nạp lại. Bạn có thể tránh hiện tượng này bằng cách bỏ tuỳ chọn toàn cục là lưu lại vị trí cửa sổ (<flowSpan font-family="sans serif">Tùy thích Inkscape</flowSpan>, thẻ <flowSpan font-family="sans serif">Cửa sổ</flowSpan>).</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text style="writing-mode:lr;text-anchor:start;" font-weight="bold" font-size="8" y="3262.4198943000006" x="10" font-family="sans" font-style="normal" fill="#000000">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <tspan y="3262.4198943000006" x="10">Xuất Độ trong suốt, Chuyển sắc và PostScript</tspan>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e472" display="none" height="1000px" width="288" y="3267.6" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Các định dạng PostScript và EPS không hỗ trợ <flowSpan font-style="italic">độ trong suốt</flowSpan>, nên bạn cần tránh dùng giá trị trong suốt nếu bạn xuất ra dạng PS/EPS. Trong trường hợp độ trong suốt phủ lên màu đồng nhất, ta có thể dễ dàng khắc phục nhược điểm này: Chọn một trong các đối tượng trong suốt; chuyển sang công cụ Bút chọn màu (<flowSpan font-weight="bold">F7</flowSpan>); đảm bảo rằng chế độ lấy màu là “lấy màu hiện không có alpha”</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <rect id="d0e481" display="none" height="1000px" width="288" y="3341.7" x="10"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <flowRoot style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8" font-style="normal" font-stretch="normal" font-variant="normal" font-family="serif" line-height="133.00000%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv xml:space="preserve">Xuất <flowSpan font-style="italic">chuyển sắc</flowSpan> dưới dạng PS hay EPS không làm việc đối với văn bản (trừ khi văn bản đã được chuyển đổi sang đường nét) hoặc sơn nét. Ngoài ra, vì khi xuất PS hay EPS, độ trong suốt bị mất đi, bạn không thể dùng các loại chuyển sắc kiểu như biến đổi từ xanh <flowSpan font-style="italic">trong suốt</flowSpan> sang xanh <flowSpan font-style="italic">đục</flowSpan> được; để khắc phục, thay thế nó bằng một chuyển sắc từ xanh <flowSpan font-style="italic">đục</flowSpan> tới màu nền <flowSpan font-style="italic">đục</flowSpan> tương ứng.</flowDiv>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0.000000,0.000000,0.465194,-0.130153,3495.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <radialGradient id="radialGradient2456" xlink:href="#linearGradient666" gradientUnits="userSpaceOnUse" cy="1036.5" cx="233.92" gradientTransform="scale(1.825742,0.547723)" r="98.26" inkscape:collect="always"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="rect1494" transform="scale(1.000000,-1.000000)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-0.11217" fill="url(#linearGradient2465)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1508" d="m80.493,57.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z" inkscape:connector-curvature="0" stroke-width="1pt" fill="#FFF"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1517" stroke-width="1.0000000pt" fill="#FFF" d="M305.97,58.204h1.35v2.817c0,0.532-0.02,0.862-0.05,0.989-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.285l1.43-0.007c0.1,0.268,0.36,0.402,0.81,0.402,0.32,0,0.55-0.101,0.68-0.303,0.1-0.155,0.15-0.41,0.15-0.763v-0.12c-0.43,0.344-0.9,0.516-1.41,0.516-0.56,0-1-0.177-1.34-0.53-0.33-0.358-0.5-0.814-0.5-1.37,0-0.485,0.19-0.889,0.57-1.214,0.36-0.301,0.79-0.452,1.29-0.452,0.64,0,1.12,0.209,1.42,0.628v-0.501zm-0.07,1.638c0-0.226-0.09-0.405-0.26-0.537-0.18-0.136-0.38-0.204-0.62-0.204-0.25,0-0.46,0.073-0.63,0.219-0.16,0.146-0.24,0.343-0.24,0.593,0,0.207,0.08,0.386,0.25,0.536,0.08,0.071,0.17,0.125,0.26,0.163,0.1,0.037,0.2,0.056,0.3,0.056,0.28,0,0.5-0.068,0.66-0.205,0.19-0.15,0.28-0.357,0.28-0.621zm-6.29-1.638h1.41v0.614c0.24-0.452,0.6-0.678,1.06-0.678l0.43,0.043v1.292c-0.21-0.038-0.4-0.057-0.56-0.057-0.6,0-0.9,0.356-0.9,1.067v1.37h-1.44v-3.651zm-2.67-0.127c0.62,0,1.14,0.165,1.56,0.494,0.43,0.353,0.65,0.84,0.65,1.462,0,0.607-0.21,1.09-0.64,1.447-0.41,0.33-0.92,0.495-1.54,0.495-0.68,0-1.23-0.153-1.64-0.459-0.46-0.339-0.69-0.841-0.69-1.504,0-0.622,0.23-1.109,0.7-1.462,0.42-0.315,0.96-0.473,1.6-0.473zm-0.04,2.867c0.24,0,0.44-0.09,0.59-0.269s0.22-0.393,0.22-0.642c0-0.25-0.07-0.464-0.21-0.643s-0.33-0.268-0.58-0.268-0.46,0.087-0.61,0.261c-0.08,0.09-0.13,0.186-0.17,0.29-0.04,0.099-0.06,0.219-0.06,0.36,0,0.259,0.07,0.475,0.21,0.649,0.14,0.175,0.35,0.262,0.61,0.262zm-4.05-0.516h1.45v1.427h-1.45v-1.427zm-3.56-0.014c0.15,0.377,0.4,0.565,0.74,0.565,0.36,0,0.58-0.099,0.68-0.297,0.08,0,0.3,0.015,0.63,0.043,0.34,0.028,0.64,0.042,0.89,0.042-0.24,0.466-0.54,0.791-0.91,0.975-0.33,0.16-0.77,0.24-1.32,0.24-0.65,0-1.17-0.167-1.56-0.502-0.42-0.353-0.63-0.847-0.63-1.483,0-0.607,0.23-1.087,0.69-1.44,0.41-0.311,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.48,0.4,0.316,0.63,0.782,0.69,1.398l0.01,0.445h-3.02zm1.52-0.861c-0.05-0.33-0.29-0.495-0.71-0.495-0.16,0-0.33,0.045-0.5,0.135-0.17,0.089-0.26,0.209-0.28,0.36h1.49zm-7.76-1.349h1.44l-0.01,0.459c0.4-0.381,0.84-0.572,1.34-0.572,0.56,0,1,0.174,1.32,0.523,0.33,0.343,0.5,0.795,0.5,1.355,0,0.579-0.16,1.052-0.48,1.419-0.34,0.391-0.79,0.587-1.35,0.587-0.31,0-0.55-0.036-0.73-0.106-0.17-0.071-0.37-0.215-0.59-0.431v1.687h-1.44v-4.921zm2.27,2.747c0.26,0,0.47-0.09,0.63-0.269,0.16-0.183,0.24-0.404,0.24-0.663,0-0.264-0.08-0.478-0.23-0.643-0.14-0.169-0.34-0.254-0.6-0.254-0.24,0-0.44,0.085-0.62,0.254-0.17,0.17-0.26,0.377-0.26,0.621,0,0.255,0.08,0.478,0.23,0.671,0.16,0.189,0.36,0.283,0.61,0.283zm-6.81-1.646c0.11-0.475,0.38-0.812,0.78-1.009,0.3-0.141,0.73-0.212,1.29-0.212,0.53,0,0.96,0.104,1.28,0.311,0.39,0.249,0.59,0.623,0.59,1.122v1.688c0,0.108,0.01,0.207,0.03,0.296,0.01,0.09,0.05,0.208,0.11,0.354h-1.49l-0.05-0.424c-0.34,0.353-0.76,0.529-1.24,0.529-0.39,0-0.72-0.091-1.01-0.275-0.31-0.216-0.47-0.513-0.47-0.89,0-0.409,0.13-0.713,0.4-0.911,0.2-0.141,0.5-0.244,0.93-0.31l1.02-0.12c0.22-0.038,0.33-0.097,0.33-0.177,0-0.183-0.14-0.275-0.41-0.275-0.16,0-0.29,0.019-0.39,0.056-0.1,0.033-0.18,0.116-0.23,0.247h-1.47zm1.27,1.356c0,0.198,0.17,0.297,0.5,0.297,0.21,0,0.39-0.066,0.55-0.198s0.25-0.297,0.25-0.494l-0.96,0.12c-0.06,0.005-0.14,0.035-0.22,0.092-0.08,0.051-0.12,0.113-0.12,0.183zm-1.58-1.038l-1.44,0.071c-0.09-0.193-0.17-0.332-0.26-0.417-0.11-0.099-0.27-0.148-0.46-0.148-0.27,0-0.47,0.094-0.62,0.282-0.14,0.184-0.21,0.412-0.21,0.685,0,0.236,0.08,0.436,0.24,0.601,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.21,0.74-0.629l1.45,0.064c-0.24,1.068-0.97,1.603-2.2,1.603-0.66,0-1.19-0.16-1.59-0.481-0.45-0.348-0.68-0.838-0.68-1.468,0-0.64,0.25-1.135,0.74-1.483,0.43-0.311,0.98-0.466,1.64-0.466,0.53,0,0.97,0.132,1.34,0.395,0.36,0.259,0.61,0.643,0.72,1.151zm-7.4,1.038c0.1,0.165,0.22,0.273,0.38,0.325,0.11,0.033,0.27,0.049,0.5,0.049,0.06,0,0.1-0.002,0.13-0.007,0.03-0.009,0.07-0.026,0.12-0.049,0.1-0.042,0.15-0.106,0.15-0.191,0-0.127-0.22-0.214-0.67-0.261-0.61-0.071-1.02-0.151-1.24-0.24-0.45-0.179-0.67-0.487-0.67-0.925,0-0.475,0.23-0.821,0.68-1.038,0.35-0.165,0.78-0.247,1.32-0.247,1.11,0,1.75,0.379,1.94,1.137l-1.37,0.091c-0.07-0.122-0.16-0.211-0.27-0.268-0.1-0.033-0.23-0.049-0.38-0.049-0.36,0-0.54,0.084-0.54,0.254,0,0.056,0.06,0.106,0.18,0.148,0.13,0.043,0.44,0.094,0.94,0.156,0.5,0.061,0.85,0.15,1.04,0.268,0.3,0.169,0.45,0.447,0.45,0.833,0,0.443-0.21,0.786-0.61,1.031-0.33,0.198-0.74,0.297-1.23,0.297-0.6,0-1.07-0.069-1.4-0.205-0.46-0.189-0.76-0.53-0.87-1.024l1.42-0.085zm-5.93-3.784h1.44v2.28l1.17-0.953h2l-1.75,1.37,1.76,2.288h-1.7l-1.08-1.49-0.4,0.289v1.194h-1.44v-4.978zm-4.85,1.32h1.45v0.48c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.12,1.04,0.36,0.27,0.236,0.4,0.57,0.4,1.003v2.408h-1.42l-0.01-2.055c0-0.188-0.06-0.341-0.18-0.459s-0.27-0.177-0.45-0.177c-0.24,0-0.42,0.092-0.55,0.276-0.13,0.183-0.19,0.398-0.19,0.642v1.759h-1.45v-3.658zm-1.98,0.007h1.44v3.636h-1.44v-3.636zm0-1.335h1.44v0.982h-1.44v-0.982zm-2.12,3.559h1.45v1.427h-1.45v-1.427zm-5.7-2.224l0.62,2.274c0.04-0.273,0.13-0.652,0.28-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.05-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.55-2.098-0.6,2.098h-1.56l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.05-0.273,0.14-0.652,0.29-1.137,0.06-0.217,0.12-0.438,0.17-0.664,0.04-0.16,0.08-0.318,0.12-0.473l1.48,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.06-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.12-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.28-3.658h1.5zm-6.53,0l0.61,2.274c0.04-0.273,0.14-0.652,0.28-1.137,0.07-0.217,0.12-0.438,0.18-0.664,0.04-0.16,0.08-0.318,0.11-0.473l1.49,0.007,0.33,1.137c0.11,0.419,0.19,0.807,0.24,1.165,0.03-0.188,0.06-0.367,0.1-0.537,0.04-0.174,0.09-0.383,0.17-0.628,0.05-0.188,0.11-0.367,0.16-0.537,0.05-0.174,0.11-0.376,0.19-0.607h1.48l-1.29,3.658h-1.56l-0.56-2.098-0.6,2.098h-1.55l-1.29-3.658h1.51z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="g1495" fill-rule="evenodd" transform="matrix(0.500000,0.000000,0.000000,0.500000,2.541357,55.63388)">
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1496" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.149671,-45.83576)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1497" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,2.022526,-44.58496)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1498" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.397884,-48.75451)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1499" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,8.068429,-48.33756)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1500" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,12.02955,-53.13256)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1501" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,9.855679,-58.05951)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1511" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.269166,-61.39511)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1512" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,0.265717,-60.76966)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1513" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.903834,-56.18316)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="path1514" sodipodi:rx="179.39815" sodipodi:ry="53.819443" sodipodi:type="arc" d="m606.48,567.71c0,29.724-80.319,53.819-179.4,53.819-99.079,0-179.4-24.096-179.4-53.819,0-29.724,80.319-53.819,179.4-53.819,99.079,0,179.4,24.096,179.4,53.819z" fill-opacity="0.75000000" transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-6.614049,-53.47301)" sodipodi:cy="567.70831" sodipodi:cx="427.08334" fill="url(#radialGradient2456)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="g1515" transform="matrix(5.883700e-2,0.000000,0.000000,5.883700e-2,-4.768899,-3.296641)">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1516" d="M397.64,320.25l-117.25-37.73-29.65-157.69,94.34-95.683,48.52,17.52,90.3,88.953-86.26,184.63z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1518" d="M476.96,339.17c18.82,3.77,22.59,16.94,18.82,20.71-3.76,3.76-13.17,7.53-20.7,1.88-7.54-5.65-7.54-18.82,1.88-22.59z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1519" d="M286.46,340.43c-1.83,0.49-17.16-12.72-29.29-6.6s-20.28,19.83-8.94,25.45c11.33,5.62,19.43-0.86,29.37-7.84s9.58-8.32,8.86-11.01z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1520" d="M510.36,306.93c10.23-2.56,33.88,0,30.12,15.06-3.77,15.06-35.77,9.41-56.48,1.88-1.88-15.06,21.53-15.74,26.36-16.94z" stroke-width="1.0000000pt" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1521" d="M359.24,21.363c-11.31,0-22.61,4.32-31.27,12.989l-154.1,154.06c-8.49,8.5-12.76,19.55-12.93,30.64h-0.06c0,0.04,0.06,0.07,0.06,0.11,0,0.19-0.06,0.37-0.06,0.56h0.27c2.95,11.22,79.15,25.52,87.65,34.02,12.84,12.84-49.23,22.27-36.4,35.11,12.84,12.84,77.59,24.84,90.43,37.68s-26.23,26.51-13.39,39.35c12.83,12.84,55.96-3.21,48.15,30.28,17.34,17.34,53.51,9.06,77.73-8.28,12.84-12.84-24.63-11.7-11.79-24.54s45.25-12.91,72.56-43.62c-10.99-17.1-46.98-24.38-34.14-37.22s37.8-6.32,91.66-30.78c26.29-11.94,24.12-21.01,24.02-32-0.01-0.23,0-0.44,0-0.67h-0.06c-0.17-11.09-4.47-22.14-12.96-30.64l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.32,20.04c5.03,0.131,9.1,3.965,17.06,9.128l72.79,53.979c0.8,0.51,1.55,1.05,2.25,1.61,0.7,0.55,1.34,1.14,1.93,1.72,0.6,0.59,1.14,1.18,1.64,1.79s0.95,1.24,1.35,1.87c0.4,0.64,0.75,1.28,1.05,1.93s0.53,1.33,0.73,1.99,0.37,1.32,0.47,1.99,0.15,1.35,0.15,2.02l-43.13-20.831-4.3,32.561-23.72-11.12-36.63,24.46-14.02-48.33-18.05,42.28-50.41,5.03,0.56-22.44c0-5.39,29.06-43.124,46.75-52.107l32.39-23.259c4.78-3.097,8.13-4.35,11.14-4.271zm-66.99,220.21c22.94,5.95,48.47,13.76,68.95,13.9l0.88,9.22c-17.54-1.81-54.65-10.28-63.4-14.75l-6.43-8.37z" stroke-width="1.0000000pt" fill="#000"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <use id="use1328" style="color:#000000;" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Bitstream Vera Sans" fill="#ffffff"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <text id="text7519" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-6.5672836" x="-70.83046" font-family="sans" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:0.29056421;" y="-6.5672836">Use <tspan id="tspan7523" font-weight="bold">Ctrl+up arrow</tspan> to scroll </tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path7527" opacity="0.5" style="marker-end:none;color:black;marker-start:none;marker-mid:none;" sodipodi:type="star" sodipodi:sides="3" fill-rule="evenodd" fill="#000" sodipodi:r1="7.6034532" sodipodi:r2="3.8017266" sodipodi:arg1="0.62024949" sodipodi:arg2="1.667447" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)" inkscape:randomized="0" sodipodi:cy="193.40422" sodipodi:cx="332.34018" inkscape:rounded="0" inkscape:flatsided="true" d="M338.53,197.82l-13.11-1.27,7.65-10.71,5.46,11.98z"/>