summaryrefslogtreecommitdiffstats
path: root/en_US/style.xml
blob: 35835ea4a01e1a5095af60fcbda6b206f96a130b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
<!-- $Id: -->
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [

<!-- *************** Bring in Fedora entities *************** -->
<!ENTITY % FEDORA-ENTITIES-EN SYSTEM "fdp-entities.ent">
%FEDORA-ENTITIES-EN;

]>


<chapter id="ch-style">
 
  <title>Style</title>

  <para>
    Writing good technical documentation is not simply reproducing
    command lines and instruction sets.  Good documentation is easy to
    read, understand, and translate, and presents a concise logical
    progression of concepts.  Good documentation can also be defined by
    what it does <emphasis>not</emphasis> contain.  Your tutorial should
    avoid:
  </para>
  <itemizedlist>
    <listitem>
      <para>
        Excessive wordiness
      </para>
    </listitem>
    <listitem>
      <para>
        Unnecessary or undefined jargon
      </para>
    </listitem>
    <listitem>
      <para>
        Grammatical or spelling errors
      </para>
    </listitem>
    <listitem>
      <para>
        References to yourself or your experiences
      </para>
    </listitem>
    <listitem>
      <para>
        Remarks which might offend or confuse any reader
      </para>
    </listitem>
  </itemizedlist>
  <para>
    This chapter contains style rules and guidelines for writing &FED;
    documentation.  Guidelines are not the same as rules.  It is
    acceptable to violate a guideline when it makes your material easier
    to understand.  Follow guidelines whenever possible, but follow
    rules at all times.  Assume any advice is a guideline unless
    identified otherwise.
  </para>

  <section id="sn-intro-to-style">
     
    <title>Why Style Is Important</title>
     
    <para>
      Writing well comes naturally to almost no one.  It is a skill that
      professional writers, even famous ones, must practice constantly.
      <firstterm>Style</firstterm>
      <indexterm><primary>style</primary></indexterm> is the quality
      that separates elegant writing from the merely functional.
    </para>
    <para>
      Elegance comes in many forms.  In prose and poetry, elegant
      writing may not follow some (or any) common rules of grammar,
      syntax, or spelling.  A good example is Episode 18, "Penelope," in
      James Joyce's novel <citetitle>Ulysses</citetitle><footnote
	id='fn-ulysses'>
        <para>
          For example, refer to. <ulink
	    url="http://www.online-literature.com/james_joyce/ulysses/18/">http://www.online-literature.com/james_joyce/ulysses/18/</ulink>. 
	  Please note that this example contains some mature themes and
	  language, and is not suitable for all readers.
        </para>
      </footnote>.  There, Joyce uses long streams of words without
      punctuation to simulate a character's internal consciousness.  By
      violating basic rules of grammar and syntax, Joyce simulates the
      disorganized but loosely connected thought patterns of the
      narrator.
    </para>
    <para>
      Technical documentation, however, should always respect these
      rules.  The more a document departs from standard language usage,
      the more difficult the material becomes for the reader.  For
      example, readers may not be native speakers of the language used,
      or they might be reading a translation.  If the writer uses slang,
      idioms, or jargon, a reader or translator may easily become
      confused.  The following example compares two different written
      executions of the same idea:
    </para>
    <example>
      <title>Incorrect style</title>

	<!-- I prefer "incorrect," because I think terms such as
	"problematic" are mealy-mouthed.  They remind me of the late
	1980's English textbook trend toward the politically correct yet
	wholly unhelpful "standard/nonstandard."  But then, I tend to be
	dogmatic; it's probably my Catholic upbringing. [PWF] -->

      <para>
        So you made the changes I showed you in the last section. What's
	the next thing you should do?  Just pop your thumb drive onto
	your system and read the <filename>messages</filename> log. When
	you see "USB device found," then Bob's your uncle.
      </para>
    </example>
    <example>
      <title>Correct style</title>
	
	<!-- I prefer "correct." See above. [PWF] -->
	
      <para>
        After you complete the configuration changes above, attach the
	USB removable media to your system.  Use the
	<command>dmesg</command> command to examine the kernel message
	log.  The message <computeroutput>USB device
	  found</computeroutput> indicates that your device was
	installed successfully.
      </para>
    </example>
    <para>
      The first example is more conversational English, which is not
      appropriate for official written documentation.  The second
      example is more formal, but as a result it is easier to
      comprehend, both for native readers and translators.
    </para>
    <para>
      Following style rules and guidelines also makes readers more
      comfortable with a set of documents.  Consistent style enhances
      the professional appearance of documentation, and its perceived
      value. On the other hand, lapses in punctuation or poor grammar
      negatively affect a reader's reaction to written material.  A
      reader can feel that an otherwise correct technical document is
      lacking in authority, simply because it is poorly written. Readers
      feel at ease when they do not have to struggle to understand an
      author's use of language.
    </para>
    <para>
      This chapter cannot possibly cover enough material to make every
      reader a good writer.  Some manuals devoted entirely to writing
      style are themselves hundreds of pages long.  This chapter
      provides enough guidelines for intermediate writers to understand
      style usage in technical documentation.
    </para>
    <para>
      If you are not a practiced writer, whether of technical
      documentation or otherwise, you may benefit from other style
      resources.  The following list is far from comprehensive, but
      provides a starting point:
    </para>
    <itemizedlist>
      <listitem>
        <para>
          <citetitle>The Elements of Style</citetitle>, by William
	  Strunk.  Basic rules and links to online versions can be found
	  at: <ulink
	    url="http://en.wikipedia.org/wiki/The_Elements_of_Style">http://en.wikipedia.org/wiki/The_Elements_of_Style</ulink>
        </para>
      </listitem>
<!-- placeholder for when it's ready
        <para>
          <citetitle>The Elements of Style</citetitle>, by William
          Strunk.  Fedora Docs Project version: <ulink
            url="http://fedora.redhat.com/docs/eos-guide-en/">http://fedora.redhat.com/docs/eos-guide-en/</ulink>
        </para>
