-
Notifications
You must be signed in to change notification settings - Fork 4
/
Design with LibreOffice-omegat.tmx
1481 lines (1481 loc) · 83.2 KB
/
Design with LibreOffice-omegat.tmx
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"?>
<!DOCTYPE tmx SYSTEM "tmx11.dtd">
<tmx version="1.1">
<header creationtool="OmegaT" o-tmf="OmegaT TMX" adminlang="EN-US" datatype="plaintext" creationtoolversion="4.1.2_1_10060:10062" segtype="sentence" srclang="EN"/>
<body>
<!-- Default translations -->
<tu>
<tuv lang="EN">
<seg></f0>Despite having different version numbers, LibreOffice and Apache OpenOffice are extremely similar in most features.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T164706Z" creationid="zerng07" creationdate="20170817T180726Z">
<seg>雖然有不同的版號,LibreOffice和Apache OpenOffice在多數功能上極為相似。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg></f0>Knowing how to use styles and templates is the equivalent of being handed the key to that coasting car and shown the gas pedal – suddenly, you can take control of the vehicle, instead of getting by on clumsy makeshifts.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T165122Z" creationid="zerng07" creationdate="20170817T153543Z">
<seg></f0>瞭解如何使用樣式和範本,等於是有人交付給你這臺休旅車的鑰匙,還跟你解說怎樣控制油門——突然間,你掌握了這臺車,而不只是靠著亂打檔得過且過。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg></f0>Liberation Sans is meant to substitute for Arial and Helvetica, Liberation Serif for Times New Roman, and Liberation Mono for Courier.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T140033Z" creationid="zerng07" creationdate="20170817T135640Z">
<seg></f0>Liberation Sans用來替代Arial和Helvetica,Libration Serif可替換Times New Roman,至於Liberation Mono則對應Courier。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg></f1>However, <f2>most of the book</f2> applies to Apache OpenOffice as much as LibreOffice.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T165104Z" creationid="zerng07" creationdate="20170822T144736Z">
<seg></f1>不過,<f2>書中對LibreOffice的大多數範例也都能</f2>套用到Apache OpenOffice上。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg></f2>The alternative is to spend more <t3/>time on trial and error, and still end up <f4>(as likely as not) </f4>with something worse than if you <f5>had taken</f5> some advice.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170818T033016Z" creationid="zerng07" creationdate="20170818T031915Z">
<seg></f2>替代方案則是自己花時間<t3/>從試誤中學習,而最終結果可能<f4>(說不定還試不出來)</f4>依然比你從前人那裡<f5>汲取</f5>經驗後的做法還糟。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>A</f0>bout this book</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T144507Z" creationid="zerng07" creationdate="20170822T144507Z">
<seg>關於本書</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Both clones and originals help you work without using proprietary fonts.</f0></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T140559Z" creationid="zerng07" creationdate="20170817T100905Z">
<seg><f0>無論是翻造或原創都能協同你作業而不用專有字型。</f0></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>By understanding both,</f0> you can <f1>take advantage of what publishers </f1>have been learning for over half a millennium <f2>about what works and what doesn’t.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170818T032621Z" creationid="zerng07" creationdate="20170818T031240Z">
<seg><f0>瞭解兩者之後,</f0>你就能<f1>善用出版界</f1>這五百年來一直在學習的技術<f2>,判斷怎樣可行,怎樣不可行。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Describing itself as “</f0>the first ever open-source <f1>type</f1> foundry,” <f2>The League of Moveable Type offers a small but select library of original font designs.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T133043Z" creationid="zerng07" creationdate="20170817T133625Z">
<seg><f0>自許為「</f0>前所未有的開源<f1>字體</f1>鑄造廠」,<f2>The League of Moveable Type 提供小型但精挑細選過的原創字型設計字庫。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Designing with LibreOffice </f0>is about layout, so it does not mention every available feature.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193831Z" creationid="zerng07" creationdate="20170817T173345Z">
<seg>《<f0>LibreOffice排版設計</f0>》在講述文字版面編排之事,所以不會提及所有功能。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>F</f0>or <f1>Apache </f1>OpenOffice’<f2>s collection of extensions and templates</f2>, <f3>go to:</f3></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193326Z" creationid="zerng07" creationdate="20170817T171125Z">
<seg><f0>至</f0>於<f1>Apache </f1>OpenOffice<f2>的擴充套件和範本</f2>, <f3>則請前往:</f3></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>For example, a character style</f0> might put characters into italics if they form the title of the book.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T144828Z" creationid="zerng07" creationdate="20170903T144756Z">
<seg><f0>舉例而言,在英文書慣例中,如果要表達一本書的書名,一般</f0>會改用義大利斜體字,這屬於「字元樣式」。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>However, one thing that this book</f0> is not <f1>is </f1>a relentless death march <f2>in regimented order</f2> through every item in the menus.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184855Z" creationid="zerng07" creationdate="20170817T163306Z">
<seg><f0>然而,還有一事要提:本書</f0>絕非接連不斷的死亡行軍,<f2>用嚴格管控的步伐</f2>踏遍選單中的各個項目。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Hundreds of extensions and templates are available for LibreOffice.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T171255Z" creationid="zerng07" creationdate="20170817T171255Z">
<seg><f0>LibreOffice有上百個擴充套件和範本可供使用。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>I</f0>f you have manually formatted, you will be lucky to <f1>finish editing</f1> before you leave.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170930T173650Z" creationid="zerng07" creationdate="20170930T173650Z">
<seg>如果你當初是手動設定格式的,那麼能在離開前馬上<f1>完成編輯</f1>大概很走運。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>In other words, they occupy the same vertical and horizontal space, although they may otherwise be designed differently.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T135711Z" creationid="zerng07" creationdate="20170817T135446Z">
<seg><f0>換句話說,這些自由字型和對應的專有字型有一樣的垂直空間和水平空間,雖然在字型本身的設計上卻不盡相同。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Its</f0> Writer word processor <f1>in particular</f1> is structured around the concept of styles.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T164336Z" creationid="zerng07" creationdate="20170817T154546Z">
<seg><f0>它的</f0>Writer文書處理器<f1>特別</f1>根據樣式的概念架構而成。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Learning m</f0>ore about typography</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193513Z" creationid="zerng07" creationdate="20170822T193513Z">
<seg><f0>深入</f0>學習文字排印學</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Like free or open source software, free-licensed fonts are ones that you can</f0> use, share, and edit as you please.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T140330Z" creationid="zerng07" creationdate="20170817T094410Z">
<seg><f0>類似於自由或開源軟體,自由授權的字型允許你</f0>使用、分享、和編修,依你所欲。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Much of t</f0>his book is designed to explain not only what styles and templates are and how to use them, but also what you need to consider when selecting them.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184836Z" creationid="zerng07" creationdate="20170817T162427Z">
<seg>本書主旨不單只是解說何謂樣式與範本、如何運用,更探討選用時需要多加考慮之處。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>OpenOffice?</f0></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T183045Z" creationid="zerng07" creationdate="20170817T175243Z">
<seg><f0>還有OpenOffice?</f0></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>P</f0>eople have strange ideas about typography.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T174544Z" creationid="zerng07" creationdate="20170818T033201Z">
<seg>人們大多對文字排印學 (Typography) 一直有怪異的想法。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>Printed</f0> versions of the same manuals <f1>are available for sale </f1>at the Friends of Open Document store <f2>at:</f2></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T184216Z" creationid="zerng07" creationdate="20170817T183857Z">
<seg>與本書內容相同的<f0>印刷</f0>本<f1>也有在</f1> Friends of Open Document 商店中銷售<f2>:</f2></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>SIL I</f0>nternational<br1/></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T142712Z" creationid="zerng07" creationdate="20170817T142712Z">
<seg><f0>SIL </f0>International<br1/></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>SIL</f0> International <f1>is a missionary organization that </f1>specializes in fonts for minority languages.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184603Z" creationid="zerng07" creationdate="20170822T184603Z">
<seg><f0>SIL</f0> International <f1>是個任務型組織,</f1>專注於<t2/>少數語言的字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>The advantage of styles is that y</f0>ou design <f1>everything</f1> once.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T152331Z" creationid="zerng07" creationdate="20170903T145416Z">
<seg><f0>樣式的優勢在於</f0>你只需把<f1>這些項目</f1>設定過一次就行。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>The official font for GNOME 3.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T105723Z" creationid="zerng07" creationdate="20170817T105723Z">
<seg><f0>GNOME 3 所採用的官方字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>This book standardizes on</f0> LibreOffice on Linux, <f1>because that is what I use every day.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T190923Z" creationid="zerng07" creationdate="20170822T144604Z">
<seg><f0>本書的操作範例以</f0>Linux系統上的LibreOffice為準,<f1>因為這是我日用的作業環境。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>To</f0> get extensions and templates for LibreOffice, <f1>go to these links:</f1></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193303Z" creationid="zerng07" creationdate="20170817T171046Z">
<seg><f0>如</f0>要取得LibreOffice的擴充套件和範本,<f1>請前往以下連結:</f1></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>You can get also get some of his fonts from The League of Movable Type (see below).</f0></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T140657Z" creationid="zerng07" creationdate="20170817T105548Z">
<seg><f0>你可以從The League of Movable Type取得他的一些字型(見後述)。</f0></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f0>You might call this book an effort to make a single map out of two separate bodies of information: LibreOffice’s features, and the standard practices of typography (designing with </f0>text).</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T134343Z" creationid="zerng07" creationdate="20170817T164244Z">
<seg><f0>你或許可以稱這本書為一份對照,將兩類不同的資訊內容相接:LibreOffice的功能、以及文字排印學(文字設計</f0>)的標準實務。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f1>And the next, and the next.</f1></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T173830Z" creationid="zerng07" creationdate="20170824T173811Z">
<seg><f1>然後一個再接一個。</f1></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f1>I</f1>ts front page includes a list of the most recently uploaded fonts.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184222Z" creationid="zerng07" creationdate="20170817T135951Z">
<seg>其首頁有一份最近上傳字型的列表。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f1>The rest is mostly about features that are not quite styles, or that are dependent on styles for full efficiency.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T163113Z" creationid="zerng07" creationdate="20170817T162745Z">
<seg><f1>剩下部分多是些和樣式不大相關,或是得依賴樣式的功能,但習得後能發揮最大效率。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f1>Unless I say otherwise, what I say about LibreOffice should also be true for OpenOffice.</f1></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T181217Z" creationid="zerng07" creationdate="20170817T180838Z">
<seg><f1>除非本人另有提起,否則對LibreOffice所講述之事亦適用於OpenOffice。</f1></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>A </f2>sizable minority<f3> </f3>have been about OpenOffice.org or LibreOffice.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T151759Z" creationid="zerng07" creationdate="20170822T151759Z">
<seg><f2>其中</f2>有關OpenOffice.org或LibreOffice的分量佔了很大一部分。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>A few seem to suffer from longstanding bugs.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T162404Z" creationid="zerng07" creationdate="20170822T162208Z">
<seg><f2>有一些困擾似乎來自長年存在的臭蟲。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>I</f2>nstead of adding all the characteristics every place where you format, you apply the style.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T152317Z" creationid="zerng07" creationdate="20170903T152317Z">
<seg>反之,就是獨自在各個需要設定格式的地方,手動套用各自的屬性。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>If you see a difference that I fail to mention, please let me know, so that I can make corrections.</f2></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T145402Z" creationid="zerng07" creationdate="20170822T145344Z">
<seg><f2>如果你發現有我未提及之差異處,還請讓我知悉,以便讓我做出對應修正。</f2></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>Rather, it is a</f2> powerful piece<f3>s</f3> of software in <f4>its</f4> own right, <f5>sometimes falling short of Microsoft Office, but just as often exceeding it.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T165606Z" creationid="zerng07" creationdate="20170822T163203Z">
<seg><f2>與之相反,LibreOffice是一套</f2>強大的<f3></f3>軟體,它有<f4>它</f4>自己的特長。<f5>它有時候用起來可能比Microsoft Office還差,但一樣有時候卻又比Microsoft Office更強。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f2>T</f2>he <f3>SIL</f3> Font License <f4>is the most widely used license for free fonts, and responsible for much of the spread of free fonts.</f4></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T183814Z" creationid="zerng07" creationdate="20170822T183814Z">
<seg><f3>SIL</f3>開放字型授權 (OFL)<f4> 是最廣為使用的自由字型授權,自由字型之所以能有今日的光景皆歸功於它。</f4></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f3>Instead, it looks at important features from the point of view of planning</f3>, <f4>as a variety of tactics that you can choose, and skips around as seems most useful for planning.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170818T030222Z" creationid="zerng07" creationdate="20170818T030222Z">
<seg><f3>相反的,本書將以規劃全局的鳥瞰觀點俯視重要的功能</f3>,<f4>例如告訴你可以選擇的策略,並帶你一覽那些最可能貼合規劃的方法。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f3>It is released</f3> <f4>under a free</f4> <t5/>license <f6>that</f6> lets you use it legally on as many machines as you want, and share it with others.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T180225Z" creationid="zerng07" creationdate="20170817T175614Z">
<seg><f3>它採用</f3><f4>自由的</f4><t5/>授權條款發行,讓你能合法隨意在多臺機器上使用,甚至隨心和他人分享。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f3>Many, too, suppose that the </f3>main purpose is to show how clever the designer is.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170818T033950Z" creationid="zerng07" creationdate="20170818T033950Z">
<seg><f3>而也有許多人認為它的</f3>主要目標在於展現出設計師的慧心巧手。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f4>And having spent the time to set up styles, you would prefer not to do the same work all over again for your next document, so templates also become an important part of your work flow.</f4></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T165848Z" creationid="zerng07" creationdate="20170817T155039Z">
<seg><f4>在耗上一段時間設置完樣式之後,你就會希望下一份文件不要再做重複的苦工,所以範本就變成你工作流程中的重要一環。</f4></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><f7>Since it is free software, you can even make your own changes in it if you have the skill.</f7></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T180255Z" creationid="zerng07" creationdate="20170817T175628Z">
<seg><f7>因為它是自由軟體,若你有相關能力和技術,甚至還可以自行修改軟體。</f7></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>A <f1>page</f1> style might list everything about how a page is designed, from the width of its margins to its orientation and the background color.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T145231Z" creationid="zerng07" creationdate="20170903T144903Z">
<seg>至於「<f1>頁面</f1>樣式」,一般會列出這本書所有相關的頁面設計樣式,像是頁面邊距、紙張方向採直向或橫向、或是背景色彩等。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>A Google employee, Levien also develops fonts in his spare time.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T142314Z" creationid="zerng07" creationdate="20170817T142300Z">
<seg>Levien除了是Google員工外,他亦用自己的閒暇時間開發字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>About the <f0>w</f0>riter</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T145827Z" creationid="zerng07" creationdate="20170822T145827Z">
<seg>關於作者</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>All the same, LibreOffice <f0>is not</f0> just <f1>a</f1> wannabe Microsoft Office.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T163239Z" creationid="zerng07" creationdate="20170822T162904Z">
<seg>還是一樣要說,LibreOffice<f0>可不是</f0><f1>「想成為</f1>Microsoft Office」那樣。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Although not all the fonts displayed on this page are complete, their consistently high quality makes them worth considering.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T142558Z" creationid="zerng07" creationdate="20170817T142558Z">
<seg>雖然這個網頁上所寫的所有字型並非都很完整,但一致的高品質仍值得考慮使用。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Barry Schwartz is one of the outstanding designers of free-licensed body text fonts.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T105322Z" creationid="zerng07" creationdate="20170817T104314Z">
<seg>Barry Schwartz 是自由授權內文字字型的出色設計師之一。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Before <f0>becoming a journalist</f0>, I was a technical writer and graphic designer.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T165421Z" creationid="zerng07" creationdate="20170822T160832Z">
<seg><f0>做記者之前</f0>,我是技術文章創作者也是平面設計師。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Both LibreOffice and Apache OpenOffice are widely available <f0>at no cost to anyone with an Internet connection.</f0></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T182000Z" creationid="zerng07" creationdate="20170817T182000Z">
<seg>無論LibreOffice或Apache OpenOffice,通常<f0>都能在網際網路上免費取得。</f0></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Both LibreOffice and Apache OpenOffice use Open Document Format<f0> (ODF),</f0> a file format consisting of zipped <f1>XML</f1> files.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T190754Z" creationid="zerng07" creationdate="20170817T184148Z">
<seg>無論LibreOffice和Apache OpenOffice都一樣使用開放文件格式 <f0>(Open Document Format, ODF),</f0>是一種由<f1>XML</f1>檔案組成的壓縮後檔案格式。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>But although <f0>this approach</f0> gets the job done, it<f1>’s slow</f1>.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T174729Z" creationid="zerng07" creationdate="20170824T174729Z">
<seg>雖然<f0>這種做法</f0>也能完成工作,不過好像<f1>有點慢</f1>。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>But if you have used styles, you can change the font and its size in less than a minute, and print out a new copy of the essay with time to spare.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170930T173959Z" creationid="zerng07" creationdate="20170930T173829Z">
<seg>但如果你有設定樣式,不到一分鐘就能改好字型和大小,甚至列印出小論文後時間還綽綽有餘。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>But what <f2>many of us</f2> haven’t learned is to do these <f3>tasks</f3> efficiently, taking advantage of all the tools that are<f4> </f4>available.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T062254Z" creationid="zerng07" creationdate="20170817T150849Z">
<seg>但是<f2>我們不少</f2>都沒學過要怎樣有效完成這些<f3>作業</f3>,去善用那些放在手邊的工具。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>By contrast, a style is a set of formats.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T181349Z" creationid="zerng07" creationdate="20170824T180134Z">
<seg>與之相反的作法就是樣式,樣式是一組設定好的格式。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>By contrast, hundreds are available today, <f1>although t</f1>heir numbers are still small compared to the thousands of proprietary fonts available from font foundries such as Adobe.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T131442Z" creationid="zerng07" creationdate="20170817T095637Z">
<seg>不過,今日已有數百個自由字型,<f1>雖然</f1>和眾字型製造商依所提供的專有字型相比數量上還是少,例如 Adobe 一家就有上千個專有字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>By contrast, installations directly from LibreOffice or OpenOffice downloads install to the /opt directory.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T182947Z" creationid="zerng07" creationdate="20170817T182947Z">
<seg>若是從LibreOffice或OpenOffice官方直接安裝來的版本,一般會安裝到 /opt 目錄中。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Caution</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T181234Z" creationid="zerng07" creationdate="20170817T181227Z">
<seg>注意</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Created for the <f0>KDE</f0> desktop environment on Linux, Oxygen is a modern geometric font, made of simple shapes, but highly readable and pleasing to the eye.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T143127Z" creationid="zerng07" creationdate="20170817T142039Z">
<seg>專為Linux作業系統上之<f0>KDE</f0>桌面環境所製作的字型,Oxygen是現代幾何風字型,形狀簡潔,但極為易讀,看起來很舒服。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Designed for the Ubuntu Linux distribution, this is a modern humanist font.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T141107Z" creationid="zerng07" creationdate="20170817T141107Z">
<seg>專為 Ubuntu 這套 GNU/Linux 散布版設計,是個現代人文主義風字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Designing with LibreOffice</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T092453Z" creationid="zerng07" creationdate="20170817T092453Z">
<seg>LibreOffice 排版設計</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Dover Books publishes about 30 books with CDs of fonts and dingbats from Victorian times and earlier.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T125724Z" creationid="zerng07" creationdate="20170817T125230Z">
<seg>Dover Books發表了30本書,內含維多利亞時代與更早先的字體、符號字型之CD。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Downloading LibreOffice</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T092504Z" creationid="zerng07" creationdate="20170817T092504Z">
<seg>下載 LibreOffice</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>During that part of my working life, I had several chances to stress-test OpenOffice.org, including writing several manuals of over 700 pages.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T063636Z" creationid="zerng07" creationdate="20170822T161048Z">
<seg>在我職涯的那個階段裡,有許多機會能對OpenOffice.org做壓力測試,比方說編寫好幾分長達700頁以上的手冊。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Eventually, Oracle gave its rights in the code to The Apache Foundation.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T170652Z" creationid="zerng07" creationdate="20170817T180626Z">
<seg>後來,甲骨文將其對OpenOffice.org源始碼的權利讓與了阿帕契軟體基金會 (The Apache Software Foundation)。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Example: <f0>F</f0>ormatting with styles</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T152720Z" creationid="zerng07" creationdate="20170903T152720Z">
<seg>範例:利用樣式作格式設定</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Extensions and templates</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T145848Z" creationid="zerng07" creationdate="20170817T145848Z">
<seg>擴充套件與範本</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Extensions can add much-needed features and resources, while templates can save you designing time.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T171939Z" creationid="zerng07" creationdate="20170817T171340Z">
<seg>擴充套件可以增添廣受需要的功能和資源,而範本可以節省你的設計時間。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Far from calling attention to itself, the best typography <f0>hides, noticed by</f0> casual readers only <f1>in a vague sense that</f1> a document is comfortable to read.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T141737Z" creationid="zerng07" creationdate="20170822T133849Z">
<seg>和吸引注意相反,最好的文字排印設計反而要<f0>藏在幕後,</f0>一般讀者只會<f1>隱約感覺到</f1>這文字讀起來很舒服。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Featuring over 630 font families, Google Fonts is intended <t0/>mainly for online use.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T183838Z" creationid="zerng07" creationdate="20170822T183838Z">
<seg>擁有超過630個字族,Google Fonts 主要目標<t0/>是用於線上顯示。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>For Trish, Always</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T094101Z" creationid="zerng07" creationdate="20170817T093833Z">
<seg>致崔煦,永遠</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Free-licensed fonts are available under the <f0>SIL</f0> Open Font License <f1>(OFL)</f1> or the <f2>GNU</f2> General Public License <f3><f4>(GPL)</f4></f3><f5> </f5>with font exception.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T185140Z" creationid="zerng07" creationdate="20170817T101050Z">
<seg>自由授權的字型通常採用<f0>SIL</f0>開放字型授權<f1> (Open Font License, OFL)</f1>,或是附帶字型例外條款的<f2>GNU</f2>通用公眾授權<f3><f4>(General Public License, GPL)</f4></f3><f5> </f5>。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Free-licensed fonts barely existed before <f0>2000</f0>.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T095553Z" creationid="zerng07" creationdate="20170817T094541Z">
<seg>在<f0>2000</f0>年以前自由授權的字型還相當罕見。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Going in style</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T071255Z" creationid="zerng07" creationdate="20170824T064944Z">
<seg>認識樣式</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>His work includes three fonts based on the designs of Frederick Goudy, as well as Fanwood, an understated font which closely resembles Eric Gill’s Joanna.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T140821Z" creationid="zerng07" creationdate="20170817T105206Z">
<seg>他的作品包括根據Frederick Goudy之設計而來的三種字型,與Fanwood——一套近似Eric Gill所作Joanna的素雅字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>However, <f2>it does</f2> have <f3>many</f3> of them, <f4>and far more than any other office suite.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T143155Z" creationid="zerng07" creationdate="20170822T141509Z">
<seg>不過,<f2>它確實</f2>也有提供<f3>不少</f3>工具,<f4>遠比起其他任何辦公套裝軟體還多。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>However, be aware that some extensions may not be kept updated and may </f0><t1/><f2>not always work with the latest release.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193137Z" creationid="zerng07" creationdate="20170817T171437Z">
<seg>不過,請注意有些擴充套件可能沒有持續更新,以致</f0><t1/><f2>無法在最新版本中運作。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>However, the two are different enough that compatibility is slowly lessening as each version is released.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T172034Z" creationid="zerng07" creationdate="20170817T170959Z">
<seg>然而,隨著新版本一次又一次發行,兩者間的差異越來越大,相容性也會慢慢降低。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>However, you can also download fonts for print use.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T133412Z" creationid="zerng07" creationdate="20170817T133412Z">
<seg>不過,你也能下載字型作為列印使用。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>I have been writing about free and open source software for <f0>over </f0>a decade.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T181717Z" creationid="zerng07" creationdate="20170822T150920Z">
<seg>一直以來我都在寫有關自由和開源軟體的文章,<f0>已經有</f0>十年以上之久。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>I long ago lost count, but by now I’ve written over 1<f1>7</f1>00 articles.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T181800Z" creationid="zerng07" creationdate="20170822T151410Z">
<seg>更早先之前的我已無法追溯計算,而有記錄在案的,至今已撰寫超過1<f1>7</f1>00篇文章。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>If you decide to change the formatting, you have to go through the entire document, changing the design <f0>one place at a time.</f0></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T174215Z" creationid="zerng07" creationdate="20170824T174215Z">
<seg>突然間你決定要修改剛剛的格式設定,於是你從頭到尾,將整份文件一次又一次、一處又一處地<f0>把設計改了過來。</f0></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>If you decide you want a different format, you edit the style once,<f0> </f0>and within seconds, every place where you applied the style has the new format as well.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170903T152532Z" creationid="zerng07" creationdate="20170903T152532Z">
<seg>如果你決定要改變某個格式,你也只需要修改樣式一次,彈指之間,每個套用該樣式的位置同時都採用了新的格式設定。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>If you find yourself getting lost in the sheer number of free fonts, anything from The League can be counted on to be of high quality, and usually includes small capitals and old style figures.</f2></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T191909Z" creationid="zerng07" creationdate="20170822T183704Z">
<seg>若你驚覺在茫茫自由字型海中遺失方向,The League 將是你可依靠的明燈,高品質、而且通常都具備小型大寫字和舊式數字樣式。</f2></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>If you need information on features or selections that are not mentioned in this book, see the LibreOffice documentation page:</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T183607Z" creationid="zerng07" creationdate="20170817T173556Z">
<seg>如果你所需要的相關功能資訊或選項在本書中沒有提及,請參見LibreOffice文件網頁:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>If you use Linux, some of these fonts can be installed as packages from your distribution’s repositories.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T101809Z" creationid="zerng07" creationdate="20170817T101809Z">
<seg>如果你採用的是 GNU/Linux 作業系統,有些自由字型可以直接從你散布版所提供的軟體庫安裝。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>In both <f3>LibreOffice and OpenOffice,</f3> you can also save to most Microsoft Office formats, and open files from WordPerfect, Microsoft Works, and several other formats, although <f4>some formatting is sometimes lost in complex documents.</f4></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T171147Z" creationid="zerng07" creationdate="20170822T144101Z">
<seg>不管是<f3>LibreOffice或OpenOffice,</f3>你都能將檔案另存為Microsoft Office的常見格式,或是開啟那些由WordPerfect、Microsoft Works製作的檔案、還有其他的許多格式;不過要注意到<f4>在有些排版較複雜的文件中,格式設定偶爾會跑掉。</f4></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>In effect, you are using the office application as though it were a typewriter.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T181241Z" creationid="zerng07" creationdate="20170824T174633Z">
<seg>事實上,這就好比說你把辦公應用軟體當作是一臺打字機來用那樣。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Introduction</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T155525Z" creationid="zerng07" creationdate="20170817T150101Z">
<seg>導論</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It <f0>is </f0>versatile, although its use in branding may mean that <f1>a document that uses it will be automatically be </f1>identified with Ubuntu.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184251Z" creationid="zerng07" creationdate="20170817T141414Z">
<seg>它的用途多樣;不過若將之用於品牌識別,可能會讓<f1>採用此字型的文件自動</f1>被辨識為和Ubuntu有關。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It also developed the Graphite system for the automatic use of ligatures, small caps, old style figures, and other advanced typographical features.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T185417Z" creationid="zerng07" creationdate="20170817T143820Z">
<seg>他們還開發出能自動運用連字、小型大寫字、舊式數字、還有其他進階文字排印功能的Graphite系統。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It assumes that </f4>readers are either already familiar with LibreOffice and other office suite<f5>s, or, at least, </f5>can tour the menus by themselves.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T163930Z" creationid="zerng07" creationdate="20170817T163930Z">
<seg>本書假定</f4>讀者已經熟悉LibreOffice或其他辦公套裝軟體<f5>,又或者至少</f5>能自行探索選單項目。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It is as <f0>though</f0> we have learned enough about cars to go downhill in them and coast <f1>across level ground</f1>, but never learned about the ignition.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T165423Z" creationid="zerng07" creationdate="20170817T151207Z">
<seg>這好比說<f0>雖然</f0>我們剛學會怎麼讓汽車順著下坡,還有<f1>在平地四處晃</f1>,但卻都還沒學過怎樣發動引擎。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It met every challenge I threw <t1/>at it, making me aware that the software had more to it than most people <f2>assumed</f2>.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T165510Z" creationid="zerng07" creationdate="20170822T161528Z">
<seg>它每每都能達成我丟給它的任務<t1/>,因而讓我察覺此軟體已超出大多數人<f2>的認知</f2>。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>It remains by far the best office suite available today.</f5></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T171359Z" creationid="zerng07" creationdate="20170822T163918Z">
<seg>但我認為它至今仍是最棒的辦公套裝軟體。</f5></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Its focus is not abstract design, but practical concerns like providing margins wide enough so that readers can comfortably hold a book, <f0>or features that make a document easier to update.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170818T052626Z" creationid="zerng07" creationdate="20170818T052509Z">
<seg>重點不是抽象設計,而是實務作法,例如頁面邊距寬度夠讓讀者可以舒適地兩手拿書也不會遮到字,<f0>或是讓文件能方便更新的功能等。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Learning more about typography</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T193449Z" creationid="zerng07" creationdate="20170822T193433Z">
<seg>深入學習文字排印學</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Liberation Fonts <br0/></seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T134450Z" creationid="zerng07" creationdate="20170817T134450Z">
<seg>Liberation 字型 <br0/></seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Liberation fonts are designed to be the metrical equivalent of standard proprietary fonts.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T135310Z" creationid="zerng07" creationdate="20170817T135310Z">
<seg>Liberation 字型的設計目的是讓字型的規格數據和常用的專有字型相同。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>LibreOffice <f0>does</f0> not have all the tools needed for the highest level<f1>s</f1> of typography.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T143104Z" creationid="zerng07" creationdate="20170822T141331Z">
<seg>LibreOffice沒<f0>有</f0>提供最高等級文字排印學所需的全部工具。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>LibreOffice <f0>is not</f0> perfect.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T161558Z" creationid="zerng07" creationdate="20170822T161558Z">
<seg>LibreOffice<f0>並不</f0>完美。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>LibreOffice has versions for Linux, OS X, and Windows.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T092542Z" creationid="zerng07" creationdate="20170817T092542Z">
<seg>LibreOffice 提供 Linux、OS X、和 Windows 版。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>LibreOffice is <f0>descended from</f0> OpenOffice.org, a free and open source software project run for years by Sun Microsystems.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T061635Z" creationid="zerng07" creationdate="20170817T180113Z">
<seg>LibreOffice<f0>本源自</f0>OpenOffice.org,一項由昇陽電腦公司 (Sun Microsystems) 經營的自由暨開源軟體專案。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>LibreOffice is an office <f0>suite</f0> that runs on <f1>32 and 64 bit versions of</f1> Linux, <f2>OS X,</f2> and Windows.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T181028Z" creationid="zerng07" creationdate="20170817T175347Z">
<seg>LibreOffice是個辦公<f0>套裝軟體</f0> ,可以在<f1>32與64位元版本的</f1>Linux、<f2>OS X、</f2> 和Windows等作業系統上執行。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Linux distributions are especially apt to make these cosmetic changes.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T182818Z" creationid="zerng07" creationdate="20170817T182523Z">
<seg>各GNU/Linux散布版尤其常作這類外觀改動。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Manual formatting <f0>(also called direct formatting)</f0> is how most people design a document.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T180830Z" creationid="zerng07" creationdate="20170824T160945Z">
<seg>手動格式設定<f0>(也稱作直接格式設定)</f0>是大多數人設計文件時所採用的方法。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Manual formatting is popular because it requires little knowledge of the software.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T181137Z" creationid="zerng07" creationdate="20170824T174358Z">
<seg>手動格式設定非常受到歡迎,因為它根本不需要有什麼軟體知識就能辦到。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Many are clones or near-variations of classic fonts, but some are original fonts that are outstanding by any definition.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T103917Z" creationid="zerng07" creationdate="20170817T100443Z">
<seg>其中不少自由字型是經典字型的翻造版,或極近的變作版;此外也有些不管從各層面來看都相當出色的原創字型。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Many extensions and all templates work on both LibreOffice and Apache OpenOffice.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T170739Z" creationid="zerng07" creationdate="20170817T170739Z">
<seg>多數的擴充套件,和全部的範本都能在LibreOffice和Apache OpenOffice兩者間使用。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Many imagine that it is about design that <f1>screams for</f1> attention, like <f2>blinking text</f2> on a web page.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T142557Z" creationid="zerng07" creationdate="20170818T033433Z">
<seg>許多人以為這是種利用<f1>大聲嘶吼</f1>喚取注意的設計,像是我們在網頁中見到的<f2>閃動文字</f2>那樣。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Many of the others can be downloaded online, reg<f0>a</f0>rdless of operating system.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184038Z" creationid="zerng07" creationdate="20170817T102037Z">
<seg>其他許多自由字型可線上下載,無論作業系統為何。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Most Linux distributions include a copy in their package repositories, sometimes with extensions and distinct icon sets.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T171829Z" creationid="zerng07" creationdate="20170817T092715Z">
<seg>大多數 GNU/Linux 散布版的軟體庫都有提供 LibreOffice,有時安裝後還會附帶一些擴充套件或有不一樣的圖示組合。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Most are also available at no cost.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T094502Z" creationid="zerng07" creationdate="20170817T094502Z">
<seg>大多數也能免費取用。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Most must be exported <f0>via the free-licensed font editor Fontforge </f0>to a usable format .</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170817T144224Z" creationid="zerng07" creationdate="20170817T142704Z">
<seg>大多數其字型都必須先<f0>透過自由授權的字型編輯器Fontforge</f0>匯出成可用的字型格式。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Most of us can format a<f0> </f0>document and<f1> </f1>print it out, after a fashion.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184800Z" creationid="zerng07" creationdate="20170817T150635Z">
<seg>大多數的我們都能勉勉強強設定出文件中的格式,然後印出來。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>My LibreOffice articles include:</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T165356Z" creationid="zerng07" creationdate="20170822T155902Z">
<seg>我的LibreOffice文章(以英文撰寫)有:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Not only does Writer have more <f2>types of </f2>styles than other word processors, but many advanced features, such as tables of contents and master documents, <f3>take more effort</f3> to use without styles.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T061811Z" creationid="zerng07" creationdate="20170817T154644Z">
<seg>Writer比起其他文書處理器不單只是有更多<f2>種類</f2>的樣式,還有許多進階功能,例如目錄和主控文件這些,若不想用樣式來辦<f3>還得多費一番功夫</f3>。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Not only that, but many features are awkward to use <f2>when you format manually</f2> – assuming you can use them at all.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T181303Z" creationid="zerng07" creationdate="20170824T175333Z">
<seg>更糟的是,還有很多實用功能在<f2>你採用手動格式設定之後便自毀長城</f2> – 假如你會用這些功能的話。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>O</f0>riginally criticized for some of its letter forms, Cantarell has evol<f1>v</f1>ed into a modern humanist font that can be used for body text and headings alike.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170822T184121Z" creationid="zerng07" creationdate="20170817T110032Z">
<seg></f0>起先因部分字母寫法受到不少批評,而後Cantarell演進為人文主義風字型,可作內文字使用,亦可用於標題字。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Office suites are as old as the personal computer.</seg>
</tuv>
<tuv lang="ZH-TW" changeid="zerng07" changedate="20170824T061707Z" creationid="zerng07" creationdate="20170817T150139Z">
<seg>辦公套裝軟體和個人電腦的歷史幾乎一樣久遠。</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">