-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGS6007-GettingStartedWithDraw.xlf
1585 lines (1585 loc) · 215 KB
/
GS6007-GettingStartedWithDraw.xlf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" version="1.1">
<file original="GS6007-GettingStartedWithDraw.odt" source-language="en" datatype="plaintext">
<body>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:p[1]">
<source><x id="0" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:p[1]/draw:frame[0]"/>Getting Started Guide</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:p[2]">
<source>Chapter 7 <g id="1"/><g id="2"/>Getting Started with Draw</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:p[3]">
<source>Vector Drawing in LibreOffice</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[0]">
<source><x id="3" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[0]/text:bookmark-start[0]"/>Copyright<x id="4" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[0]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[0]">
<source>This document is Copyright © 2018 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (<g id="5">http://www.gnu.org/licenses/gpl.html</g>), version 3 or later, or the Creative Commons Attribution License (<g id="6">http://creativecommons.org/licenses/by/4.0/</g>), version 4.0 or later.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[1]">
<source>All trademarks within this guide belong to their legitimate owners.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[1]">
<source><x id="7" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[1]/text:bookmark-start[0]"/>Contributors<x id="8" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[1]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[0]/table:table-row[0]/table:table-cell[0]/text:p[0]">
<source>Dave Barton</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[2]">
<source><x id="9" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[2]/text:bookmark-start[0]"/>Feedback<x id="10" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[2]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[2]">
<source>Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: <g id="11">documentation@global.libreoffice.org</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:list[0]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[3]">
<source>Everything you send to a mailing list, including your email address and any other personal information that is written in the message, is publicly archived and cannot be deleted.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[3]">
<source><x id="12" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[3]/text:bookmark-start[0]"/>Acknowledgments<x id="13" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[3]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[4]">
<source>This chapter is adapted and updated from Chapter 7 of <g id="14">Getting Started with OpenOffice.org 3.3</g>. The contributors to that chapter and previous revisions are:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[0]/table:table-cell[0]/text:p[0]">
<source>Agnes Belzunce</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[0]/table:table-cell[1]/text:p[0]">
<source>Chris Bonde</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[0]/table:table-cell[2]/text:p[0]">
<source>Daniel Carrera</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[1]/table:table-cell[0]/text:p[0]">
<source>Regina Henschel</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[1]/table:table-cell[1]/text:p[0]">
<source>Michel Pinquier</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[1]/table:table-cell[2]/text:p[0]">
<source>Iain Roberts</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[2]/table:table-cell[0]/text:p[0]">
<source>Gary Schnabl</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[2]/table:table-cell[1]/text:p[0]">
<source>Joe Sellman</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[2]/table:table-cell[2]/text:p[0]">
<source>Jim Taylor </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[3]/table:table-cell[0]/text:p[0]">
<source>Alex Thurgood</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[3]/table:table-cell[1]/text:p[0]">
<source>Jean Hollis Weber</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[3]/table:table-cell[2]/text:p[0]">
<source>Linda Worthington</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[4]/table:table-cell[0]/text:p[0]">
<source>Michele Zarri</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[4]/table:table-cell[1]/text:p[0]">
<source>Peter Schofield</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[4]/table:table-cell[2]/text:p[0]">
<source>Hazel Russman</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[5]/table:table-cell[0]/text:p[0]">
<source>Ron Faile Jr.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[1]/table:table-row[5]/table:table-cell[1]/text:p[0]">
<source>Olivier Hallot</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[4]">
<source><x id="15" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[4]/text:bookmark-start[0]"/>Publication date and software version<x id="16" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[4]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[5]">
<source>Published <g id="17">August</g> 2018. Based on LibreOffice 6.0.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[5]">
<source><x id="18" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[5]/text:bookmark-start[0]"/>Note for <g id="19">m</g>ac<g id="20">OS</g> users<x id="21" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:h[5]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:p[6]">
<source>Some keystrokes and menu items are different on <g id="22">m</g>ac<g id="23">OS</g> from those used in Windows and Linux. The table below gives some common substitutions for the instructions in this chapter. For a more detailed list, see the application Help.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[0]/table:table-cell[0]/text:p[0]">
<source>Windows or Linux</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[0]/table:table-cell[1]/text:p[0]">
<source>Mac<g id="24">OS</g> equivalent</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[0]/table:table-cell[2]/text:p[0]">
<source>Effect</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[1]/table:table-cell[0]/text:p[0]">
<source><g id="25">Tools > Options</g> menu selection</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[1]/table:table-cell[1]/text:p[0]/text:span[0]">
<source>LibreOffice > Preferences</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[1]/table:table-cell[2]/text:p[0]">
<source>Access setup options</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[2]/table:table-cell[0]/text:p[0]/text:span[0]">
<source>Right-click</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[2]/table:table-cell[1]/text:p[0]">
<source>Control+click and/or right-click depending on computer setup</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[2]/table:table-cell[2]/text:p[0]">
<source>Open a context menu</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[3]/table:table-cell[0]/text:p[0]">
<source><g id="26">Ctrl</g> (<g id="27">Control</g>)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[3]/table:table-cell[1]/text:p[0]">
<source>⌘ (<g id="28">Command</g>)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[3]/table:table-cell[2]/text:p[0]">
<source>Used with other keys</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[4]/table:table-cell[0]/text:p[0]/text:span[0]">
<source>F5</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[4]/table:table-cell[1]/text:p[0]">
<source><g id="29">Shift</g>+⌘+<g id="30">F5</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[4]/table:table-cell[2]/text:p[0]">
<source>Open the Navigator</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[5]/table:table-cell[0]/text:p[0]/text:span[0]">
<source>F11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[5]/table:table-cell[1]/text:p[0]">
<source>⌘+<g id="31">T</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/table:table[2]/table:table-row[5]/table:table-cell[2]/text:p[0]">
<source>Open the <g id="32">sidebar </g>Styles and Formatting <g id="33">deck</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:index-title[0]/text:p[0]">
<source>Contents</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[0]/text:a[0]">
<source>Copyright<g id="34"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[1]/text:a[0]">
<source>Contributors<g id="35"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[2]/text:a[0]">
<source>Feedback<g id="36"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[3]/text:a[0]">
<source>Acknowledgments<g id="37"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[4]/text:a[0]">
<source>Publication date and software version<g id="38"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[5]/text:a[0]">
<source>Note for Mac users<g id="39"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[6]/text:a[0]">
<source>What is Draw?<g id="40"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[7]/text:a[0]">
<source>Draw main window<g id="41"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[8]/text:a[0]">
<source>Workspace<g id="42"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[9]/text:a[0]">
<source>Pages pane<g id="43"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[10]/text:a[0]">
<source>Layers bar<g id="44"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[11]/text:a[0]">
<source>Sidebar<g id="45"/>8</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[12]/text:a[0]">
<source>Rulers<g id="46"/>10</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[13]/text:a[0]">
<source>Status bar<g id="47"/>10</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[14]/text:a[0]">
<source>Toolbars<g id="48"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[15]/text:a[0]">
<source>Standard toolbar<g id="49"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[16]/text:a[0]">
<source>Drawing toolbar<g id="50"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[17]/text:a[0]">
<source>Line and Filling toolbar<g id="51"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[18]/text:a[0]">
<source>Text Formatting toolbar<g id="52"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[19]/text:a[0]">
<source>Options toolbar<g id="53"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[20]/text:a[0]">
<source>Working with layers<g id="54"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[21]/text:a[0]">
<source>Adding a layer<g id="55"/>12</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[22]/text:a[0]">
<source>Choosing and defining colors<g id="56"/>12</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[23]/text:a[0]">
<source>Drawing basic shapes<g id="57"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[24]/text:a[0]">
<source>Drawing a straight line<g id="58"/>15</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[25]/text:a[0]">
<source>Drawing an arrow<g id="59"/>16</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[26]/text:a[0]">
<source>Choosing line endings<g id="60"/>16</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[27]/text:a[0]">
<source>Drawing a dimension line<g id="61"/>17</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[28]/text:a[0]">
<source>Drawing rectangles or squares<g id="62"/>17</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[29]/text:a[0]">
<source>Drawing circles or ellipses<g id="63"/>18</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[30]/text:a[0]">
<source>Drawing curves or polygons<g id="64"/>18</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[31]/text:a[0]">
<source>Curves<g id="65"/>18</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[32]/text:a[0]">
<source>Polygons<g id="66"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[33]/text:a[0]">
<source>Polygons 45°<g id="67"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[34]/text:a[0]">
<source>Freeform lines<g id="68"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[35]/text:a[0]">
<source>Adding text<g id="69"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[36]/text:a[0]">
<source>Glue points and connectors<g id="70"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[37]/text:a[0]">
<source>Glue points<g id="71"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[38]/text:a[0]">
<source>Connectors<g id="72"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[39]/text:a[0]">
<source>Drawing geometric shapes<g id="73"/>21</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[40]/text:a[0]">
<source>Basic shapes<g id="74"/>21</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[41]/text:a[0]">
<source>Symbol shapes<g id="75"/>21</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[42]/text:a[0]">
<source>Block arrows<g id="76"/>22</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[43]/text:a[0]">
<source>Flowcharts<g id="77"/>22</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[44]/text:a[0]">
<source>Callouts<g id="78"/>22</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[45]/text:a[0]">
<source>Stars and banners<g id="79"/>22</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[46]/text:a[0]">
<source>Selecting objects<g id="80"/>23</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[47]/text:a[0]">
<source>Direct selection<g id="81"/>23</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[48]/text:a[0]">
<source>Selection by framing<g id="82"/>23</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[49]/text:a[0]">
<source>Selecting hidden objects<g id="83"/>23</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[50]/text:a[0]">
<source>Arranging objects<g id="84"/>23</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[51]/text:a[0]">
<source>Moving and adjusting object size<g id="85"/>24</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[52]/text:a[0]">
<source>Moving objects<g id="86"/>24</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[53]/text:a[0]">
<source>Adjusting object size<g id="87"/>24</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[54]/text:a[0]">
<source>Rotating and slanting an object<g id="88"/>25</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[55]/text:a[0]">
<source>Rotating an object<g id="89"/>25</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[56]/text:a[0]">
<source>Slanting an object<g id="90"/>26</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[57]/text:a[0]">
<source>Editing objects<g id="91"/>26</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[58]/text:a[0]">
<source>Line and Filling toolbar<g id="92"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[59]/text:a[0]">
<source>Text Formatting toolbar<g id="93"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[60]/text:a[0]">
<source>Sidebar Properties<g id="94"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[61]/text:a[0]">
<source>Context menu<g id="95"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[62]/text:a[0]">
<source>Formatting lines and borders<g id="96"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[63]/text:a[0]">
<source>Arrows, arrowheads, and line endings<g id="97"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[64]/text:a[0]">
<source>Formatting area fill<g id="98"/>29</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[65]/text:a[0]">
<source>Using styles<g id="99"/>29</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[66]/text:a[0]">
<source>Positioning objects<g id="100"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[67]/text:a[0]">
<source>Snap function<g id="101"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[68]/text:a[0]">
<source>Snap to grid<g id="102"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[69]/text:a[0]">
<source>Displaying the grid<g id="103"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[70]/text:a[0]">
<source>Configuring the grid<g id="104"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[71]/text:a[0]">
<source>Help lines<g id="105"/>31</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[72]/text:a[0]">
<source>Applying special effects<g id="106"/>31</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[73]/text:a[0]">
<source>Flipping objects<g id="107"/>31</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[74]/text:a[0]">
<source>Mirror copies<g id="108"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[75]/text:a[0]">
<source>Distorting an object<g id="109"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[76]/text:a[0]">
<source>Dynamic transparency gradients<g id="110"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[77]/text:a[0]">
<source>Duplication<g id="111"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[78]/text:a[0]">
<source>Cross-fading<g id="112"/>33</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[79]/text:a[0]">
<source>Combining multiple objects<g id="113"/>34</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[80]/text:a[0]">
<source>Grouping<g id="114"/>34</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[81]/text:a[0]">
<source>Temporary grouping<g id="115"/>34</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[82]/text:a[0]">
<source>Permanent grouping<g id="116"/>34</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[83]/text:a[0]">
<source>Ungrouping<g id="117"/>35</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[84]/text:a[0]">
<source>Combining objects<g id="118"/>35</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[85]/text:a[0]">
<source>Arranging, aligning, and distributing objects<g id="119"/>35</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[86]/text:a[0]">
<source>Inserting and editing pictures<g id="120"/>35</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[87]/text:a[0]">
<source>Working with 3D objects<g id="121"/>36</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[88]/text:a[0]">
<source>Exporting graphics<g id="122"/>36</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[1]/text:table-of-content[0]/text:index-body[0]/text:p[89]/text:a[0]">
<source>Inserting comments in a drawing<g id="123"/>36</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[0]">
<source><x id="124" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[0]/text:bookmark-start[0]"/>What is Draw?<x id="125" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[0]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[0]">
<source><g id="126">LibreOffice Draw</g> is <x id="127" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[0]/text:alphabetical-index-mark[0]"/>a vector graphics drawing program, although it can also perform some operations on raster graphics (pixels). Using Draw, you can quickly create a wide variety of graphical images.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[1]">
<source>Vector graphics store and display an image as an assembly of simple geometric elements such as lines, circles, and polygons, rather than a collection <x id="128" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[1]/text:alphabetical-index-mark[0]"/>of pixels (points on the screen). Vector graphics allow for easier storage and scaling of the image.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[2]">
<source>Draw is fully integrated into the LibreOffice suite, and this simplifies exchanging graphics with all components of the suite. For example, if you create an image in Draw, reusing it in a Writer document is as simple as copying and pasting the image. You can also work with drawings directly from within Writer or Impress, using a subset of the functions and tools from <g id="129">Draw</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[3]">
<source>The functionality of LibreOffice Draw is extensive and, even though it was not designed to rival high-end graphics applications, it possesses more functionality than the drawing tools that are generally integrated with most office productivity suites.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[4]">
<source>A few examples of the drawing functions are: layer management, magnetic grid-point system, dimensions and measurement display, connectors for making organization charts, 3D functions that enable small three-dimensional drawings to be created (with texture and lighting effects), drawing and page-style integration, and Bézier curves.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[5]">
<source>This chapter introduces some features of Draw and does not attempt to cover all of the Draw features. See the <g id="130">Draw Guide</g> and the Help for more information.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[1]">
<source><x id="131" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[1]/text:bookmark-start[0]"/>Draw main window<x id="132" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[1]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[6]">
<source>The main components of <x id="133" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[6]/text:alphabetical-index-mark[0]"/>the<x id="134" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[6]/text:alphabetical-index-mark[1]"/> Draw main window are shown in Figure <x id="135" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[6]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[2]">
<source><x id="136" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[2]/text:bookmark-start[0]"/>Workspace<x id="137" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[2]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[7]">
<source>The large area in the center of the window (Workspace) is where you create your drawings and this drawing area can be surrounded with toolbars and information areas. The number and position of the visible tools vary with the task in hand and user preferences, therefore your setup may look different from Figure <x id="138" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[7]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[8]">
<source>In LibreOffice Draw, the maximum size of a drawing is 300 cm by 300 cm.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[3]">
<source><x id="139" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[3]/text:bookmark-start[0]"/>Pages pane<x id="140" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[3]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[9]">
<source>You can split drawings in Draw over several pages. Multi-page drawings are used mainly for presentations. The <g id="141">Pages</g> pane gives an overview of the pages that you create in your drawing. If the Pages pane is not visible, go to <g id="142">View</g> on the Menu bar and select <g id="143">Page Pane</g>. To make changes to the page order, drag and drop one or more pages.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[4]">
<source><x id="144" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[4]/text:bookmark-start[0]"/>Layers bar<x id="145" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[4]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[10]">
<source>A layer is a workspace where you insert your drawings elements and objects. The layers bar is located on the bottom of the workplace and contains the guides for layer selection and layer command. For more information on layers see “<x id="146" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[10]"/>“ on page <x id="147" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[10]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[5]">
<source><x id="148" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[5]/text:bookmark-start[0]"/>Sidebar<x id="149" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[5]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[11]">
<source>The <g id="150">Sidebar</g> has four main sections in Draw. To expand a section, click on its icon or click on the small triangle at the top of the icons and select a section from the drop down list. Only one section at a time can be open. If the Sidebar is not visible, go to <g id="151">View</g> on the Menu bar and select <g id="152">Sidebar</g> from the context menu.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[12]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="153" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[12]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="154" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[12]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: LibreOffice Draw workspace</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[13]">
<source>Properties <x id="155" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[13]/draw:frame[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[14]">
<source>Opens sub-sections for object properties that you can change to suit your requirements. The sub-sections are <g id="156">Insert Shapes</g>, <g id="157">Character</g>, <g id="158">Paragraph</g>, <g id="159">Area</g>, <g id="160">Line</g>, and <g id="161">Position and Size</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[15]">
<source>Styles and Formatting <x id="162" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[15]/draw:frame[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[16]">
<source>Here you can edit and apply image styles to objects within your drawing. When you edit a style, the changes are automatically applied to all of the elements formatted with this image style in your drawing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[17]">
<source>Gallery <x id="163" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[17]/draw:frame[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[18]">
<source>Opens the Drawing gallery where you can insert an object into your drawing either as a copy or as a link. A copy of an object is independent of the original object. Changes to the original object have no effect on the copy. A link remains dependent on the original object. Changes to the original object are also reflected in the link.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[19]">
<source>Navigator <x id="164" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[19]/draw:frame[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[20]">
<source>Opens the Drawing navigator, in which you can quickly move between pages in your drawing or select an object on the drawing. It is recommended to give pages and objects in your drawing meaningful names so that you can easily identify them when using the Navigator.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[6]">
<source><x id="165" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[6]/text:bookmark-start[0]"/><x id="166" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[6]/text:soft-page-break[0]"/>Rulers<x id="167" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[6]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[21]">
<source>You should <x id="168" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[21]/text:alphabetical-index-mark[0]"/>see rulers (bars with numbers) on the upper and left-hand sides of the workspace. If they are not visible, you can enable them by selecting <g id="169">View > Ruler</g> in the Menu bar. The rulers show the size of a selected object on the page using double lines (highlighted in Figure <x id="170" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[21]"/>). When no object is selected, they show the location of the mouse pointer, which helps to position drawing objects more accurately.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[22]">
<source>You can also use the rulers to manage object handles and guide lines, making it easier to position objects.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[23]">
<source><x id="171" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[23]/text:alphabetical-index-mark[0]"/>The page margins in the drawing area are also represented on the rulers. You can change the margins directly on the rulers by dragging them with the mouse. The margin area is indicated by the grayed out area on the rulers as shown in Figure <x id="172" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[23]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[24]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="173" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[24]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Rulers showing size of a selected object</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[25]">
<source>To change the measurement units of the rulers, which can be defined independently, right-click on a ruler and select the measurement unit from the drop down list, as illustrated for the horizontal ruler in Figure <x id="174" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[25]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[26]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="175" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[26]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="176" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[26]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Ruler units</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[7]">
<source><x id="177" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[7]/text:bookmark-start[0]"/>Status bar<x id="178" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[7]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[27]">
<source>The Status bar is located at the bottom of the workspace in all LibreOffice components. It includes several Draw-specific fields. For details on the contents and use of these fields, see Chapter 1, Introducing LibreOffice, in this guide and Chapter 1, Introducing Draw, in the <g id="179">Draw Guide.</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[28]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="180" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[28]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="181" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[28]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Draw status bar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[0]/text:list-item[0]/text:p[0]">
<source><x id="182" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[0]/text:list-item[0]/text:p[0]/text:soft-page-break[0]"/>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[29]">
<source>The sizes are given in the current measurement unit. They might not be the same as the ruler units. The measurement unit on the Status bar is defined in <g id="183">Tools > Options > LibreOffice Draw > General</g>, where you can also change the scale of the page.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[8]">
<source><x id="184" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[8]/text:bookmark-start[0]"/>Toolbars<x id="185" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[8]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[30]">
<source>To display or hide the various <x id="186" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[30]/text:alphabetical-index-mark[0]"/>Draw toolbars<x id="187" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[30]/text:alphabetical-index-mark[1]"/>, go to <g id="188">View > Toolbars</g> on the Menu bar. On the View menu, select which toolbars you want to display. For more about working with toolbars, see Chapter 1, Introducing LibreOffice, in this guide.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[31]">
<source>The tools available in the Draw toolbars are described below. The appearance of the toolbar icons may vary depending on your operating system and the selection of icon size and style in <g id="189">Tools > Options > LibreOffice > View</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[9]">
<source><x id="190" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[9]/text:bookmark-start[0]"/>Standard toolbar<x id="191" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[9]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[32]">
<source>The <g id="192">Standard</g> toolbar is the same for all LibreOffice components and is not described in detail in this chapter. By default, it is located just under the Menu bar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[10]">
<source><x id="193" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[10]/text:bookmark-start[0]"/>Drawing toolbar<x id="194" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[10]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[33]">
<source>The <g id="195">Drawing</g> toolbar is the most important toolbar in <g id="196">Draw</g>. It contains all the necessary functions for drawing various geometric and freehand shapes and for organizing them on the page. By default, it is docked vertically on the left side of the Draw window.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[11]">
<source><x id="197" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[11]/text:bookmark-start[0]"/>Line and Filling toolbar<x id="198" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[11]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[34]">
<source>Use <x id="199" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[34]/text:alphabetical-index-mark[0]"/>the <g id="200">Line and Filling</g> toolbar to modify the main properties of a drawing object. The icons and pull-down lists vary according to the type of object selected. For example, to change the style of a line, click on the up and down arrows for Line Style and select the required style.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[35]">
<source>The functions on this toolbar are also provided in the Properties pane of the sidebar when a drawing object is selected. By default, the Line and Filling toolbar is not shown, but you can display it from the <g id="201">View > Toolbars</g> menu.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[12]">
<source><x id="202" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[12]/text:bookmark-start[0]"/>Text Formatting toolbar<x id="203" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[12]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[36]">
<source>If<x id="204" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[36]/text:alphabetical-index-mark[0]"/> the selected object is text, the Sidebar shows relevant formatting choices in the Properties pane. By default, the Text Formatting toolbar is not shown, but you can display it from the <g id="205">View > Toolbars</g> menu. If you have enabled both the Line and Filling toolbar and the Text Formatting toolbar, Draw switches between them depending on what object is selected.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[13]">
<source><x id="206" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[13]/text:bookmark-start[0]"/>Options toolbar<x id="207" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[13]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[37]">
<source>Use the <g id="208">Options</g> toolbar to activate or deactivate various drawing aids. By default, the Options toolbar is not shown, but you can display it from the <g id="209">View > Toolbars</g> menu.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[14]">
<source><x id="210" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[14]/text:bookmark-start[0]"/>Working with layers<x id="211" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[14]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[38]">
<source>Use layers to create a complex drawing by stacking simpler drawings in each layer. The area of a layer that does not contain an object is transparent. You can add any number of layers in a drawing document. A layer can be set to visible or hidden, it can be printable or not. Layers are common to all pages of the drawing. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[39]">
<source><x id="212" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[39]/text:soft-page-break[0]"/>A Draw document contains three default layers that you cannot delete or rename. Here are the common ways of using them:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[1]/text:list-item[0]/text:p[0]">
<source><g id="213">Layout</g>: Here you place title, text, and object placeholders on your page.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[1]/text:list-item[1]/text:p[0]">
<source><g id="214">Controls</g>: This layer is always on the top of any other. Here you put buttons and other controls of your drawing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[1]/text:list-item[2]/text:p[0]">
<source><g id="215">Dimension lines</g>: Here you place the dimension lines for your object, if relevant.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[40]">
<source>For more information on layers, see Chapter 11, Advanced Draw Techniques, in the <g id="216">Draw Guide.</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[15]">
<source><x id="217" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[15]/text:bookmark-start[0]"/>Adding a layer<x id="218" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[15]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[41]">
<source>To add a layer to your drawing, select <g id="219">Insert > Layer...</g> from the menu bar or right-click any layer tab in the Layers bar on the bottom of the workspace (Figure <x id="220" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[41]"/>) and choose <g id="221">Insert Layer...</g> The Insert Layer dialog opens (Figure <x id="222" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[41]"/>).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[42]">
<source>Add a name, title, and description of the layer. Select if you want it printable or not, visible or hidden, or locked to prevent further changes or accidental edits.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[43]">
<source>A hidden layer still shows in the Layers bar, but its name is in blue. You cannot reorder layers in the Layers bar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[2]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[44]">
<source>Layers do not determine the stacking order of objects on the page, except for the Controls layer which is always in front of other layers. The stacking order of objects is determined by the sequence in which you add the objects. You can rearrange the stacking order by <g id="223">Modify > Arrange</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[45]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="224" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[45]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="225"><g id="226"/></g>Figure <x id="227" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[45]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: The Insert Layer dialog</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[16]">
<source><x id="228" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[16]/text:bookmark-start[0]"/>Choosing and defining colors<x id="229" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[16]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[46]">
<source>To display <x id="230" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[46]/text:alphabetical-index-mark[0]"/>the color palette currently in use (Figure <x id="231" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[46]"/>), select <g id="232">View > Toolbars > Color Bar</g>. By default, the Color Bar is displayed below the workspace. You can hide or show it by clicking on its Hide/Show button. Here you can rapidly choose the color of objects in your drawing (lines, areas, and 3D effects). The first box corresponds to none (no color).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[47]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="233" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[47]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="234" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[47]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Color bar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[48]">
<source>You can access several <x id="235" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[48]/text:alphabetical-index-mark[0]"/>specialized color palettes in Draw, as well as change individual colors to your own taste. To do this, use the Area dialog by selecting <g id="236">Format > Area</g> on the Menu bar or clicking the <g id="237">Area</g> icon on the Sidebar, then selecting the <g id="238">Colors</g> tab (Figure <x id="239" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[48]"/>).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[49]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="240" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[49]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="241"><g id="242"/></g>Figure <x id="243" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[49]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Area Dialog - Color</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[50]">
<source>To choose another palette, click on the <g id="244">Palette</g> drop down list and select one of the available LibreOffice palettes.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[51]">
<source>To add a custom color to the custom palette, first select your color by pressing the <g id="245">Pick</g> button and adjusting your color using the color selection dialog that appears (Figure <x id="246" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[51]"/>). <g id="247"/>In the color selection dialog, you can change any color by either dragging the round cursor to different locations on the visible color palette, or by modifying the numerical values in the fields provided to the right of the color palette in either CMYK or RGB color schemes.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[52]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="248" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[52]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="249"><g id="250"/></g>Figure <x id="251" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[52]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Color Selection Dialog</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[53]">
<source>For a more detailed description of color palettes and their options, as well as more on the difference between the CMYK and RGB color schemes, refer to Chapter 11: Advanced Draw Techniques, in the LibreOffice <g id="252">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[17]">
<source><x id="253" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[17]/text:bookmark-start[0]"/>Drawing basic shapes<x id="254" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[17]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[54]">
<source>Draw provides a wide range of shapes, located in palettes accessed from the Drawing toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[55]">
<source>This section describes only a few of the basic shapes, including text, which are treated as objects in Draw. See the <g id="255">Draw Guide</g> for a complete description of the shapes available.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[56]">
<source>Some of the icons on the Drawing toolbar will change according to the shape that has been selected from the choices available. Icons with tool palettes available are indicated by a small triangle to the right of the icon.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[3]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[57]">
<source>When you draw a basic shape or select one for editing, the <g id="256">Info</g> field at the left side in the status bar changes to reflect the present action: for example <g id="257">Line created</g>, <g id="258">Text frame xxyy selected</g>, and so on.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[18]">
<source><x id="259" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[18]/text:bookmark-start[0]"/>Drawing a straight line<x id="260" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[18]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[58]">
<source>Click on the <g id="261">Line</g> icon and place the cursor at the point where you want to start the line (Figure <x id="262" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[58]"/>). Drag the mouse while keeping the mouse button pressed. Release the mouse button at the point where you want to end the line. A selection handle appears at each end of the line, showing that this object is the currently selected object. The selection handle at the starting point of the line is slightly larger than the other selection handle.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[59]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="263" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[59]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Drawing a straight line</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[60]">
<source>Keep the <g id="264">Ctrl</g> key pressed while drawing a line to enable the end of the line to snap to the nearest grid point.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[4]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[61]">
<source>This is the default behavior of the <g id="265">Ctrl</g> key. However, if the <g id="266">Snap to Grid</g> option on the <g id="267">View > Grid</g> menu has been selected, the <g id="268">Ctrl</g> key deactivates the snap to grid activity.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[62]">
<source>Keep the <g id="269">Shift</g> key pressed while you draw a line to restrict the drawing angle of the line to a multiple of 45 degrees (0, 45, 90, 135, and so on).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[5]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[63]">
<source>This is the default behavior of the <g id="270">Shift</g> key. However, if the option <g id="271">When creating or moving objects</g> in the <g id="272">Snap position</g> section of <g id="273">Tools > Options > LibreOffice Draw > Grid</g> has been selected, the action of the <g id="274">Shift</g> key is the opposite. Lines will automatically be drawn at a multiple of 45 degrees <g id="275">unless</g> the <g id="276">Shift</g> key is pressed.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[64]">
<source>Hold down the <g id="277">Alt</g> key while drawing a line to cause the line to extend outwards symmetrically in both directions from the start point. This lets you draw lines by starting from the middle of the line.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[65]">
<source>When a line is drawn, it uses default attributes. To change any of these attributes, select a line by clicking on it, then <g id="278">right-click</g> and select <g id="279">Line</g> from the context menu or go to <g id="280">Format > Line</g> on the Menu bar to open the <g id="281">Line</g> dialog (Figure <x id="282" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[65]"/>). Alternatively, click on the Properties icon on the Sidebar and open the Line sub-section. Line style, line width, and line color can also be changed using the controls in the Line and Filling toolbar at the top of the workspace.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[66]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="283" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[66]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="284"><g id="285"/></g>Figure <x id="286" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[66]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Line dialog</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[19]">
<source><x id="287" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[19]/text:bookmark-start[0]"/><x id="288" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[19]/text:soft-page-break[0]"/>Drawing an arrow<x id="289" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[19]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[67]">
<source>Arrows are drawn like lines. Draw <x id="290" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[67]/text:alphabetical-index-mark[0]"/>classifies <g id="291">arrows</g> as a subgroup of lines: lines with arrowheads. The information field on the status bar shows them only as lines. Click on the <g id="292">Line Ends with Arrow</g> icon on the Drawing toolbar or the <g id="293">Insert Shapes</g> sub-section in Sidebar Properties to draw an arrow. The arrowhead is drawn at the end point of the arrow when you release the mouse button.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[20]">
<source><x id="294" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[20]/text:bookmark-start[0]"/>Choosing line endings<x id="295" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[20]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[68]">
<source>Several types of line endings (arrows, circles, squares, and others) are available in Draw. Click on the small triangle to the right of the <g id="296">Lines and Arrows</g> icon on the Drawing toolbar or the <g id="297">Insert Shapes</g> sub-section in Sidebar Properties to open a tool palette containing tools for <x id="298" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[68]/text:alphabetical-index-mark[0]"/>drawing lines and arrows. Alternatively, go to <g id="299">View > Toolbars > Arrows</g> to open the Arrows toolbar as a floating toolbar (Figure <x id="300" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[68]"/>). The icon for the tool used most recently will be shown on the Drawing toolbar to make it easier to use the same tool again.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[69]">
<source>After drawing the line, you can change the arrow style by clicking on the <g id="301">Arrowheads</g> icon in the Line and Filling toolbar and select the arrow start and end options.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[70]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="302" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[70]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Arrows toolbar and available tools</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[21]">
<source><x id="303" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[21]/text:bookmark-start[0]"/>Drawing a dimension line<x id="304" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[21]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[71]">
<source>Dimension lines display a measurement of an object in the drawing (Figure <x id="305" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[71]"/>). The dimension line does not belong to the object itself but it is usually placed close to it. An object can have as many dimension lines as necessary to indicate measures of its sides, edges, and distances.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[72]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="306" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[72]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Measuring an object with dimension lines</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[73]">
<source>Dimension lines automatically calculate and display linear dimensions.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[74]">
<source>To draw a dimension line, open the <g id="307">Arrows</g> toolbar (Figure <x id="308" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[74]"/>) and click the <g id="309">Dimension Line</g> icon. Move your pointer to where you want the line to start and drag to draw the dimension line. Release when finished.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[75]">
<source>You can control the display of the dimension line’s components and appearance by selecting it, right-clicking, and choosing <g id="310">Dimensions...</g><g id="311"> in the context menu to display the Dimension line dialog <g id="312"/>(Figure </g><g id="313"><x id="314" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[75]/text:span[2]"/></g>).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="315" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="316"><g id="317"/></g>Figure <x id="318" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Dimension line settings dialog</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[6]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[77]">
<source>If the option <g id="319">When creating or moving objects</g> has been selected in <g id="320">Tools > Options > LibreOffice Draw > General</g>, the action of the <g id="321">Shift</g> key is reversed: the Rectangle tool draws a square. To draw a rectangle, you have to press the <g id="322">Shift</g> key when drawing. This <g id="323">Shift</g> key reversal also applies when drawing ellipses and circles.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[22]">
<source><x id="324" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[22]/text:bookmark-start[0]"/><x id="325" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[22]/text:alphabetical-index-mark[0]"/>Drawing <x id="326" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[22]/text:alphabetical-index-mark[1]"/>rectangles or squares<x id="327" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[22]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[78]">
<source>Drawing a rectangle is similar to drawing a straight line. Click on the <g id="328">Rectangle</g> icon in the Drawing toolbar or the <g id="329">Insert Shapes</g> sub-section in Sidebar Properties. As you draw the rectangle with the mouse cursor, the rectangle appears with its bottom right corner attached to the cursor.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[79]">
<source>Squares are <x id="330" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[79]/text:alphabetical-index-mark[0]"/>rectangles with all sides of equal length. To draw a square, click on the <g id="331">Rectangle</g> icon and hold down the <g id="332">Shift </g>key while you draw a square.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[80]">
<source>To draw a rectangle or square from its center rather than the bottom right corner, position your cursor on the drawing, press the mouse button and then hold down the <g id="333">Alt</g> key while dragging with the cursor. The rectangle or square uses the start point (where you first clicked the mouse button) as the center.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[23]">
<source><x id="334" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[23]/text:bookmark-start[0]"/>Drawing circles or ellipses<x id="335" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[23]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[81]">
<source>To draw an ellipse (also called an oval), click on the <g id="336">Ellipse</g> icon on the Drawing toolbar or the <g id="337">Insert Shapes</g> sub-section in Sidebar Properties. A circle is an ellipse with both axes the same length. To draw a circle, click on the <g id="338">Ellipse</g> icon and hold down the <g id="339">Shift</g> key whilst you draw a circle.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[82]">
<source>To draw an ellipse or circle from its center, position your cursor on the drawing, press the mouse button and then hold down the <g id="340">Alt</g> key while dragging with the cursor. The ellipse or circle uses the start point (where you first clicked the mouse button) as the center.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[7]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[83]">
<source>If you first press and hold down the <g id="341">Ctrl</g> key and then click on one of the icons for Line, Rectangle, Ellipse, or Text, a standard sized object is drawn automatically in the work area; the size, shape, and color are all standard values. These attributes can be changed later, if desired. See the <g id="342">Draw Guide</g> for more information.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[24]">
<source><x id="343" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[24]/text:bookmark-start[0]"/><x id="344" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[24]/text:soft-page-break[0]"/>Drawing curves or polygons<x id="345" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[24]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[84]">
<source>To <x id="346" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[84]/text:alphabetical-index-mark[0]"/>draw<x id="347" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[84]/text:alphabetical-index-mark[1]"/><x id="348" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[84]/text:alphabetical-index-mark[2]"/> a curve or polygon, click the <g id="349">Curve</g> icon on the Drawing toolbar or the <g id="350">Insert Shapes</g> sub-section in Sidebar Properties. Click on the triangle to the right of the icon to open the tool palette containing tools that are available for drawing curves and polygons (Figure <x id="351" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[84]"/>). The icon for the tool used most recently is on the Drawing toolbar to make it easier to use the same tool again.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[85]">
<source>Move the mouse cursor over one of the icons to show a tooltip with a description of the function.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[86]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="352" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[86]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Curves (Lines) toolbar and available tools</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[8]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[87]">
<source>Hovering the mouse pointer over this icon gives a tooltip of <g id="353">Curve</g>. If you open the floating toolbar, the title is <g id="354">Lines</g>, as shown in Figure <x id="355" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[87]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[88]">
<source>Hold down the <g id="356">Shift</g> key when drawing lines with the Curve or Polygon tools to restrict the angles between the lines to 45 or 90 degrees.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[25]">
<source><x id="357" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[25]/text:bookmark-start[0]"/>Curves<x id="358" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[25]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[89]">
<source>Click and hold the left mouse button to create the starting point of your curve, then, while holding down the left mouse button, drag from the starting point to draw a line. Release the left mouse button and continue to drag the cursor to bend the line into a curve. Click to set the end point of the curve and fix the line on the page. To continue with your line, drag the mouse cursor to draw a straight line. Each mouse click sets a corner point and allows you to continue drawing another straight line from the corner point. A double click ends the drawing of your line.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[90]">
<source>A filled curve automatically joins the last point to the first point to close off the figure and fills it with the current standard fill color. A curve without filling will not be closed at the end of the drawing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[26]">
<source><x id="359" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[26]/text:bookmark-start[0]"/>Polygons<x id="360" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[26]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[91]">
<source>Click and draw the first line from the start point with the left mouse button held down. As soon as you release the mouse button, a line between the first and second points is drawn. Move the cursor to draw the next line. Each mouse click sets a corner point and allows you to draw another line. A double-click ends the drawing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[92]">
<source>A filled polygon automatically joins the last point to the first point to close off the figure and fills it with the current standard fill color. A polygon without filling will not be closed at the end of the drawing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[27]">
<source><x id="361" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[27]/text:bookmark-start[0]"/>Polygons 45°<x id="362" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[27]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[93]">
<source>Like ordinary polygons, these are formed from lines, but the angles between lines are restricted to 45 or 90 degrees.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[28]">
<source><x id="363" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[28]/text:bookmark-start[0]"/>Freeform lines<x id="364" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[28]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[94]">
<source>Using the freeform line tools is similar to drawing with a pencil on paper. Press and hold the left mouse button and drag the cursor to the line shape you require. It is not necessary to end the drawing with a double-click, just release the mouse button and the drawing is completed.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[95]">
<source>If Freeform Line Filled is selected, the end point is joined automatically to the start point and the object is filled with the appropriate color.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[29]">
<source><x id="365" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[29]/text:bookmark-start[0]"/><x id="366" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[29]/text:soft-page-break[0]"/>Adding text<x id="367" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[29]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[96]">
<source>To activate the text tool, click on the <g id="368">Text</g> icon for horizontal text or the <g id="369">Vertical Text</g> icon for vertical script. If the Vertical Text icon is not visible, check that <g id="370">Asian </g>has been selected in <g id="371">Tools > Options > Language Settings > Languages</g>. You can display the Text Formatting toolbar (<g id="372">View > Toolbars</g>) or use the Character section in the Properties pane of the Sidebar to select font type, font size, and other text properties before you start typing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[9]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>After activating the Text command, click at the location where you want to position the text. A small text frame appears, containing only the cursor. This frame can be moved like any other object. A text frame is also dynamic and grows as you enter text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[10]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>The information field in the status bar shows that you are editing text and also provides details about the current cursor location using paragraph, row, and column numbers (Figure <x id="373" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[10]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]"/>).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[11]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="374" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[11]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="375" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[11]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Text information on the Status Bar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[12]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>You can insert a line break with the <g id="376">Shift+Enter</g> key combination or start a new paragraph with the <g id="377">Enter</g> key. The insertion of line breaks or new paragraphs does not terminate text editing or deselect the text frame. When you have finished typing text, click outside the text frame to cancel adding or editing text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[13]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>Text properties can also be changed during text input, with any changes taking effect from the cursor position onwards. To change the properties for all of the text in the text frame, you have to highlight all text in the text frame.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[97]">
<source>You can create Graphic styles that you can reuse for other text frames. Select <g id="378">Format > Styles and Formatting </g>or press <g id="379">F11</g> to open the Styles and Formatting dialog, or click on the Styles and Formatting icon on the Sidebar. Graphic styles affect all of the text within a text frame. To only format parts of the text, use direct formatting with the Text Formatting toolbar or the <g id="380">Character</g> and <g id="381">Paragraph</g> sub-sections in Sidebar Properties.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[98]">
<source>Text frames can also have fill colors, shadows, and other attributes, just like any other Draw object. You can rotate the frame and write the text at any angle. These options are available by right-clicking on the text frame itself.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[99]">
<source>If you double-click on a graphic object, or press <g id="382">F2</g> or click on the <g id="383">Text</g> icon when an object is selected, you can add text to the graphic object. This text then becomes part of the graphic object.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[100]">
<source>A graphic object is not dynamic and does not behave like a text frame. To keep text within the borders of the object, you have to use paragraphs, line breaks, or smaller text size, increase the object size, or combine all four methods.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[14]/text:list-item[0]/text:list[0]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>For more information about text, see Chapter 2, Drawing Basic Shapes, and Chapter 9, Adding and Formatting Text, in the <g id="384">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[30]">
<source><x id="385" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[30]/text:bookmark-start[0]"/><x id="386" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[30]/text:soft-page-break[0]"/>Glue points and connectors<x id="387" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[30]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[31]">
<source><x id="388" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[31]/text:bookmark-start[0]"/>Glue points<x id="389" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[31]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[101]">
<source>All Draw objects have glue points, which are not normally displayed. Glue points become visible when the <g id="390">Connectors</g> icon is selected on the Drawing toolbar or the <g id="391">Insert Shapes</g> sub‑section in Sidebar Properties. Most objects have four glue points (Figure <x id="392" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[101]"/>). You can add more glue points and customize glue points, using the <g id="393">Glue Points</g> toolbar (Figure <x id="394" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[101]"/>). Go to <g id="395">View > Toolbars > Glue Points</g> on to open the toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[102]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="396" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[102]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Glue points</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[103]">
<source>Glue points are not the same as the selection handles of an object. The handles are for moving or changing the shape of an object. Glue points are used to fix or glue a connector to an object so that when the object moves, the connector stays fixed to the object. For a more detailed description on the use of glue points, see Chapter 3, Working with Objects and Object Points, and Chapter 8, Connections, Flowcharts, and Organization Charts, <g id="397">in <g id="398"/>the </g><g id="399">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[104]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="400" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[104]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="401" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[104]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Glue Points toolbar and available tools</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[32]">
<source><x id="402" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[32]/text:bookmark-start[0]"/>Connectors<x id="403" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[32]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[105]">
<source>Connectors are lines or arrows whose ends automatically snap to a glue point of an object. Connectors are especially useful in drawing organization charts, flow diagrams, and mind-maps. When objects are moved or reordered, <x id="404" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[105]/text:alphabetical-index-mark[0]"/><x id="405" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[105]/text:alphabetical-index-mark[1]"/>the connectors remain attached to a glue point. Figure <x id="406" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[105]"/><g id="407"/>shows an example of two objects and a connector.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[106]">
<source>Draw offers a range of different connectors and connector functions. On the Drawing toolbar or the <g id="408">Insert Shapes</g> sub-section in Sidebar Properties, click on the triangle next to the <g id="409">Connector</g> icon <g id="410"><x id="411" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[106]/text:span[2]/draw:frame[0]"/></g><g id="412"/>to open the <g id="413">Connectors</g> toolbar (Figure <x id="414" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[106]"/>). For a more detailed description of the use of connectors, see Chapter 8, Connections, Flowcharts, and Organization Charts, in the <g id="415">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[107]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="416" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[107]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: A connector between two objects</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[108]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="417" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[108]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Connectors toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[33]">
<source><x id="418" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[33]/text:bookmark-start[0]"/>Drawing geometric shapes<x id="419" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[33]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[109]">
<source>The icons for drawing geometric shapes are located on the Drawing toolbar. The geometric shapes are explained in the following sections. Clicking on the triangle to the right of the icon on the Drawing toolbar opens a floating toolbar giving access to the tools for that shape.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[15]/text:list-item[0]/text:p[0]">
<source>Tip</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[110]">
<source>The use of these tools for geometric shapes is similar to the tool used for drawing rectangles or squares. For more information, see page <x id="420" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[110]"/><g id="421"/>and Chapter 2, Drawing Basic Shapes, in the <g id="422">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[16]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[111]">
<source>The icons for geometric shapes displayed on the Drawing toolbar will change shape according to the last tool selected and used to draw an object.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[34]">
<source><x id="423" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[34]/text:bookmark-start[0]"/>Basic shapes<x id="424" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[34]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[112]">
<source>Click on the triangle to the right of the <g id="425">Basic Shapes</g> icon <g id="426"><x id="427" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[112]/text:span[1]/draw:frame[0]"/></g><g id="428"/>to open the <g id="429">Basic Shapes</g> toolbar. This toolbar also includes a rectangle tool identical to the one on the Drawing toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[113]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="430" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[113]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Basic Shapes toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[35]">
<source><x id="431" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[35]/text:bookmark-start[0]"/>Symbol shapes<x id="432" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[35]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[114]">
<source>Click on the triangle to the right of the <g id="433">Symbol Shapes</g> icon <x id="434" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[114]/draw:frame[0]"/><g id="435"/>to open the <g id="436">Symbol Shapes</g> toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[115]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="437" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[115]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="438" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[115]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Symbol Shapes toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[36]">
<source><x id="439" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[36]/text:bookmark-start[0]"/>Block arrows<x id="440" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[36]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[116]">
<source>Click on the triangle to the right of the <x id="441" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[116]/text:alphabetical-index-mark[0]"/><x id="442" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[116]/text:alphabetical-index-mark[1]"/><g id="443">Block Arrows</g> icon <g id="444"><x id="445" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[116]/text:span[1]/draw:frame[0]"/></g><g id="446"/>to open the <g id="447">Block Arrows</g> toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[117]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="448" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[117]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="449" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[117]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Block Arrows toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[37]">
<source><x id="450" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[37]/text:bookmark-start[0]"/><x id="451" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[37]/text:soft-page-break[0]"/>Flowcharts<x id="452" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[37]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[118]">
<source>Click on the triangle to the right of the <g id="453">Flowcharts</g> icon <g id="454"><x id="455" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[118]/text:span[1]/draw:frame[0]"/></g><g id="456"/>to open the <g id="457">Flowchart</g> toolbar for symbols used in drawing flowcharts. The creation of flowcharts, organization charts, and similar planning tools is further described in Chapter 8, Connections, Flowcharts, and Organization Charts in the <g id="458">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[119]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="459" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[119]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="460" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[119]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Flowcharts toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[38]">
<source><x id="461" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[38]/text:bookmark-start[0]"/>Callouts<x id="462" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[38]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[17]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>Click on the triangle to the right of the <g id="463">Callouts</g> icon <g id="464"><g id="465"><x id="466" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[17]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]/text:span[1]/text:span[0]/draw:frame[0]"/></g></g><g id="467"/>to open the <g id="468">Callouts</g> toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[17]/text:list-item[0]/text:list[0]/text:list-item[1]/text:p[0]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[1]">
<source>Figure <x id="469" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[17]/text:list-item[0]/text:list[0]/text:list-item[1]/text:p[0]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[1]"/>: Callouts toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[39]">
<source><x id="470" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[39]/text:bookmark-start[0]"/>Stars <x id="471" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[39]/text:alphabetical-index-mark[0]"/>and banners<x id="472" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[39]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[18]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>Click on the triangle to the right of the <g id="473">Stars</g> icon <g id="474"><x id="475" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[18]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]/text:span[1]/draw:frame[0]"/></g><g id="476"/>to open the <g id="477">Stars and Banners</g> toolbar.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[18]/text:list-item[0]/text:list[0]/text:list-item[1]/text:p[0]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="478" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[18]/text:list-item[0]/text:list[0]/text:list-item[1]/text:p[0]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="479" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[18]/text:list-item[0]/text:list[0]/text:list-item[1]/text:p[0]/text:span[0]/text:span[0]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Stars and Banners toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[19]/text:list-item[0]/text:p[0]">
<source>Note</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:list[20]/text:list-item[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>You can add text to all of these geometric shapes. For more information, see Chapter 2, Drawing Basic Shapes, and Chapter 11, Advanced Draw Techniques, in the <g id="480">Draw Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[40]">
<source><x id="481" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[40]/text:bookmark-start[0]"/>Selecting objects<x id="482" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[40]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[41]">
<source><x id="483" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[41]/text:bookmark-start[0]"/>Direct selection<x id="484" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:h[41]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[2]/text:p[120]">
<source>The easiest way to select an object is to click directly on it. For objects that are not filled, click on the object outline to select it. One click selects; a second click deselects. To select or deselect more than one object, hold the shift button down while clicking.</source>
</trans-unit>