-->     
      <listitem>
        <para>
          <citetitle>The Chicago Manual of Style</citetitle>, by the
	  University of Chicago Press.  Online version: <ulink
	    url="http://www.chicagomanualofstyle.org/">http://www.chicagomanualofstyle.org/</ulink>
        </para>
      </listitem>
      <listitem>
        <para>
          <citetitle>Paradigm Online Writing Assistant</citetitle>,
	  maintained by Chuck Guilford, Ph.D.  Online only: <ulink
	    url="http://www.powa.org/">http://www.powa.org/</ulink>
        </para>
      </listitem>
    </itemizedlist>
    <para>
      There are many free software documentation projects which have
      developed their own style guidelines.  This chapter, in fact,
      draws heavily on the <citetitle>GNOME Documentation Style
	Guidelines</citetitle> (<firstterm>GDSG</firstterm>).  You may
      read the original <citetitle>GDSG</citetitle> at <ulink
	url='http://developer.gnome.org/documents/style-guide/'>http://developer.gnome.org/documents/style-guide/</ulink>.
    </para>
     
  </section>
   
  <section id="sn-tech-docs-fundamentals">
   
    <title>Fundamental Concepts of Technical Documentation</title>
     
    <note>
      <title>Bibliographic Information</title>
      <para>
        This section is drawn primarily from the
	<citetitle>GDSG</citetitle>.
      </para>
    </note>
     
      <!-- This section will reproduce mostly what is in Chapter 1 of
      the GDSG.  There may be minor changes.  FIXME: Make sure the
      appropriate front matter of the Documentation Guide includes
      attribution as required by the GNU FDL. -->

    <para>
      This chapter provides a brief introduction to writing technical
      documentation.
    </para>

    <section id="sn-fundamentals-1">
      <title>General Style Requirements</title>
      <para>
        Technical writing for the &FP; imposes special constraints
	beyond the basic requirements of good prose.  Good &FED;
	technical documentation has the following characteristics:
      </para>
      <variablelist>
        <varlistentry>
          <term>Comprehensive</term>
          <listitem>
            <para>
              Describe all of the functionality of a product.  Do not
	      omit functionality that you regard as irrelevant for the
	      user.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Conforming</term> <!-- I'm having issues with the
          sketchy definition of this non-dictionary word and the
          associated text.  Not wrong, per se, just wishing for
          something better.  This note shall remind us! - kwade -->
	  <!-- Hopefully this change helps.  Makes sense according to the
          gdict tool in Core, at least.  - PWF -->
          <listitem>
            <para>
              Describe what you see.  Do not describe what you want to
	      see.  Present your information in the order that users
	      experience the subject matter. 
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Clear</term>
          <listitem>
            <para>
              Read <citetitle>The Elements of Style</citetitle> (<ulink
		url="http://en.wikipedia.org/wiki/The_Elements_of_Style">http://en.wikipedia.org/wiki/The_Elements_of_Style</ulink>) 
	      to help make your writing clear.
            </para>
<!-- placeholder for when this is published:
            <para>
              Read <citetitle>The Elements of Style</citetitle>
                &FED;-version (<ulink
                url="http://fedora.redhat.com/docs/eos-guide-en/">http://fedora.redhat.com/docs/eos-guide-en/</ulink>)
              to help make your writing clear.
            </para>
-->
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Consistent</term>
          <listitem>
            <para>
              Use agreed vocabulary throughout your documentation.  Use
	      the same vocabulary as other writers who are working on
	      related documentation.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Concise</term>
          <listitem>
            <para>
              Review your work frequently as you write your document.
	      Ask yourself which words you can take out.  Refer to <xref
                linkend="sn-fundamentals-2"/> for specific guidelines.
            </para>
          </listitem>
        </varlistentry>
      </variablelist>
    </section>
    <section id="sn-fundamentals-2">
      <title>Golden Rules</title>
      <para>
        This section contains some basic style guidelines.  Subsequent
	sections in this chapter expand on these guidelines to give more
	detailed guidance.
      </para>
      <variablelist>
        <varlistentry>
          <term>Golden Rule 1: Be brief</term>
          <listitem>
            <itemizedlist>
              <listitem>
                <para>
                  Limit each sentence to fewer than 25 words.
                </para>
              </listitem>
              <listitem>
                <para>
                  Limit each procedure step to 23 words.
                </para>
              </listitem>
            </itemizedlist>
            <example id="ex-golden-rule-1-wrong">
              <title>Incorrect: Too long</title>
              <para> Under normal operating conditions, the kernel does
		not always immediately write file data to the disks,
		storing it in a memory buffer and then periodically
		writing to the disks to speed up operations.
              </para>
            </example>
            <example id="ex-golden-rule-1-right">
              <title>Correct: Less wordy</title>
              <para>
                Normally, the kernel stores the data in memory prior to
		periodically writing the data to the disk.
              </para>
            </example>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Golden Rule 2: Be organized</term>
          <listitem>
            <itemizedlist>
              <listitem>
                <para>
                  Limit each paragraph to one topic.
                </para>
              </listitem>
              <listitem>
                <para>
                  Limit each sentence to one idea.
                </para>
              </listitem>
              <listitem>
                <para>
                  Limit each procedure step to one action.
                </para>
              </listitem>
            </itemizedlist>
            <example id="ex-golden-rule-2-wrong">
              <title>Incorrect: Disorganized topics</title>
              <para>
                The <application>Workspace Switcher</application> applet
		helps you navigate all of the virtual desktops available
		on your system.  The X Window system, working in hand
		with a piece of software called a <emphasis>window
		  manager</emphasis>, allows you to create more than one
		virtual desktop, known as
		<emphasis>workspaces</emphasis>, to organize your work,
		with different applications running in each workspace.
		The <application>Workspace Switcher</application> applet
		is a navigational tool to get around the various
		workspaces, providing a miniature road map in the GNOME
		panel showing all your workspaces and allowing you to
		switch easily between them.
              </para>
            </example>
            <example id="ex-golden-rule-2-right">
              <title>Correct: Organized topics</title>
              <para>
                Use the <application>Workspace Switcher</application> to
		add new <emphasis>workspaces</emphasis> to the GNOME
		Desktop. You can run different applications in each
		workspace. The <application>Workspace
		  Switcher</application> applet provides a miniature map
		that shows all of your workspaces.  You can use the
		<application>Workspace Switcher</application> applet to
		switch between workspaces.
              </para>
            </example>
            <tip>
              <para>
                Plan the order of paragraphs before you start writing.
		Decide which topic you want to cover in each paragraph.
              </para>
            </tip>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Golden Rule 3: Be demonstrative</term>
          <listitem>
            <para>
              Use explicit examples to demonstrate how an application
	      works.  Provide instructions rather than descriptions.
            </para>
            <example id="ex-golden-rule-3-wrong">
              <title>Incorrect: Describes but does not
		demonstrate</title>
              <para>
                There is a text box that you can use to find out the
		definition of a word.
              </para>
            </example>
            <example id="ex-golden-rule-3-right">
              <title>Correct: Demonstrates usage</title>
              <para>
                To request a definition of a word, type the word in the
		text box, then select <guilabel>Lookup</guilabel>.
              </para>
            </example>
            <tip>
              <para>
                Do not apply this guideline too rigidly.  Sometimes you
		must explain how software works to support your how-to
		examples.
              </para>
            </tip>
          </listitem>
        </varlistentry>
        <varlistentry id="vle-golden-rule-4">
          <term>Golden Rule 4: Be objective</term>
          <listitem>
            <para>
              Write in a neutral tone.
            </para>
            <example id="ex-golden-rule-4-wrong">
              <title>Incorrect: Sentence takes sides</title>
              <para>
                The applet is a handy little screen grabber.
              </para>
            </example>
            <example id="ex-golden-rule-4-right">
              <title>Correct: Sentence is objective</title>
              <para>
                Use the applet to take screenshots.
              </para>
            </example>
          </listitem>
        </varlistentry>
      </variablelist>

    </section>

    <section id="sn-fundamentals-3">

      <title>Tone</title>
      <para>
        Inappropriate tone hinders reader access to information.  A
	neutral tone free of opinion or personal flavor improves the
	reader's comprehension.  Neutral tone helps writers to work in
	parallel on a large technical documentation project.
	Furthermore, additional writers may join the project at any
	time.  Use of a neutral tone helps to achieve consistency across
	a documentation set, and thereby facilitates user access to
	information.  The best way to achieve a common, neutral tone is
	to apply the following principles:
      </para>
      <variablelist>
        <varlistentry>
          <term>Avoid humor</term>
          <listitem>
            <para>
              Humor distracts from the information you are trying to
	      provide.  Humor also makes documentation difficult to
	      translate.  Stay factual.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid personal opinions</term>
          <listitem>
            <para>
              Whether you think a function is useful or woeful is
	      irrelevant.  Report the function to the user, with
	      instructions about how to use the function.  Stay
	      accurate.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid colloquial language</term>
          <listitem>
            <para>
              Colloquial language is difficult to translate and usually
	      culture-specific.  Stay neutral.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid topical expressions</term>
          <listitem>
            <para>
              An expression that is in common use today might convey
	      something completely different tomorrow.  Stay technical.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid aspirational statements</term>
          <listitem>
            <para>
              Statements about the future developments of a product do
	      not belong in technical documentation.  Write about what
	      you see right now.  Stay real.
            </para>
          </listitem>
        </varlistentry>
      </variablelist>
    </section>
    <section id="sn-fundamentals-4">
      <title>Reaching the Right Audience</title>
      <para>
        All of the decisions that you make about the structure and
	content of a manual follow from an understanding of the
	audience.  Consider how the audience accesses the documentation,
	what sort of information the audience needs, and the experience
	level of the audience.  Usually, you need to create
	documentation that is suitable for different audiences. The
	following sections introduce some of the audience-related topics
	you need to consider.
      </para>
    </section>
    <section id="sn-fundamentals-6">
      <title>User Motivation</title>
      <para>
        Do not waste the time of the user who looks for information in
	your documentation.  Users do not read technical documentation
	for entertainment.  Users usually have specific questions.  You
	need to give clear answers to those questions.
      </para>
    </section>
    <section id="sn-fundamentals-7">
      <title>New Users</title>
      <para>
        New users to &FC; are likely to consult online tutorials for
	guidance about unfamiliar applications or functionality.  Each
	tutorial should contain enough introductory information to tell
	new users how to start using the relevant functions.  Each
	tutorial should also contain enough usage instructions to tell
	users the different actions that they can perform with the
	command or function.  Keep these instructions task-oriented. Do
	not describe GUI screens, dialogs, and dialog elements in a
	tutorial, unless there is an unusual feature that affects your
	instructions.
      </para>
    </section>
    <section id="sn-fundamentals-8">
      <title>Experienced Users</title>
      <para>
        Experienced users are more likely to use documentation as a
	reference.  The documentation therefore needs to be complete,
	well-organized, and in the case of printed manuals,
	well-indexed.
      </para>
    </section>
    <section id="sn-fundamentals-9">
      <title>Do Not Offend Your Audience</title>
      <para>
        To avoid offending your readers, apply the following guidelines
	to your documentation:
      </para>
      <variablelist>
        <varlistentry>
          <term>Avoid insider language</term>
          <listitem>
            <para>
              Insider language includes both undefined jargon and the
	      tendency of the computer community to shorten words.  For
	      example, use the term <literal>documentation</literal>
	      instead of the term <literal>docs</literal>.  A term may
	      be jargon if it fails all the following conditions:
            </para>
            <itemizedlist>
              <listitem>
                <para>
                  The term does not appear in the <citetitle>&FED;
		    Jargon Buster</citetitle> (<ulink
		    url="http://fedora.redhat.com/docs/jargon-buster/">http://fedora.redhat.com/docs/jargon-buster/</ulink>).
                </para>
              </listitem>
              <listitem>
                <para>
                  The term does not appear in the <citetitle>American
		    Heritage Dictionary</citetitle> (<ulink
		    url="http://www.bartleby.com/61/">http://www.bartleby.com/61/ 
		  </ulink>).
                </para>
              </listitem>
              <listitem>
                <para>
                  The term does not appear in the glossary of the manual
		  that you are writing.
                </para>
              </listitem>
              <listitem>
                <para>
                  The term is not defined in the body text of the manual
		  that you are writing.
                </para>
              </listitem>
            </itemizedlist>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid gender-specific language</term>
          <listitem>
            <para>
              Pronoun constructions such as <literal>his/her</literal>
	      or <literal>s/he</literal> do not exist.  There is no need
	      to identify gender in your instructions.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid culture-specific language</term>
          <listitem>
            <para>
              There is little point in giving an example that everyone
	      in your town knows about, but is a complete mystery to
	      everyone else in the world.
            </para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Avoid talking down to your reader</term>
          <listitem>
            <para>
              There are few experiences more irritating for a user than
	      documentation that says an action is easy or quick, when
	      in fact the user cannot complete the action.  Do not
	      qualify or prejudge actions.
            </para>
          </listitem>
        </varlistentry>
      </variablelist>
      <para>
        Other parts of this guide discuss in more detail tone and
	language usage that can cause offense.
      </para>

    </section>

  </section>

  <section id="sn-grammar-and-usage">

    <title>Grammar and Usage Guidelines</title>

    <note>
      <title>Bibliographical Information</title>
      <para>
        This section is drawn partly from the
	<citetitle>GDSG</citetitle>, and partly from <citetitle>The
	  Elements of Style</citetitle>, updated as necessary for the
	needs of 21st-century technical documentation writers.
      </para>
    </note>

      <!-- FIXME: Again, check attribution viz.  GNU FDL.  This will be more work
      than the previous section. -->

    <para>
      This section contains an alphabetical list of grammar and usage
      guidelines for use in &FED; documentation.  Many of these
      guidelines are only applicable to English-language usage, refer to
      the <citetitle>American Heritage Dictionary</citetitle> (<ulink
	url="http://www.bartleby.com/61/">http://www.bartleby.com/61/</ulink>) 
      and the <citetitle>Chicago Manual of Style</citetitle> (<ulink
	url="http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html">http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html</ulink>.)
    </para>
    <variablelist>
      <varlistentry>
        <term>Abbreviations</term>
        <listitem>
          <para>
            A shortened form of a word or phrase that takes the place of
	    the full word or phrase, such as <literal>Dr.</literal>,
	    <literal>a.m.</literal>, <literal>p.m.</literal>, and so on.
	    Apply the following rules when you use abbreviations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Avoid creating new abbreviations.  Unfamiliar
		abbreviations can confuse rather than clarify a concept.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not explain or expand familiar abbreviations.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not include familiar abbreviations in the glossary of
		your manual.
              </para>
            </listitem>
          </itemizedlist>
          <para>
            For abbreviations of phrases, such as
	    <literal>i.e.</literal> for "in other words" and
	    <literal>e.g.</literal> for "for example", do not use the
	    abbreviation.  Spell out the entire phrase.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Adjectives</term>
        <listitem>
          <para>
            Use adjectives with caution.  If an adjective is necessary
	    to differentiate between items, then use adjectives.  In all
	    cases, test whether the phrase can stand alone without the
	    adjective.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Acronyms</term>
        <listitem>
          <para>
            A term that represents a multi-word term.  Typically,
	    acronyms are formed in the following ways:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                From the first letters of each word in a compound term,
		for example Table of Contents (TOC).
              </para>
            </listitem>
            <listitem>
              <para>
                From recognizable parts of a compound term, such as GNU
		Object Model Environment (GNOME).
              </para>
            </listitem>
          </itemizedlist>
          <para>
            Apply the following rules when you use acronyms:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                On the first occurrence of an acronym, spell out the
		full term, with the acronym in parentheses.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not spell out the full compound for well-known
		acronyms, unless you think the information is useful for
		readers.
              </para>
            </listitem>
            <listitem>
              <para>
                Avoid creating new acronyms.  Unfamiliar acronyms can
		confuse rather than clarify a concept.
              </para>
            </listitem>
            <listitem>
              <para>
                Write the acronym in uppercase letters, unless there is
		a compelling case for lowercase.
              </para>
            </listitem>
            <listitem>
              <para>
                Include the acronym and the full term in the glossary of
		your manual.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Adverbs</term>
        <listitem>
          <para>
            Use adverbs with caution.  If an adverb is necessary to
	    qualify the function of a component, then use an adverb.  In
	    all cases, test whether the phrase can stand alone without
	    the adverb.  Classic superfluous adverbs
	    <literal>simply</literal>, <literal>easily</literal>,
	    <literal>quickly</literal>.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Anthropomorphism</term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
                Do not apply emotions, desires, or opinions to software
		applications.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not apply a sense of location or dimension to a
		software application.  A user can not be "in" a text
		editor.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Articles</term>
        <listitem>
          <para>
            Do not use the definite article <literal>the</literal> to
	    begin any of the following items:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Manual titles
              </para>
            </listitem>
            <listitem>
              <para>
                Chapter titles
              </para>
            </listitem>
            <listitem>
              <para>
                Headings
              </para>
            </listitem>
            <listitem>
              <para>
                Figure captions
              </para>
            </listitem>
            <listitem>
              <para>
                Table captions
              </para>
            </listitem>
            <listitem>
              <para>
                Callouts
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Apostrophe</term>
        <listitem>
          <para>
            Do not use apostrophes except where absolutely required
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Do not use apostrophes to denote possession.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not use apostrophes to denote contractions.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not use apostrophes to denote plurals.
              </para>
            </listitem>
          </itemizedlist>
          <example id="ex-apostrophe-wrong">
            <title>Incorrect: Apostrophes</title>
            <itemizedlist>
              <listitem>
                <para>
                  the <guimenu>Main Menu's</guimenu>
		  <guimenuitem>Help</guimenuitem> option
                </para>
              </listitem>
              <listitem>
                <para>
                  don't use the default option
                </para>
              </listitem>
              <listitem>
                <para>
                  several SCSI disk's
                </para>
              </listitem>
            </itemizedlist>
          </example>
          <example id="ex-apostrophe-right">
            <title>Correct: No apostrophes</title>
            <itemizedlist>
              <listitem>
                <para>
                  the <guimenuitem>Help</guimenuitem> option on the
		  <guimenu>Main Menu</guimenu>
                </para>
              </listitem>
              <listitem>
                <para>
                  do not use the default option
                </para>
              </listitem>
              <listitem>
                <para>
                  several SCSI disks
                </para>
              </listitem>
            </itemizedlist>
          </example>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Brackets</term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
                Do not use brackets [such as these] as a substitute for
		parentheses (such as these).
              </para>
            </listitem>
            <listitem>
              <para>
                Use brackets for optional command line entries.
              </para>
            </listitem>
            <listitem>
              <para>
                Do not use angle brackets to indicate variables in text,
		instead use the <sgmltag
		  class="starttag">replaceable</sgmltag> tag. Refer to
		<xref linkend="sn-xml-tags-replaceable"/> for
		information about using this tag.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Capitalization</term>
        <listitem>
          <para>
            Capitalize in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                All letters in acronyms, unless the acronym is a
		well-known exception
              </para>
            </listitem>
            <listitem>
              <para>
                Initial letter of the first word in a list
              </para>
            </listitem>
            <listitem>
              <para>
                Initial letter of the first word in a callout
              </para>
            </listitem>
            <listitem>
              <para>
                Initial letter of a key name, such as the
		<keycap>Shift</keycap> key
              </para>
            </listitem>
            <listitem>
              <para>
                Initial letter of a sentence
	      </para>
	      <note>
		<title>Command Names</title>
		<para>
		  Avoid starting a sentence with a command name or
		  application name that has a lowercase initial letter.
		</para>
	      </note>
            </listitem>
            <listitem>
              <para>
                Initial letter of a complete sentence after a colon
              </para>
            </listitem>
          </itemizedlist>
          <para>
            Do not capitalize in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                A compound term that is followed by an abbreviation or
		an acronym
              </para>
            </listitem>
            <listitem>
              <para>
                When you want to emphasize something
              </para>
            </listitem>
            <listitem>
              <para>
                Variable names
              </para>
            </listitem>
            <listitem>
              <para>
                The initial letter of an incomplete sentence after a
		colon
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Captions</term>
        <listitem>
          <para>
            Use the same rules as for headings, for all captions
	    accompanying figures and tables.  Do not put a period at the
	    end of a caption.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Colon</term>
        <listitem>
          <para>
            Use a colon in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To introduce a list
              </para>
            </listitem>
            <listitem>
              <para>
                Before an explanation
              </para>
            </listitem>
            <listitem>
              <para>
                After an introduction
              </para>
            </listitem>
          </itemizedlist>
          <para>
            Do not use a colon in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To introduce a figure or a table
              </para>
            </listitem>
            <listitem>
              <para>
                To introduce headings
              </para>
            </listitem>
            <listitem>
              <para>
                At the end of an introduction to a procedure
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Column headings</term>
        <listitem>
          <para>
            Use the same rules as for headings.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Comma</term>
        <listitem>
          <para>
            Use commas in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To separate items in a series
              </para>
            </listitem>
            <listitem>
              <para>
                To separate the parts of a sentence
              </para>
            </listitem>
            <listitem>
              <para>
                To separate nonrestrictive phrases
              </para>
            </listitem>
            <listitem>
              <para>
                Instead of dashes to set off appositives
              </para>
            </listitem>
            <listitem>
              <para>
                With <emphasis>for example</emphasis> and similar
		expressions
              </para>
            </listitem>
          </itemizedlist>
          <para>
            Do not use commas in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                In a series of adjectives used as one modifier
              </para>
            </listitem>
            <listitem>
              <para>
                Between two short independent clauses
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Commands</term>
        <listitem>
          <para>
            Do not use commands as verbs.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry id="vle-contractions">
        <term>Contractions</term>
        <listitem>
          <para>
            Do not use contractions such as <emphasis>can't</emphasis>,
	    <emphasis>don't</emphasis>, or <emphasis>isn't</emphasis>.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Dash</term>
        <listitem>
          <para>
            Do not use the em dash or the en dash.  Use a paragraph
	    break or a colon instead, where you want to create an
	    introductory piece of text.  If you have several items that
	    you want to introduce, then you can use a variable list.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Ellipsis</term>
        <listitem>
          <para>
            Use an ellipsis in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To show that you have omitted something from a sentence
              </para>
            </listitem>
            <listitem>
              <para>
                To indicate a pause when you quote displayed text
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Fractions</term>
        <listitem>
          <para>
            Follow these rules when using fractions:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Use numerals for fractions in tables and in units of
		measurement, but spell out fractions in prose.
              </para>
            </listitem>
            <listitem>
              <para>
                Use a space between a numeral and a related fraction, if
		there is a possible ambiguity.  For example: 1 1/2
		instead of 11/2.
              </para>
            </listitem>
            <listitem>
              <para>
                If a fraction is used in a compound modifier, insert a
		hyphen between the fraction and the unit of measurement.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Gender</term>
        <listitem>
          <para>
            Refer to <xref linkend="sn-fundamentals-9"/>.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Grammar</term>
        <listitem>
          <para>
            Use standard American English grammar rules, refer to the
	    <citetitle>Chicago Manual of Style</citetitle> (<ulink
	      url="http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html"> 
	      http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html</ulink>.)
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Headings</term>
        <listitem>
          <para>
            Use the following capitalization rules in headings:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Initial uppercase letter of the first word
              </para>
            </listitem>
            <listitem>
              <para>
                Initial uppercase letter for all nouns, adjectives, and
		verbs.
              </para>
            </listitem>
            <listitem>
              <para>
                All lowercase letters for conjunctions, articles, and
		prepositions of fewer than four letters
              </para>
            </listitem>
            <listitem>
              <para>
                Initial uppercase letter for prepositions of four
		letters or longer
              </para>
            </listitem>
            <listitem>
              <para>
                Initial uppercase letter for conjunctions of four
		letters or longer
              </para>
            </listitem>
          </itemizedlist>
	    <!-- <para> See <xref linkend="infodesign-2"/> for more
	    information about headings. </para> -->
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Hyphen</term>
        <listitem>
          <para>
            Use hyphens in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para> With a numeral in a compound modifier
              </para>
            </listitem>
            <listitem>
              <para>
                To prevent ambiguity
              </para>
            </listitem>
            <listitem>
              <para>
                With some standard prefixes and suffixes.  Use the
		<citetitle>American Heritage Dictionary</citetitle>
		(<ulink
		  url="http://www.bartleby.com/61/">http://www.bartleby.com/61/</ulink>) 
		for guidance
              </para>
            </listitem>
            <listitem>
              <para>
                In spelled-out fractions
              </para>
            </listitem>
            <listitem>
              <para>
                In variable names of two or more words, such as
		<replaceable>directory-name</replaceable>.  Note:
		<replaceable>filename</replaceable> is an exception.
              </para>
            </listitem>
          </itemizedlist>
          <para>
            Do not use hyphens in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                For industry-accepted terms
              </para>
            </listitem>
            <listitem>
              <para>
                To construct verbs
              </para>
            </listitem>
            <listitem>
              <para>
                With an adverb ending in <emphasis>ly</emphasis>
              </para>
            </listitem>
            <listitem>
              <para>
                With numerals as single modifiers
              </para>
            </listitem>
            <listitem>
              <para>
                With a word that is listed as unhyphenated in the
		<citetitle>American Heritage Dictionary</citetitle>
		(<ulink
		  url="http://www.bartleby.com/61/">http://www.bartleby.com/61/</ulink>), 
		and that uses a common prefix
              </para>
            </listitem>
            <listitem>
              <para>
                With trademarked terms
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Latin terms</term>
        <listitem>
          <para>
            Do not use Latin terms.  Use an equivalent English term
	    instead.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Like</term>
        <listitem>
          <para>
            Do not use the term <emphasis>like</emphasis> to denote
	    equivalence or similarity.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Lists</term>
        <listitem>
          <para>
            Introduce a list with a complete sentence that ends with a
	    colon.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Numbers</term>
        <listitem>
          <para>
            Spell out numbers in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para> Numbers from zero through nine unless the number is
		part of a measurement
              </para>
            </listitem>
            <listitem>
              <para>
                Approximations
              </para>
            </listitem>
            <listitem>
              <para>
                Extreme values such as <emphasis>million</emphasis>, but
		precede the value with a numeral
              </para>
            </listitem>
            <listitem>
              <para>
                Any number that begins a sentence
              </para>
            </listitem>
            <listitem>
              <para>
                A number that is immediately followed by a numeral, for
		example: <literal>two 10 MB files</literal>
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Numerals</term>
        <listitem>
          <para>
            Use numerals in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                The number 10 or greater
              </para>
            </listitem>
            <listitem>
              <para> Negative numbers
              </para>
            </listitem>
            <listitem>
              <para>
                Most fractions
              </para>
            </listitem>
            <listitem>
              <para>
                Percentages
              </para>
            </listitem>
            <listitem>
              <para>
                Decimals
              </para>
            </listitem>
            <listitem>
              <para>
                Measurements
              </para>
            </listitem>
            <listitem>
              <para>
                Units of time smaller than one second
              </para>
            </listitem>
            <listitem>
              <para>
                References to bits and bytes
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Parentheses</term>
        <listitem>
          <para>
            Use parentheses in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To contain the abbreviation of a term on the first
		occurrence of the full term
              </para>
            </listitem>
            <listitem>
              <para>
		In man page references, specifically the section number
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Period</term>
        <listitem>
          <para>
            Use a period in the following situations:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                To end a sentence
              </para>
            </listitem>
            <listitem>
              <para>
                In file and directory names
              </para>
            </listitem>
            <listitem>
              <para>
                In abbreviations that can be mistaken for words, such as
		a.m. and U.S.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Punctuation</term>
        <listitem>
          <para>
            Use standard American English punctuation rules.  In
	    addition to the specific points of punctuation in this
	    section, refer also to the <citetitle>Chicago Manual of
	      Style</citetitle> (<ulink
	      url="http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html">http://www.press.uchicago.edu/Misc/Chicago/cmosfaq/cmosfaq.html</ulink>.)
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Punctuation in numbers</term>
        <listitem>
          <para>
            Do not use a comma in numerals of four digits.  Use a comma
	    in numerals of more than four digits.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Quotation marks</term>
        <listitem>
          <para>
            Use quotation marks to indicate material that is taken
	    verbatim from another source.  Do not use quotation marks to
	    excuse terms from legitimacy.  If the term is not
	    legitimate, then use another term.  If you must use that
	    term, declare the term in the glossary and make the term
	    legitimate.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>See v.  Refer to</term>
        <listitem>
          <para>
            When referring a user to another resource, use "refer to"
	    instead of "see", and "refer also to" instead of "see also".
	    This differentiates from the <sgmltag
	      class="starttag">see</sgmltag> and <sgmltag
	      class="starttag">seealso</sgmltag> tags that are used in
	    indexing.  These tags create special links in the index.  To
	    be consistent throughout the document, we reserve the
	    special words "see" and "see also" for hyperlinked index
	    references, and use "refer to" and "refer also to" for
	    non-hyperlinked and non-indexed references.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Semicolon</term>
        <listitem>
          <para>
            Do not use semicolons.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Slash</term>
        <listitem>
          <para>
            Except where required as part of a filename, do not use
	    slashes "/" in your writing.  The construction
	    <literal>and/or</literal>, for example, does not exist. Use
	    one or the other term instead.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Spelling</term>
        <listitem>
          <para>
            Use standard American English spelling rules, refer to the
	    <citetitle>American Heritage Dictionary</citetitle> (<ulink
	      url="http://www.bartleby.com/61/">http://www.bartleby.com/61/</ulink>) 
	    for guidelines.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Titles</term>
        <listitem>
          <para>
            For manual titles use the same rules as for headings.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Units</term>
        <listitem>
          <para>
            Follow these rules when using units:
          </para>
          <itemizedlist>
            <listitem>
              <para>
                Use standard abbreviations for units of measurements, do
		not invent your own abbreviations.
              </para>
            </listitem>
            <listitem>
              <para>
		<!-- See <xref linkend="units"/> for a list of units
		relevant to the GNOME Desktop. --> For further
		guidelines, refer to the <citetitle>IEEE Standard
		  Dictionary of Electrical and Electronics
		  Terms</citetitle>.
              </para>
            </listitem>
            <listitem>
              <para>
                Use periods for abbreviated units that might be mistaken
		for a word.
              </para>
            </listitem>
            <listitem>
              <para>
                Most standard abbreviations of units account for both
		singular and plural usage.
              </para>
            </listitem>
            <listitem>
              <para>
                Insert a space between the numeral and the unit of
		measurement.
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
    </variablelist>

  </section>

  <section id="sn-composition-tips">

    <title>Composition Tips</title>

<!--

    This section will collect miscellanea and advice for specific
    situations that the FDP editors encounter.  I hope they will feel
    free to e-mail me sticky situations or particularly interesting
    examples of work they've beautified.  Hopefully not too much will be
    drawn from my own work! - PWF.

-->

    <para>
      This section contains usage tips based on situations the &FDP;
      editors have encountered in the past.  You should read and
      understand these examples to improve your own documentation.  The
      &FDP; editors welcome additional examples.
    </para>

    <section id="sn-misc-active-voice">
      <title>Active Voice</title>
      <para>
        Always use active voice, except when it is awkward to do so. The
	tutorial tells the user how to accomplish a task, and should
	give instructions clearly and concisely.  Avoid using "must,"
	"need to," and the like.  These words are redundant in a
	tutorial, since the reader assumes you are outlining necessary
	steps to accomplish a task.  Also avoid using "maybe," "might,"
	and other words that indicate you are unsure about the subject
	matter.  Your tutorial should cover a subject authoritatively.
	The reader should never be concerned about unknown effects of
	following the tutorial.
      </para>
      <example id="ex-misc-passive-voice">
        <title>Incorrect: Passive voice</title>
        <para>
          The <command>yum update</command> command must be run.
        </para>
        <para>
          You might want to run the <command>yum update</command>
	  command.
        </para>
      </example>
      <example id="ex-misc-active-voice">
        <title>Correct: Active voice</title>
        <para>
          Run the <command>yum update</command> command.
        </para>
      </example>
    </section>

    <section id="sn-present-tense">
      <title>Present Tense</title>
      <para>
	Write in the present tense.  A good rule of thumb is that the
	words "will" and "shall" are almost never needed in describing
	what the user should do or see.  They add unnecessary length to
	sentences and can confuse translators.  They are also often
	indicators of passive voice; refer also to <xref
	  linkend="sn-misc-active-voice"/>.
      </para>
      <example id="ex-misc-future-tense">
        <title>Incorrect: Future tense</title>
        <para>
          The application will display a list of target files.
        </para>
        <para>
          A list of target files will be displayed by the application.
        </para>
      </example>
      <example id="ex-misc-present-tense">
        <title>Correct: Present tense</title>
        <para>
          The application displays a list of target files.
        </para>
      </example>
    </section>
	 
    <section id="sn-narrative-voice">
      <title>Narrative Voice</title>
      <para>
        Do not use the first person "I," "we," or "us" to refer to
	yourself the writer (whether including the reader or not), the
	&FDP;, the &FED; community, or any other group.  Do not refer to
	users with a third person pronoun ("he," "she," or "he or she")
	or the word "one." It is acceptable to refer to the reader with
	the second person pronoun "you."
      </para>
      <example id="ex-misc-wrong-person">
        <title>Incorrect: First or third person</title>
        <para>
          As described in the last section, I always run
	  <command>up2date</command> before configuring the Samba
	  server.
        </para>
        <para>
          If the user needs to back up his or her files, s/he should use
	  the <command>tar</command> or <command>cpio</command> command.
        </para>
      </example>
      <example id="ex-misc-correct-person">
        <title>Correct: Second (or no) person</title>
        <para>
          Refer to the section on <command>up2date</command> before
	  configuring the Samba server.
        </para>
        <para>
          If necessary, users can back up files with the
	  <command>tar</command> or <command>cpio</command> command.
        </para>
      </example>
    </section>

    <section id="sn-misc-negative">
      <title>Negative Words</title>
      <para>
	Avoid negative words when possible, since they give
	documentation an overly dogmatic tone.  The word "avoid" is
	useful for this purpose.  Note that contractions are often used
	for negative words such as <emphasis>don't</emphasis> or
	<emphasis>can't</emphasis>.  Refer to <xref
	  linkend="vle-contractions" />.
      </para>
    </section>

    <section id="sn-misc-uncertainty">
      <title>Uncertainty</title>
      <para>
        Avoid overuse of "typically," "usually," "most of," "many," and
	the like.  While occasional use of these constructions is
	acceptable, overuse reduces the authority of your documentation.
	The documentation should adequately cover a stock installation
	of &FC;.  It is impossible for a tutorial-length document to
	cover every possible configuration scenario.  Address the most
	common scenarios and note discrepancies only as required.
      </para>
    </section>
	
    <section id="sn-misc-offtopic">
      <title>Redundant Coverage</title>
      <para>
        Avoid covering redundant material, such as how to update a &FC;
	system.  These overarching topics may be covered in other
	tutorials.  Writers frequently violate this guideline because
	they feel their tutorial is not long enough.  Keep your tutorial
	from wandering off-topic.  Instead, refer the reader to a
	separate tutorial whenever possible for complete coverage of
	that topic.
      </para>
    </section>

    <section id="sn-misc-importance">
      <title>Self-referential Value Judgments</title>
      <para>
	Avoid statements such as "One of the most important things to do
	is <replaceable>XYZ</replaceable>." If the procedure is
	important, the reader already expects it to be in your tutorial.
	The converse is also true:  If a procedure appears in your
	tutorial, the reader expects it is important.  This is
	especially true if you use a whole section for the procedure in
	question.  Merely state, "Do <replaceable>XYZ</replaceable>."
	Then elaborate as required.  If the whole section concerns how
	to do <replaceable>XYZ</replaceable>, leave this sentence out
	entirely.  Refer also to <xref linkend="vle-golden-rule-4" />.
      </para>
    </section>

    <section id="sn-misc-precision">
      <title>Precision of Language</title>
      <para>
        Use precise words for actions users should take.  Do not
	instruct users to "go" to a selection, or "find" a menu.
      </para>
      <example id="ex-precision-wrong">
        <title>Incorrect: Imprecise wording</title>
        <itemizedlist>
          <listitem>
            <para>
              Go to the <guimenu>Main Menu</guimenu> ->
	      <guimenuitem>Foobar</guimenuitem>
            </para>
          </listitem>
          <listitem>
            <para>
              Find the option labeled <guilabel>Search</guilabel>
            </para>
          </listitem>
        </itemizedlist>
      </example>
      <example id="ex-precision-right">
        <title>Correct: Precise wording</title>
        <itemizedlist>
          <listitem>
            <para>
              From the <guimenu>Main Menu</guimenu>, select
	      <guimenuitem>Foobar</guimenuitem>
            </para>
          </listitem>
          <listitem>
            <para>
              Select the <guilabel>Search</guilabel> option
            </para>
          </listitem>
        </itemizedlist>
      </example>
      <important>
        <title>Do Not Discriminate Against Non-GUI Users</title>
        <para>
          If you are writing about a GUI-only application, you may use
	  "click" freely.  If you are writing about an application that
	  has a text-mode interface, use "select" instead as shown
	  above.
        </para>
      </important>

    </section>
	   
    <section id="sn-misc-docbook-tips">
      <title>DocBook Tips</title>
      <para>
        This section contains tips on how to use DocBook tags more
	effectively in your documentation.
      </para>

      <section id="sn-misc-admonitions">
        <title>Admonitions</title>
        <para>
          Avoid overuse of admonitions.  Keep admonitions short and
	  effective by using only the most important material inside the
	  admonition.  Move any background material required to explain
	  the admonition statements outside the admonition.  Use a short
	  but descriptive title for an admonition.  Use title case for
	  the admonition title.
        </para>
        <example id="ex-misc-ineffective-admonition">
          <title>Incorrect: Lengthy admonition</title>
          <para>
	      <warning>
              <title>Use <command>sfdisk</command> to check input</title>
              <para>
                The <command>sfdisk</command> command accepts a script
		file as standard input to set up partitions on a hard
		disk.  Sometimes <command>sfdisk</command> will simply
		reject an erroneous input file.  In other cases, it will
		use the input verbatim, writing an incorrect partition
		table to your disk.  Always use the <command>sfdisk
		  -n</command> command to check your input file before
		writing to the disk.
              </para>
	      </warning>
          </para>
        </example>
        <example id="ex-misc-good-admonition">
          <title>Correct: Brief admonition</title>
          <para>
	    The <command>sfdisk</command> command accepts a script
	    file as standard input to set up partitions on a hard disk.
	    Sometimes <command>sfdisk</command> will simply reject an
	    erroneous input file.  In other cases, it will use the input
	    verbatim, writing an incorrect partition table to your disk.
	    <warning>
              <title>Check Input</title>
              <para>
                Always use the <command>sfdisk -n</command> command to
		check your input file before writing to the disk.
              </para>
	    </warning>
          </para>
        </example>
        <para>
          Avoid punctuation in titles for sections or admonitions,
	  except for commas only where demanded.  Use a title that says
	  something about the admonition comment, such as "Reboot
	  Required," instead of simply using the admonition type for a
	  title ("Note").
        </para>
	<para>
	  Follow the capitalization rules for headings in the title of
	  an admonition.
	</para>
      </section>

      <section id="sn-misc-replaceable">
        <title>The <sgmltag class="starttag">replaceable</sgmltag>
	  Tag</title>
        <para>
          If your documentation formally states a specific value will be
	  used as a convention, do not use the <sgmltag
	    class="starttag">replaceable</sgmltag> tag in your text or
	  examples.
        </para>
      </section>

      <section id="sn-misc-entities">
        <title>XML Entities</title>
        <para>
	  Use the entities provided by the &FDP;.  These entities are
	  found in the <filename>common/</filename> folder in the
	  <filename>fedora-docs</filename> distribution. (Refer also to
	  <xref linkend="ch-getting-files"/>.) For instance, do not use
	  abbreviations such as "FC2."  Instead, use the predefined
	  entities "&amp;FC; &amp;FCVER;," which produces the text "&FC;
	  &FCVER;."
        </para>
      </section>

    </section>
   
  </section>
 
</chapter>

<!-- Keep this comment at the end of the file
Local variables:
mode: xml
fill-column: 72
End:
-->