-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGS6004-GettingStartedWithWriter.xlf
2365 lines (2365 loc) · 268 KB
/
GS6004-GettingStartedWithWriter.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="GS6004-GettingStartedWithWriter.odt" source-language="en" datatype="plaintext">
<body>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[1]">
<source><x id="0" xid="office:document-content[0]/office:body[0]/office:text[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:p[2]">
<source>Chapter 4 <g id="1"/><g id="2"/>Getting Started with Writer</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[3]">
<source>Word Processing with LibreOffice</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[0]">
<source><x id="3" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[0]/text:bookmark-start[0]"/>Copyright<x id="4" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/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[0]/text:h[1]">
<source><x id="7" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[1]/text:bookmark-start[0]"/>Contributors<x id="8" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/table:table[0]/table:table-row[0]/table:table-cell[1]/text:p[0]">
<source>Jorge Rodríguez</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[0]/table:table-row[0]/table:table-cell[2]/text:p[0]">
<source>Amanda Labby</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[0]/table:table-row[1]/table:table-cell[0]/text:p[0]">
<source>Paul Figueiredo</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[0]/table:table-row[1]/table:table-cell[1]/text:p[0]">
<source>Cathy Crumbley</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[2]">
<source><x id="9" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[2]/text:bookmark-start[0]"/>Feedback<x id="10" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/text:p[2]">
<source>Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: <g id="11">[email protected]</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/text:h[3]">
<source><x id="12" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[3]/text:bookmark-start[0]"/>Acknowledgments<x id="13" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/text:p[4]">
<source>This chapter is adapted and updated from Chapter 4 of <g id="14">Getting Started with OpenOffice.org 3.x</g>. The contributors to that chapter and subsequent revisions were:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[0]/table:table-cell[0]/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[0]/table:table[1]/table:table-row[0]/table:table-cell[1]/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[0]/table:table[1]/table:table-row[0]/table:table-cell[2]/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[0]/table:table[1]/table:table-row[1]/table:table-cell[0]/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[0]/table:table[1]/table:table-row[1]/table:table-cell[1]/text:p[0]">
<source>Spencer E. Harpe</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[1]/table:table-cell[2]/text:p[0]">
<source>Peter Hillier-Brook</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[2]/table:table-cell[0]/text:p[0]">
<source>Peter Kupfer</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[2]/table:table-cell[1]/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[0]/table:table[1]/table:table-row[2]/table:table-cell[2]/text:p[0]">
<source>Janet Swisher</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[3]/table:table-cell[0]/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[0]/table:table[1]/table:table-row[3]/table:table-cell[1]/text:p[0]">
<source>John A Smith</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[1]/table:table-row[3]/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[0]/table:table[1]/table:table-row[4]/table:table-cell[0]/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[0]/table:table[1]/table:table-row[4]/table:table-cell[1]/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[0]/text:h[4]">
<source><x id="15" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/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[0]/text:h[5]">
<source><x id="18" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:h[5]/text:bookmark-start[0]"/><g id="19">Note for</g> macOS <g id="20">users</g><x id="21" xid="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/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[0]/table:table[2]/table:table-row[0]/table:table-cell[1]/text:p[0]">
<source><g id="24">m</g>ac<g id="25">OS</g> equivalent</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/table:table[2]/table:table-row[1]/table:table-cell[0]/text:p[0]">
<source><g id="26">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[0]/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[0]/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[0]/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[0]/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[0]/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[0]/table:table[2]/table:table-row[3]/table:table-cell[0]/text:p[0]">
<source><g id="27">Ctrl</g> (<g id="28">Control</g>)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[2]/table:table-row[3]/table:table-cell[1]/text:p[0]">
<source>⌘ (<g id="29">Command</g>)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/table:table[2]/table:table-row[4]/table:table-cell[1]/text:p[0]">
<source><g id="30">Shift</g>+⌘+<g id="31">F5</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/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[0]/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[0]/table:table[2]/table:table-row[5]/table:table-cell[1]/text:p[0]">
<source>⌘+<g id="32">T</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/table:table[2]/table:table-row[5]/table:table-cell[2]/text:p[0]">
<source>Open the <g id="33">sidebar </g>Styles <g id="34">deck</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:index-title[0]/text:p[0]">
<source>Table of Contents</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[0]/text:a[0]">
<source>Copyright<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[1]/text:a[0]">
<source>Contributors<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[2]/text:a[0]">
<source>Feedback<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[3]/text:a[0]">
<source>Acknowledgments<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[4]/text:a[0]">
<source>Publication date and software version<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[5]/text:a[0]">
<source>Note for macOS users<g id="40"/>2</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[6]/text:a[0]">
<source>What is Writer?<g id="41"/>6</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[7]/text:a[0]">
<source>The Writer interface<g id="42"/>6</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[8]/text:a[0]">
<source>Status Bar<g id="43"/>7</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[9]/text:a[0]">
<source>Sidebar<g id="44"/>9</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[10]/text:a[0]">
<source>Properties Deck<g id="45"/>10</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[11]/text:a[0]">
<source>Page Deck<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[12]/text:a[0]">
<source>Styles Deck<g id="47"/>11</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[13]/text:a[0]">
<source>Gallery Deck<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[14]/text:a[0]">
<source>Navigator Deck<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[15]/text:a[0]">
<source>Manage Changes Deck<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[16]/text:a[0]">
<source>Design Deck<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[17]/text:a[0]">
<source>Changing document views<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[18]/text:a[0]">
<source>Moving quickly through a document<g id="53"/>12</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[19]/text:a[0]">
<source>Using the Navigator<g id="54"/>12</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[20]/text:a[0]">
<source>Using Go to Page Option<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[21]/text:a[0]">
<source>Working with documents<g id="56"/>13</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[22]/text:a[0]">
<source>Saving as a Microsoft Word file<g id="57"/>13</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[23]/text:a[0]">
<source>Using built-in language tools<g id="58"/>13</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[24]/text:a[0]">
<source>Options for applying languages<g id="59"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[25]/text:a[0]">
<source>Using styles<g id="60"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[26]/text:a[0]">
<source>Using direct formatting<g id="61"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[27]/text:a[0]">
<source>Preventing text from being checked for spelling<g id="62"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[28]/text:a[0]">
<source>Obtaining resources for additional languages<g id="63"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[29]/text:a[0]">
<source>Working with text<g id="64"/>14</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[30]/text:a[0]">
<source>Selecting items that are not consecutive<g id="65"/>15</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[31]/text:a[0]">
<source>Selecting a vertical block of text<g id="66"/>15</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[32]/text:a[0]">
<source>Cutting, copying, and moving text<g id="67"/>16</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[33]/text:a[0]">
<source>Pasting text<g id="68"/>16</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[34]/text:a[0]">
<source>Finding and replacing text and formatting<g id="69"/>16</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[35]/text:a[0]">
<source>Using the Find toolbar<g id="70"/>17</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[36]/text:a[0]">
<source>Using the Find & Replace dialog<g id="71"/>18</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[37]/text:a[0]">
<source>Inserting special characters<g id="72"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[38]/text:a[0]">
<source>Inserting dashes and non-breaking spaces and hyphens<g id="73"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[39]/text:a[0]">
<source>Inserting non-breaking spaces<g id="74"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[40]/text:a[0]">
<source>Inserting non-breaking hyphens<g id="75"/>19</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[41]/text:a[0]">
<source>Inserting en and em dashes<g id="76"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[42]/text:a[0]">
<source>Checking spelling and grammar<g id="77"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[43]/text:a[0]">
<source>Checking spelling automatically<g id="78"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[44]/text:a[0]">
<source>Checking spelling and grammar<g id="79"/>20</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[45]/text:a[0]">
<source>Using synonyms and the thesaurus<g id="80"/>21</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[46]/text:a[0]">
<source>Using AutoCorrect<g id="81"/>21</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[47]/text:a[0]">
<source>Using Word Completion<g id="82"/>22</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[48]/text:a[0]">
<source>Using AutoText<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[49]/text:a[0]">
<source>Formatting text<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[50]/text:a[0]">
<source>Using styles is highly recommended<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[51]/text:a[0]">
<source>Formatting paragraphs using styles<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[52]/text:a[0]">
<source>Formatting paragraphs directly<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[53]/text:a[0]">
<source>Removing direct formatting<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[54]/text:a[0]">
<source>Formatting characters using styles<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[55]/text:a[0]">
<source>Formatting characters directly<g id="90"/>25</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[56]/text:a[0]">
<source>Formatting tables<g id="91"/>25</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[57]/text:a[0]">
<source>AutoCorrection<g id="92"/>26</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[58]/text:a[0]">
<source>Creating lists with styles<g id="93"/>26</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[59]/text:a[0]">
<source>Creating bulleted and numbered lists<g id="94"/>26</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[60]/text:a[0]">
<source>Creating nested lists<g id="95"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[61]/text:a[0]">
<source>Creating lists with direct formatting<g id="96"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[62]/text:a[0]">
<source>Creating bulleted and numbered lists<g id="97"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[63]/text:a[0]">
<source>Creating nested lists<g id="98"/>27</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[64]/text:a[0]">
<source>Setting tab stops and indents<g id="99"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[65]/text:a[0]">
<source>Changing the default tab stop interval<g id="100"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[66]/text:a[0]">
<source>Changing measurement units for tab stops and rulers<g id="101"/>28</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[67]/text:a[0]">
<source>Hyphenating words<g id="102"/>29</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[68]/text:a[0]">
<source>Automatic hyphenation using styles<g id="103"/>29</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[69]/text:a[0]">
<source>Setting Hyphenation with Writing Aids<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[70]/text:a[0]">
<source>Manual hyphenation<g id="105"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[71]/text:a[0]">
<source>Formatting pages<g id="106"/>30</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[72]/text:a[0]">
<source>Creating headers and footers<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[73]/text:a[0]">
<source>Inserting a header or footer<g id="108"/>31</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[74]/text:a[0]">
<source>Determining header and footer appearance<g id="109"/>31</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[75]/text:a[0]">
<source>Inserting document title in headers and footers<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[76]/text:a[0]">
<source>Numbering pages<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[77]/text:a[0]">
<source>Displaying the page number<g id="112"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[78]/text:a[0]">
<source>Including the total number of pages<g id="113"/>32</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[79]/text:a[0]">
<source>Restarting page numbering<g id="114"/>33</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[80]/text:a[0]">
<source>Changing page margins<g id="115"/>33</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[81]/text:a[0]">
<source>Adding a custom watermark to the page background<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[82]/text:a[0]">
<source>Adding comments to a document<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[83]/text:a[0]">
<source>Formatting comments<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[84]/text:a[0]">
<source>Navigating through comments<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[85]/text:a[0]">
<source>Printing comments<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[86]/text:a[0]">
<source>Creating a table of contents<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[87]/text:a[0]">
<source>Creating indexes and bibliographies<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[88]/text:a[0]">
<source>Working with graphics<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[0]/text:table-of-content[0]/text:index-body[0]/text:p[89]/text:a[0]">
<source>Printing<g id="124"/>37</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[90]/text:a[0]">
<source>Using mail merge<g id="125"/>37</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[91]/text:a[0]">
<source>Tracking changes to a document<g id="126"/>37</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[92]/text:a[0]">
<source>Using fields<g id="127"/>38</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[93]/text:a[0]">
<source>Linking and cross-referencing within a document<g id="128"/>38</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[94]/text:a[0]">
<source>Using hyperlinks<g id="129"/>38</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[95]/text:a[0]">
<source>Creating and using cross-references<g id="130"/>38</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[96]/text:a[0]">
<source>Using bookmarks<g id="131"/>39</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[97]/text:a[0]">
<source>Using master documents<g id="132"/>40</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[98]/text:a[0]">
<source>Classifying document contents<g id="133"/>40</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:section[0]/text:table-of-content[0]/text:index-body[0]/text:p[99]/text:a[0]">
<source>Creating fill-in forms<g id="134"/>40</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[0]">
<source><x id="135" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[0]/text:bookmark-start[0]"/>What is Writer?<x id="136" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[4]">
<source>Writer is the word processor component of LibreOffice. In addition to the usual features of a word processor (spelling check, thesaurus, hyphenation, autocorrect, find and replace, automatic generation of tables of contents and indexes, mail merge and others), Writer provides these <x id="137" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[4]/text:alphabetical-index-mark[0]"/>important features<x id="138" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[4]/text:alphabetical-index-mark[1]"/><x id="139" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[4]/text:alphabetical-index-mark[2]"/>:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[0]/text:p[0]">
<source>Templates and styles (see Chapter 3)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[1]/text:p[0]">
<source>Page layout methods, including frames, columns, and tables</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[2]/text:p[0]">
<source>Automated tables of contents and indexes</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[3]/text:p[0]">
<source>Embedding or linking of graphics, spreadsheets, and other objects</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[4]/text:p[0]">
<source>Built-in drawing tools</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[5]/text:p[0]">
<source>Master documents—to group a collection of documents into a single document</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[6]/text:p[0]">
<source>Change tracking during revisions</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[7]/text:p[0]">
<source>Database integration, including a bibliography database</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[8]/text:p[0]">
<source>Mail merge</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[9]/text:p[0]">
<source>Export to PDF, including bookmarks (see Chapter 10)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[10]/text:p[0]">
<source>Document digital signature</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[11]/text:p[0]">
<source>Form design and filling</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[0]/text:list-item[12]/text:p[0]">
<source>And many more</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[5]">
<source>These features are covered in detail in the <g id="140">Writer Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[1]">
<source><x id="141" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[1]/text:bookmark-start[0]"/>The Writer interface<x id="142" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[6]">
<source>The main Writer workspace is shown in Figure <x id="143" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[6]"/>. The menus and toolbars are described in Chapter 1, Introducing LibreOffice. Some other features of the Writer interface are covered in this chapter.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[7]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="144" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[7]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="145" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[7]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: The main Writer workspace</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[2]">
<source><x id="146" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[2]/text:bookmark-start[0]"/><x id="147" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[2]/text:soft-page-break[0]"/>Status Bar<x id="148" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[8]">
<source>The Writer <x id="149" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[8]/text:alphabetical-index-mark[0]"/>Status Bar provides information about the document and convenient ways to change some document features quickly.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[9]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="150" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[9]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="151"><g id="152"/></g>Figure <x id="153" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[9]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Status bar components</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[11]/text:span[0]">
<source>Page number</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[12]">
<source>Shows the current page number, the sequence number of the current page (if different), and the total number of pages in the document. For example, if you restarted page numbering at 1 on the third page, its page number is 1 and its sequence number is 3.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[13]">
<source>If any bookmarks have been defined in the document, a right-click on this field pops up a list of bookmarks; click on one to go to that location.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[14]">
<source>To jump to a specific page in the document, double-click on this field. The Navigator opens. Click in the Page Number field and type the <g id="154">sequence</g> number of the required page and press <g id="155">Enter</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[15]">
<source>Word and character count </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[16]">
<source>The word and character count of the document is shown in the Status Bar, and is kept up to date as you edit. When text is selected, the word and character counts for the selection will appear here.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[17]">
<source>To display extended statistics such as character counts that exclude spaces, double-click the word count in the Status Bar, or choose <g id="156">Tools > Word Count</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[18]">
<source>You can also see the number of words and characters (and other information including the number of pages, tables, and graphics) in the entire document in <g id="157">File > Properties > Statistics</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[19]">
<source>Page style</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[20]">
<source>Shows the style of the current page. To change the page style, right-click on this field. A list of page styles pops up; choose a different style by clicking on it.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[21]">
<source>To edit the current page style, double-click on this field. The Page Style dialog opens.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[22]">
<source>Language</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[23]">
<source>Shows the language at the cursor position, or for the selected text, that is used for checking spelling and grammar as well as for hyphenation and thesaurus dictionaries.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[24]">
<source>Click to open a menu where you can choose another language for the selected text or for the paragraph where the cursor is located. You can also choose <g id="158">None (Do not check spelling)</g> <x id="159" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[24]/text:soft-page-break[0]"/>to exclude the text from a spelling check or choose <g id="160">More</g> to open the Character dialog. Any directly formatted language settings can be reset to the default language from this menu.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[25]">
<source>Insert mode</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[26]">
<source>This area is blank when in Insert mode. Click to change to <g id="161">Overwrite</g> mode; click again to return to Insert mode. In Insert mode, any text after the cursor position moves forward to make room for the text you type; in Overwrite mode, text after the cursor position is replaced by the text you type. This feature is disabled when in <g id="162">Record Changes</g> mode.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[27]">
<source>Selection mode</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[28]">
<source>Click to choose different selection modes. A context menu displays the available options. Howevering the mouse pointer over this field, also displays a tooltip that shows which mode is active. Note that the icon does not change. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[0]/table:table-cell[0]/text:p[0]">
<source>Mode</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[0]/table:table-cell[1]/text:p[0]">
<source>Effect</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[1]/table:table-cell[0]/text:p[0]">
<source>Standard selection</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[1]/table:table-cell[1]/text:p[0]">
<source>Click in the text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is deselected.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[2]/table:table-cell[0]/text:p[0]">
<source>Extending selection (<g id="163">F8</g>)</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[2]/table:table-cell[1]/text:p[0]">
<source>Clicking in the text extends or crops the current selection.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[3]/table:table-cell[0]/text:p[0]">
<source>Adding selection <g id="164">(Shift+F8)</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[3]/table:table-cell[1]/text:p[0]">
<source>A new, separate selection is added to an existing selection. The result is a multiple selection.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[4]/table:table-cell[0]/text:p[0]">
<source>Block selection <g id="165">(Ctrl+Shift+F8)</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/table:table[1]/table:table-row[4]/table:table-cell[1]/text:p[0]">
<source>A block of text can be selected.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[29]">
<source>On Windows systems, you can hold down the <g id="166">Alt</g> key while dragging to select a block of text. You do not need to enter the block selection mode.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[30]">
<source><x id="167" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[30]/text:alphabetical-index-mark[0]"/>Document changes status</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[31]">
<source>The icon that is displayed here changes from this one (<x id="168" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[31]/draw:frame[0]"/>) if the document has no unsaved changes, to this one (<x id="169" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[31]/draw:frame[1]"/>) if it has been edited and the changes have not been saved. Click on the unsaved changes icon to save the document.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[32]">
<source>Digital signature</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[33]">
<source>If the document has been digitally signed, this icon (<x id="170" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[33]/draw:frame[0]"/>) is displayed here; otherwise, it is blank. To sign the document, or to view the certificate, click the icon.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[34]">
<source>Section or object information</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[35]">
<source>When the cursor is on a section, heading, or list item, or when an object (such as a picture or table) is selected, information about that item appears in this field. Double-clicking in this area opens a relevant dialog. For details, consult the Help or the <g id="171">Writer Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[36]">
<source><x id="172" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[36]/text:reference-mark-start[0]"/>View layout<x id="173" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[36]/text:reference-mark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[37]">
<source>Click an icon to change between single page, side-by-side, and book layout views. The effect varies with the combination of window width and zoom factor in use. You can edit the document in any view. See Figure <x id="174" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[37]"/>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[38]">
<source><x id="175" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[38]/text:alphabetical-index-mark[0]"/><x id="176" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[38]/text:alphabetical-index-mark[1]"/>Zoom</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[39]">
<source>To change the view magnification, drag the Zoom slider, or click on the + and – signs, or right-click on the zoom level percent to pop up a list of magnification values from which to choose. Zoom interacts with the selected view layout to determine how many pages are visible in the document window.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[41]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="177" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[41]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="178" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[41]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: View layouts: single, side-by-side, book.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[3]">
<source><x id="179" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[3]/text:bookmark-start[0]"/>Sidebar<x id="180" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[42]">
<source>The Sidebar (Figure <x id="181" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[42]"/>) is normally open by default on the right side of the Writer window. If necessary, select <g id="182">View > Sidebar</g> from the Menu bar to display it. The Sidebar also has a Hide/Show button.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[43]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="183" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[43]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="184" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[43]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: <g id="185">Default </g>Properties panel of Sidebar in Writer</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[44]">
<source><x id="186" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[44]/text:soft-page-break[0]"/>The Writer Sidebar contains five decks by default: <g id="187">Properties, Page, Styles, Gallery, and Navigator</g>. If you have selected <g id="188">Enable experimental features</g> in <g id="189">Tools > Options > LibreOffice > Advanced</g>, a sixth deck (<g id="190">Manage Changes</g>) will appear, and a seventh (<g id="191">Design</g>) can be selected in <g id="192">Sidebar Settings > Customization</g>. Each deck has a corresponding icon on the <x id="193" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[44]/text:alphabetical-index-mark[0]"/>Tab bar on the right of the sidebar, allowing you to switch between them.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[45]">
<source>Each deck consists of a title bar and one or more content panels. Toolbars and sidebar panels share many functions. For example, the buttons for making text bold or italic exist in both the Formatting toolbar and the Character panel of the Properties deck.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[46]">
<source>Some panels contain a small <g id="194">More Options</g> button (<g id="195"><x id="196" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[46]/text:span[1]/draw:frame[0]"/></g>), which opens a dialog to give greater choice of editing controls. When a dialog is open, the document is locked for editing until the dialog is closed.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[47]">
<source>The decks are described below.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[4]/text:span[0]">
<source>Properties Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[48]">
<source>Contains tools for direct formatting within the document. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[49]">
<source><g id="197"/>For <g id="198">text editing, t</g>he default view shows tools organized into three panels:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[1]/text:list-item[0]/text:p[0]">
<source><g id="199">Styles: </g>Apply a paragraph style at the cursor position. Create or update a style.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[1]/text:list-item[1]/text:p[0]">
<source><g id="200">Character</g>: Modify text by the font type, size, color, weight, style and spacing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[1]/text:list-item[2]/text:p[0]">
<source><g id="201">Paragraph</g>: Style the paragraph by alignment, lists or bullets, background color, indent, and spacing. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[50]">
<source>Additional panels appear when specific types of items are selected:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[51]">
<source>If a graphic is selected, then the following panels open:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[2]/text:list-item[0]/text:p[0]">
<source><g id="202">Area:</g> Modify the graphic background area fill mode and transparency. Further colors, gradients, hatching, patterns, and bitmap selection and importing are available in <g id="203">More Options</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[2]/text:list-item[1]/text:p[0]">
<source><g id="204">Image:</g> Modify the graphic’s brightness, contrast, color mode and transparency.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[2]/text:list-item[2]/text:p[0]/text:span[0]">
<source>Wrap: Modify wrap and spacing where these are available.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[2]/text:list-item[3]/text:p[0]">
<source><g id="205">Position and Size:</g> Modify width and height.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[52]">
<source>If a drawing object is selected, then the following panels are available:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[3]/text:list-item[0]/text:p[0]">
<source><g id="206">Area:</g> Modify fill and transparency.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[3]/text:list-item[1]/text:p[0]">
<source><g id="207">Wrap:</g> <g id="208"/>Modify wrap and spacing.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[3]/text:list-item[2]/text:p[0]">
<source><g id="209">Position and Size:</g> Edit width, height, rotation, and flip attributes.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[53]">
<source>If a frame is selected, then the wrap panel opens but may be grayed-out if frame wrap is not available.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[54]">
<source>If a video or audio clip is inserted by selecting Insert > Media > Audio or Visual, the following panel opens when the clip is selected:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[4]/text:list-item[0]/text:p[0]">
<source>Media Playback: Control for play, pause, stop, seek, loop, and volume</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[4]/text:list-item[1]/text:p[0]">
<source>Position and Size: <g id="210"><g id="211"/></g>Modify width and height.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[5]/text:span[0]">
<source>Page Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[55]">
<source>Modifies the page style to change the most commonly used page properties. It is organized in four panels: </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[5]/text:list-item[0]/text:p[0]">
<source>Format modifies the size, width, height, orientation, and page margins; </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[5]/text:list-item[1]/text:p[0]">
<source><x id="212" xid="office:document-content[0]/office:body[0]/office:text[0]/text:list[5]/text:list-item[1]/text:p[0]/text:soft-page-break[0]"/>Styles modifies the numbering scheme, background, page layout (specifies whether the page style should apply to odd or even pages or to both), and columns; </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[5]/text:list-item[2]/text:p[0]">
<source>Header and Footer modify the respective margins, spacing, and content across pages.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[6]/text:list-item[0]/text:p[0]">
<source>Caution</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[56]">
<source>Be aware that by changing the options on the Page deck, you will change the page style in use, modifying not only the current page but all pages in the document using the same page style.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[6]/text:span[0]">
<source>Styles Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[57]">
<source>Manages the styles used in the document. This includes applying existing styles, modifying them, or creating new ones. You can preview the changes by checking <g id="213">Show Previews</g> at the bottom.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[7]/text:span[0]">
<source>Gallery Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[58]">
<source>Contains images and diagrams included in the Gallery themes. The Gallery has two sections. The first lists the themes by name (Arrows, Background, Diagrams, etc.) and the second displays the images in the selected category. Select the <g id="214">New Theme</g> button to create new categories. To insert an image into a file, or add a new image to the new category, drag and drop the selected image.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[8]/text:span[0]">
<source>Navigator Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[59]">
<source>Makes it easy to navigate to specific types of content and to reorganize contents based on <g id="215"/>categories, such as headings, tables, frames, graphics, etc. This deck is similar to the floating toolbar that can be opened from <g id="216">View > Navigator</g> on the Menu bar or the <g id="217">Navigator</g> button on the Standard Toolbar, or by pressing <g id="218">F5</g>. However, the Sidebar Navigator does not contain a <g id="219">List Box On/Off</g> button that reduces the size of the window.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[9]/text:span[0]">
<source>Manage Changes Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[60]">
<source>Lists all changes made to the document since the Track Changes mode was activated. This deck is an alternative view of the Manage Changes dialog that can be opened from <g id="220">Edit > Track Changes > Manage Changes</g> on the Menu bar. This tab is available only when <g id="221">Enable experimental features</g> has been selected in <g id="222">Tools > Options > LibreOffice > Advanced</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[10]/text:span[0]">
<source>Design Deck</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[61]">
<source>Provides quick access to themes (fonts and colors) and style presets. This deck is available only when Experimental Features is enabled in<g id="223"> Tools > Options > LibreOffice > Advanced</g> and when the deck is selected in <g id="224">Sidebar Settings > Customization</g>. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[11]">
<source><x id="225" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[11]/text:bookmark-start[0]"/><x id="226" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[11]/text:alphabetical-index-mark[0]"/><x id="227" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[11]/text:alphabetical-index-mark[1]"/>Changing document views<x id="228" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[62]">
<source>Writer has three ways to view a document: Normal, Web, and Full Screen. To change the view, go to the <g id="229">View</g> menu and click on the desired view. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[63]">
<source>Normal view</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[64]">
<source>Previously called Print Layout, Normal is the default view in Writer. In this view, you can use the View Layout icons and the Zoom slider on the Status bar to change the magnification. You can set these same options by choosing <g id="230">View > Zoom > Zoom</g> from the menu bar to display the <x id="231" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[64]/text:alphabetical-index-mark[0]"/><x id="232" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[64]/text:alphabetical-index-mark[1]"/>Zoom & View Layout dialog.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[65]">
<source>Normal view also allows you to hide or show the headers and footers and the gap between pages. To do this, choose <g id="233">View > Hide Whitespace</g> from the Menu bar. When activated, a check mark appears next to the option. This also hides headers, footers, and white space in Full Screen view. Note that this only works when single-page view is activated in the Status Bar. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[66]">
<source><x id="234" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[66]/text:soft-page-break[0]"/>Web Layout view</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[67]">
<source>In Web Layout view, you can use only the Zoom slider; the View Layout buttons on the Status bar are disabled, and most of the choices on the Zoom & View Layout dialog are not available. In Web layout there is no visual indication of page boundaries.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[68]">
<source>Full Screen view</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[69]">
<source>In Full Screen view, the document is displayed using the zoom and layout settings previously selected in the other views. To exit Full Screen view and return to Normal view, press the <g id="235">Esc</g> key or toggle the Full Screen button on the floating toolbar in the t<x id="236" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[69]/text:bookmark-start[0]"/>op left-hand corner. You can also use <g id="237">Ctrl+Shift+J</g> to toggle between Full Screen and Normal views.<x id="238" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[69]/text:bookmark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[12]">
<source><x id="239" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[12]/text:bookmark-start[0]"/>Moving quickly through a document<x id="240" xid="office:document-content[0]/office:body[0]/office:text[0]/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:h[13]">
<source><x id="241" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[13]/text:bookmark-start[0]"/>Using the Navigator<x id="242" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[70]">
<source>In addition to the navigation features of the Status Bar (described above), you can use the Navigator window and the Navigation toolbar, from either the Standard toolbar or from the Sidebar, as described in Chapter 1, Introducing LibreOffice.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[71]">
<source>The Navigation toolbar (Figure <x id="243" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[71]"/>), created from the down arrow of the Navigator window, shows buttons for all the object types shown in the Navigator.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[72]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="244" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[72]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="245" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[72]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Navigation toolbar</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[73]">
<source>When the button is selected for a specific object type, clicking the <g id="246">Previous</g> and <g id="247">Next</g> buttons will jump to the previous or next occurrence of the object. This is particularly helpful for finding items like index entries, which can be difficult to see in the text. The names of the buttons (shown in the tooltips) change to match the selected category, such as <g id="248">Next Graphic</g>, <g id="249">Next Bookmark</g>, or <g id="250">Continue search forward</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[74]">
<source>For more uses of the Navigator in Writer, see the <g id="251">Writer Guide</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[14]">
<source><x id="252" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[14]/text:bookmark-start[0]"/>Using Go to Page Option<x id="253" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[75]">
<source>To move to a page in the document use the menu: <g id="254">Edit > Go to Page</g> or the keyboard shortcut <g id="255">CTRL + G</g> to open the Go To Page dialog (Figure <g id="256"><x id="257" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[75]/text:span[2]"/></g>). It initially shows the number of the current page and the number of pages in the document. Then type the number of the required destination page into the text box and click the <g id="258">OK</g> button.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="259" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/><g id="260"><g id="261"/></g>Figure <x id="262" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[76]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Go to Page dialog</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[15]">
<source><x id="263" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[15]/text:bookmark-start[0]"/><x id="264" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[15]/text:soft-page-break[0]"/>Working with documents<x id="265" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[77]">
<source>Chapter 1, Introducing LibreOffice, includes instructions on creating new documents, opening existing documents, saving documents, accessing remote servers, and password-protecting documents. Chapter 3, Using Styles and Templates, covers how to create a document from a template.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[78]">
<source>By default, LibreOffice creates and saves files in the OpenDocument file format (ODF), a standardized file format (ISO-IEC 26300) used by many software applications. Writer documents have the extension .ODT.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[7]/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:p[79]">
<source>Whenever possible to choose the document file format, choose the default ODF format. This reduces the possibility of errors.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[16]">
<source><x id="266" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[16]/text:bookmark-start[0]"/>Saving as a Microsoft Word file<x id="267" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[80]">
<source>If you need to exchange documents with users of Microsoft Word who are unwilling or unable to receive .ODT files, you can open, edit, and save documents in Microsoft Word formats.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[81]">
<source>You can also create and edit .ODT files and then save them as .DOC or .DOCX files. To do this:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[8]/text:list-item[0]/text:p[0]">
<source><g id="268">Important</g>—First save your document in the file format used by LibreOffice Writer (.ODT). If you do not, any changes you made since the last time you saved will appear only in the Microsoft Word version of the document. Also, saving in ODF format enables you to re-save or modify the document if the recipient of your document experiences trouble with the Microsoft format.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[8]/text:list-item[1]/text:p[0]">
<source>Then choose <g id="269">File > Save As</g>. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[8]/text:list-item[2]/text:p[0]">
<source>On the Save As dialog, in the <g id="270">File type</g> (or <g id="271">Save as type</g>) drop-down menu, select the type of Word format you need. You may also choose to change the file name.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[8]/text:list-item[3]/text:p[0]">
<source>Click <g id="272">Save.</g></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[82]">
<source>This creates a separate document with a different file extension (such as .DOCX). From this point on, <g id="273">all changes you make to the document will occur only in the new document</g>. <g id="274"/>If you want to go back to working with the ODT version of your document, you must open it again.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[9]/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:p[83]">
<source>To have Writer save documents by default in a Microsoft Word file format, go to <g id="275">Tools > Options > Load/Save > General</g>. In the section named <g id="276">Default file format and ODF settings</g>, under <g id="277">Document type</g>, select <g id="278">Text document,</g> then under <g id="279">Always save as</g>, select your preferred file format.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[17]">
<source><x id="280" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[17]/text:bookmark-start[0]"/>Using built-in language tools<x id="281" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[84]">
<source>Writer provides some tools that make work easier if you use more than one language in the same document or if you write documents in various languages. Changing the language for specific text enables you to use the correct dictionaries and rules to check spelling, grammar, and hyphenation. It also applies the localized versions of Autocorrect replacement options and uses the appropriate thesaurus.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[18]">
<source><x id="282" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[18]/text:bookmark-start[0]"/><x id="283" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[18]/text:soft-page-break[0]"/>Options for applying languages<x id="284" xid="office:document-content[0]/office:body[0]/office:text[0]/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:list[10]/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:p[85]">
<source>The language used at the location of the cursor is shown in the Status Bar, next to the page style in use.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[19]">
<source><x id="285" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[19]/text:bookmark-start[0]"/>Using styles<x id="286" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[86]">
<source>Languages can be set on the Font tab of the Paragraph Styles dialog or of the Character Styles dialog.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[87]">
<source>See the <g id="287">Writer Guide</g> for information on how to manage the language settings of a style.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[11]/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:p[88]">
<source>Be careful when changing a language in character or paragraph styles, as this will change the language for all characters or paragraphs using that style. It may be useful to include the language in the name of the style.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[89]">
<source>Also, note that languages set with direct formatting will override languages set using styles.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[20]">
<source><x id="288" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[20]/text:bookmark-start[0]"/>Using direct formatting<x id="289" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[90]">
<source>The language of a whole document can be set by using <g id="290">Tools > Options > Language Settings > Languages</g>. In the <g id="291">Default languages for documents</g> section, you can choose the language for all the text that is not explicitly marked as a different language.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[91]">
<source>Set the language for the whole document, for individual paragraphs, or even for individual words and characters, from <g id="292">Tools > Language</g> on the Menu bar. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[92]">
<source>Alternatively, you can set the language for individual paragraphs and characters by selecting text or putting the cursor in a paragraph and changing the language on the Status Bar. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[12]/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:p[93]">
<source>Although these methods are a type of direct formatting, they cannot be cleared by using “Clear Direct Formatting” <g id="293"/>on the Format menu or by using Ctrl+M.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[21]">
<source><x id="294" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[21]/text:bookmark-start[0]"/>Preventing text from being checked for spelling<x id="295" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[94]">
<source>You can set the language for a paragraph or a group of characters as <g id="296">None (Do not check spelling) </g>using any of the methods described above. This option is especially useful for text such as web addresses or programming language snippets that you do not want to check for spelling.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[22]">
<source><x id="297" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[22]/text:bookmark-start[0]"/>Obtaining resources for additional languages<x id="298" xid="office:document-content[0]/office:body[0]/office:text[0]/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:p[95]">
<source>The spelling checker works only for those languages in the Spelling dialog list (described on Page <g id="299"><x id="300" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[95]/text:span[0]"/></g>) that have the symbol (<x id="301" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[95]/draw:frame[0]"/>) next to them. If you do not see the symbol next to your preferred language, you can install the additional dictionary using <g id="302">Tools > Language > More Dictionaries Online</g>.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[23]">
<source><x id="303" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[23]/text:bookmark-start[0]"/><x id="304" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[23]/text:reference-mark-start[0]"/>Working with text<x id="305" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[23]/text:bookmark-end[0]"/><x id="306" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[23]/text:reference-mark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[96]">
<source>Selecting, copying, pasting, or moving text in Writer is similar to working with text in other programs. LibreOffice also has some convenient ways to select items that are not next to each other, select a vertical block of text, and paste unformatted text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]">
<source><x id="307" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:bookmark-start[0]"/><x id="308" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:bookmark-start[1]"/><x id="309" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:soft-page-break[0]"/><x id="310" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:reference-mark-start[0]"/>Selecting items that are not <x id="311" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:bookmark-end[0]"/>consecutive<x id="312" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:bookmark-end[1]"/><x id="313" xid="office:document-content[0]/office:body[0]/office:text[0]/text:h[24]/text:reference-mark-end[0]"/></source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[97]">
<source>To <x id="314" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[97]/text:alphabetical-index-mark[0]"/>select <x id="315" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[97]/text:alphabetical-index-mark[1]"/>nonconsecutive items (as shown in Figure <x id="316" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[97]"/>) using the mouse:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[13]/text:list-item[0]/text:p[0]">
<source>Select the first piece of text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[13]/text:list-item[1]/text:p[0]">
<source>Hold down the <g id="317">Ctrl</g> key and use the mouse to select the next piece of text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[13]/text:list-item[2]/text:p[0]">
<source>Repeat as often as needed.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[98]">
<source>To select nonconsecutive items using the keyboard:</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[14]/text:list-item[0]/text:p[0]">
<source>Select the first piece of text. </source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[14]/text:list-item[1]/text:p[0]">
<source>Press <g id="318">Shift+F8</g>. This puts Writer in “Adding selection” mode.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[14]/text:list-item[2]/text:p[0]">
<source>Use the arrow keys to move to the start of the next piece of text to be selected. Hold down the <g id="319">Shift</g> key and select the next piece of text.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:list[14]/text:list-item[3]/text:p[0]">
<source>Repeat as often as required.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[99]">
<source>Now you can work with the selected text (copy it, delete it, change the style, and so on).</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[100]">
<source>Press <g id="320">Esc</g> to exit from this mode.</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[101]/draw:frame[0]/draw:text-box[0]/text:p[0]">
<source><x id="321" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[101]/draw:frame[0]/draw:text-box[0]/text:p[0]/draw:frame[0]"/>Figure <x id="322" xid="office:document-content[0]/office:body[0]/office:text[0]/text:p[101]/draw:frame[0]/draw:text-box[0]/text:p[0]"/>: Selecting items that are not next to each other</source>
</trans-unit>
<trans-unit xml:space="preserve" id="office:document-content[0]/office:body[0]/office:text[0]/text:p[102]">
<source>For more information about keyboard selection of text, see the topic “Navigating and selecting with the keyboard” in LibreOffice Help (<g id="323">F1</g>).</source>
</trans-unit>