File: Intro.lyx

package info (click to toggle)
lyx 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 138,444 kB
  • sloc: cpp: 244,268; ansic: 106,398; xml: 72,791; python: 39,384; sh: 7,666; makefile: 6,584; pascal: 2,143; perl: 2,101; objc: 1,084; tcl: 163; sed: 16
file content (2390 lines) | stat: -rw-r--r-- 46,103 bytes parent folder | download
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
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
#LyX 2.5 created this file. For more info see https://www.lyx.org/
\lyxformat 643
\begin_document
\begin_header
\save_transient_properties true
\origin /systemlyxdir/doc/
\textclass article
\begin_preamble
% DO NOT ALTER THIS PREAMBLE!!!
%
%This preamble is designed to ensure that the document prints
% out as advertised. If you mess with this preamble,
% parts of the document may not print out as expected.  If you
% have problems LaTeXing this file, please contact 
% the documentation team
% email: lyx-docs@lists.lyx.org

% the pages of the TOC is numbered roman
% and a pdf-bookmark for the TOC is added
\pagenumbering{roman}
\let\myTOC\tableofcontents
\renewcommand\tableofcontents{%
  \pdfbookmark[1]{\contentsname}{}
  \myTOC
  \cleardoublepage
  \pagenumbering{arabic} }
\end_preamble
\use_default_options false
\maintain_unincluded_children no
\language english
\language_package default
\inputencoding utf8
\fontencoding auto
\font_roman "palatino" "default"
\font_sans "helvet" "default"
\font_typewriter "courier" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc true
\font_roman_osf false
\font_sans_osf false
\font_typewriter_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures false
\graphics default
\default_output_format pdf2
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize 12
\spacing single
\use_hyperref true
\pdf_title "Introduction to LyX"
\pdf_author "LyX Team"
\pdf_subject "LyX-documentation Intro"
\pdf_keywords "LyX, documentation"
\pdf_bookmarks true
\pdf_bookmarksnumbered true
\pdf_bookmarksopen true
\pdf_bookmarksopenlevel 2
\pdf_breaklinks true
\pdf_pdfborder false
\pdf_colorlinks true
\pdf_backref false
\pdf_pdfusetitle false
\pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
\papersize a4
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification default
\crossref_package prettyref
\use_formatted_ref 0
\use_minted 0
\use_lineno 0
\backgroundcolor none
\fontcolor none
\notefontcolor lightgray
\boxbgcolor red
\table_border_color default
\table_odd_row_color default
\table_even_row_color default
\table_alt_row_colors_start 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 2
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tablestyle default
\tracking_changes false
\output_changes false
\change_bars false
\postpone_fragile_content false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\docbook_table_output 0
\docbook_mathml_prefix 1
\docbook_mathml_version 0
\end_header

\begin_body

\begin_layout Title
Introduction to \SpecialChar LyX

\end_layout

\begin_layout Author
by the \SpecialChar LyX
 Team
\begin_inset Foot
status collapsed

\begin_layout Plain Layout
\noindent
If you have comments on or corrections to this documentation,
 please send them to the \SpecialChar LyX
 Documentation mailing list:
 
\begin_inset CommandInset href
LatexCommand href
target "lyx-docs@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Standard
\begin_inset CommandInset toc
LatexCommand tableofcontents

\end_inset


\end_layout

\begin_layout Section
The Philosophy of \SpecialChar LyX

\end_layout

\begin_layout Subsection
What is \SpecialChar LyX
?
\end_layout

\begin_layout Standard
\SpecialChar LyX
 is a document preparation system.
 It excels at letting you create complex technical and scientific articles with mathematics,
 cross-references,
 bibliographies,
 indexes,
 etc.
 It is very good for working with documents of any length in which the usual processing abilities are required:
 automatic sectioning and pagination,
 spell checking and so forth.
 It can also be used to write a letter to your mom,
 though granted,
 there are probably simpler programs available for that.
 It is definitely not the best tool for creating banners,
 flyers,
 or advertisements (we'll explain why later),
 though with some effort all these can be done,
 too.
 Here are some examples of what it is used for:
 memos,
 letters,
 dissertations and theses,
 lecture notes,
 seminar notebooks,
 conference proceedings,
 software documentation,
 books,
 articles in refereed scientific journals,
 scripts for plays and movies,
 business proposals,
 presentations\SpecialChar ldots

\end_layout

\begin_layout Standard
\SpecialChar LyX
 is a program that provides a modern approach to writing documents with a computer by using a markup language paradigm,
 an approach that breaks with the obsolete tradition of the 
\begin_inset Quotes eld
\end_inset

typewriter concept
\begin_inset Quotes erd
\end_inset

.
 It is designed for authors who want professional output quickly with a minimum of effort and without becoming specialists in typesetting.
 The job of typesetting is done mostly by the computer,
 not the author;
 with \SpecialChar LyX
,
 the author can concentrate on the contents of his writing.
\end_layout

\begin_layout Standard
Part of the initial challenge of using \SpecialChar LyX
 comes from the change in thinking that you,
 the user,
 must make.
 At one time,
 all we had for creating documents were typewriters,
 so we all learned certain tricks to get around their limitations.
 Underlining,
 which is little more than overstriking with the 
\begin_inset Quotes eld
\end_inset

_
\begin_inset Quotes erd
\end_inset

 character,
 became a way to emphasize text.
 You were forced to figure out column sizes and tab stops,
 and set them,
 before creating a table.
 The same applied for letters and other right justified text.
 Hyphenation at the end of a line required a careful eye and a lot of foresight.
\end_layout

\begin_layout Standard
In other words,
 we've all been trained to worry about the little details of which character goes where.
 Consequently,
 almost all word processors have this mentality.
 They still use tab stops for adding whitespace.
 You still need to worry about exactly where on the page something will appear.
 Emphasizing text means changing a font,
 similar to changing the typewriter wheel.
 This is the underlying philosophy of a WYSIWYG word processor:
 
\begin_inset Quotes eld
\end_inset

What You See Is What You Get
\begin_inset Quotes erd
\end_inset

.
 Unfortunately,
 that paradigm often results in 
\begin_inset Quotes eld
\end_inset

What You See Is All You Get
\begin_inset Quotes erd
\end_inset

.
\end_layout

\begin_layout Standard
This is where \SpecialChar LyX
 differs from an ordinary word processor.
 You don't concern yourself with what character goes where.
 You tell \SpecialChar LyX
 
\emph on
what you're doing
\emph default
 and \SpecialChar LyX
 takes care of the rest,
 following a set of rules called a 
\emph on
style
\emph default
.
\begin_inset Foot
status collapsed

\begin_layout Plain Layout
To be fair,
 most recent versions of the most popular office suites now have some sort of style sheets which follow a similar markup method.
 However,
 our experience is that they are still rarely used in practice.
\end_layout

\end_inset

 Let's look at a little example:
\end_layout

\begin_layout Standard
Suppose you are writing a report.
 To begin your report,
 you want a section called 
\begin_inset Quotes eld
\end_inset

Introduction
\begin_inset Quotes erd
\end_inset

\SpecialChar endofsentence
 So,
 you go into whatever menu it is in your word processor that changes font sizes and decide on a new font size.
 Then you turn on bold face.
 Then you type,
 
\begin_inset Quotes eld
\end_inset

1.
\begin_inset space ~
\end_inset


\begin_inset space ~
\end_inset

Introduction
\begin_inset Quotes erd
\end_inset

.
 Of course,
 if you later decide that this section belongs someplace else in the document or if you insert a new section before it,
 you need to change the numbering for this and all following sections,
 as well as any entry in the table of contents.
\end_layout

\begin_layout Standard
In \SpecialChar LyX
,
 you go to the pull-down on the far left of the button bar and select 
\family sans
Section
\family default
,
 and type 
\begin_inset Quotes eld
\end_inset

Introduction
\begin_inset Quotes erd
\end_inset

.
\end_layout

\begin_layout Standard
Yes,
 that's all.
 If you cut and paste the section,
 it will automatically be renumbered —
 everywhere.
 And if you enter references to that section correctly (by inserting cross-reference tags),
 \SpecialChar LyX
 will automatically update them all throughout the file so that you never,
 ever type a section number.
\end_layout

\begin_layout Standard
Now let's look at the problem of consistency.
 Five days later,
 you reopen your report and start Section
\begin_inset space ~
\end_inset

4.
 However,
 you forget that you were using 18
\begin_inset space \thinspace{}
\end_inset

pt bold instead of 16
\begin_inset space \thinspace{}
\end_inset

pt,
 so you type in the heading for Section
\begin_inset space ~
\end_inset

4 in a different font from the one you used for Section
\begin_inset space ~
\end_inset

1.
 That problem doesn't even exist in \SpecialChar LyX
.
 The computer takes care of all that silly bookkeeping about which thing has what size font,
 not you.
 After all,
 that's what a computer is good at.
\end_layout

\begin_layout Standard
Here's another example.
 Suppose you're making a list.
 In other word processors,
 a list is just a bunch of tab stops and newlines.
 You need to figure out where to put the label for each list item,
 what that label should be,
 how many blank lines to put between each item,
 and so on.
 Under \SpecialChar LyX
,
 you have only two concerns:
 what kind of list is this,
 and what do I want to put in it?
 That is it.
\end_layout

\begin_layout Standard
So,
 the basic idea behind \SpecialChar LyX
 is:
 specify 
\emph on
what
\emph default
 you're doing,
 not 
\emph on
how
\emph default
 to do it.
 Instead of 
\begin_inset Quotes eld
\end_inset

What You See Is What You Get
\begin_inset Quotes erd
\end_inset

,
 the \SpecialChar LyX
 model is 
\begin_inset Quotes eld
\end_inset

What You See Is What You 
\emph on
Mean
\emph default

\begin_inset Quotes erd
\end_inset

 or WYSIWYM.
 It's a powerful idea that greatly simplifies the mechanics of writing documents.
 This is also why \SpecialChar LyX
 isn't so good for creating posters and flyers.
 In this case,
 you 
\emph on
do
\emph default
 want to specify exactly where everything goes,
 because there are no functional units like paragraphs,
 sections,
 etc.
 This doesn't mean \SpecialChar LyX
 is missing some cool function.
 It simply means that it isn't the right tool for the job —
 you don't use a screwdriver to drive in nails.
\end_layout

\begin_layout Subsection
Differences between \SpecialChar LyX
 and Other Word Processors
\end_layout

\begin_layout Standard
Here's a list of things you won't find in \SpecialChar LyX
:
\end_layout

\begin_layout Itemize
The document ruler
\end_layout

\begin_layout Itemize
Tab stops
\end_layout

\begin_layout Itemize
Extra whitespace (e.
\begin_inset space \thinspace{}
\end_inset

g.
\begin_inset space \space{}
\end_inset

hitting 
\family sans
Enter
\family default
 or 
\family sans
Space
\family default
 two or more times)
\end_layout

\begin_layout Standard
Tab stops,
 along with a ruler showing you the position of things on the page,
 are useless in \SpecialChar LyX
.
 The program worries about where things go on the page,
 not you.
 Extra whitespace is similar;
 \SpecialChar LyX
 adds it where necessary,
 depending on context.
 Not being able to type two blank lines in a row will be annoying at first,
 but it makes more sense once you're thinking in WYSIWYM terms.
\end_layout

\begin_layout Standard
Here are some things that exist in \SpecialChar LyX
,
 but aren't used as you might think:
\end_layout

\begin_layout Itemize
Indenting controls
\end_layout

\begin_layout Itemize
Page breaks
\end_layout

\begin_layout Itemize
Line spacing (e.
\begin_inset space \thinspace{}
\end_inset

g.
\begin_inset space \space{}
\end_inset

single spaced,
 double spaced,
 etc.)
\end_layout

\begin_layout Itemize
Whitespace,
 horizontal and vertical
\end_layout

\begin_layout Itemize
Fonts and font sizes
\end_layout

\begin_layout Itemize
Typefaces (bold,
 italic,
 underline,
 etc.)
\end_layout

\begin_layout Standard
Although they exist in \SpecialChar LyX
,
 you generally don't need them.
 \SpecialChar LyX
 will take care of these things for you,
 depending on what you're doing.
 Different parts of the document are automatically set in a different typeface and font size.
 Paragraph indenting is context dependent;
 different types of paragraphs get indented differently.
 Page breaks get handled automatically,
 as well.
 In general,
 the space between lines,
 between words,
 and between paragraphs is variable,
 set by \SpecialChar LyX
.
\begin_inset Foot
status collapsed

\begin_layout Plain Layout
There are ways to adjust all of these (only some of which require knowledge of \SpecialChar LaTeX
),
 either for a whole document or for a specific location in a document.
 See the 
\emph on
User's Guide
\emph default
 and/or the 
\emph on
Additional Features
\emph default
 manual for details.
\end_layout

\end_inset


\end_layout

\begin_layout Standard
Lastly,
 there are a few areas where we believe \SpecialChar LyX
 (and \SpecialChar LaTeX
) surpasses many word processors:
\end_layout

\begin_layout Itemize
Hyphenation
\end_layout

\begin_layout Itemize
Lists of any type
\end_layout

\begin_layout Itemize
Mathematics
\end_layout

\begin_layout Itemize
Tables
\end_layout

\begin_layout Itemize
Cross-referencing
\end_layout

\begin_layout Standard
Granted,
 many modern word processors can handle mathematical symbols,
 tables,
 and hyphenation,
 and many have moved towards style definitions and the WYSIWYM concept.
 However,
 they've only recently been able to do so,
 whereas \SpecialChar LyX
 is built upon the \SpecialChar LaTeX
 document preparation system.
 \SpecialChar LaTeX
 has been around since 1985,
 and 
\emph on
works
\emph default
.
\end_layout

\begin_layout Subsection
What is \SpecialChar LaTeX
?
\end_layout

\begin_layout Standard
\SpecialChar LaTeX
 is a document preparation system designed by 
\noun on
Leslie Lamport
\noun default
 in 1985.
\begin_inset Foot
status collapsed

\begin_layout Plain Layout
The source for the info in this section is 
\emph on
A Guide to \SpecialChar LaTeX2e

\emph default
,
 by 
\noun on
Helmut Kopka
\noun default
 and 
\noun on
Patrick Daly
\noun default
,
 which has an entry in the bibliography of the 
\emph on
User's Guide
\emph default
\SpecialChar endofsentence

\end_layout

\end_inset

 It was built up from a typesetting language called \SpecialChar TeX
,
 created by 
\shape smallcaps
Donald Knuth
\shape default
 in 1984.
 \SpecialChar TeX
 takes a sequence of typesetting commands,
 written in a script in an ASCII file,
 and executes them.
 Many of the 
\begin_inset Quotes eld
\end_inset

tricks
\begin_inset Quotes erd
\end_inset

 of the printing trade were modeled by 
\shape smallcaps
Knuth
\shape default
 as computer algorithms and incorporated into \SpecialChar TeX
,
 hence its excellent printed appearance.
 What comes directly out of \SpecialChar TeX
 is the 
\begin_inset Quotes eld
\end_inset

portable document format
\begin_inset Quotes erd
\end_inset

 
\emph on
pdf
\emph default
 or the so-called 
\begin_inset Quotes eld
\end_inset

device independent
\begin_inset Quotes erd
\end_inset

 format file 
\emph on
dvi
\emph default
.
 The 
\family typewriter
dvi
\family default
 format is often used for previews and can later be converted to other formats like PostScript.
 
\end_layout

\begin_layout Standard
\SpecialChar TeX
 isn't only a typesetting engine;
 it also allows you to define macros.
 Most people who use \SpecialChar TeX
 are actually using a macro package which 
\noun on
Knuth
\noun default
 created to hide a lot of the typesetting details.
 This is where 
\noun on
Leslie Lamport
\noun default
 enters our story.
 He wanted a macro package that was more user- and less typesetter-oriented,
 with a set of commands that consistently typeset things like sections,
 tables or math formulas in a uniform,
 consistent fashion.
 This is how \SpecialChar LaTeX
 was born.
\end_layout

\begin_layout Standard
Now,
 in parallel with the development and growth of \SpecialChar LaTeX
,
 other folks were creating their own custom macro packages for \SpecialChar TeX
,
 ones to make slides or articles for math journals and so on.
 Some used the raw \SpecialChar TeX
 facilities to do this,
 others began modifying \SpecialChar LaTeX
.
 To try and unify this mess,
 a team of \SpecialChar LaTeX
-nicians began to work on \SpecialChar LaTeX2e
,
 the current version of \SpecialChar LaTeX
,
 during the late 1980's.
 This new version of \SpecialChar LaTeX
 has commands which provide an easier-to-use interface to \SpecialChar TeX
's macro-creating commands,
 aid in the use of new fonts,
 and so on.
 In fact,
 \SpecialChar LaTeX
 is quite an extensive language in its own right!
 Users around the world have been creating their own add-ons for \SpecialChar LaTeX
 beyond the standard ones.
\end_layout

\begin_layout Standard
There are two ways to extend \SpecialChar LaTeX
:
 classes and styles.
 A 
\emph on
class
\emph default
 is a set of \SpecialChar LaTeX
 macros describing a new type of document,
 like a book,
 or an article.
 There are classes for slides,
 for physics and math journals\SpecialChar ldots
 many universities even have a class for their thesis format.
 A 
\emph on
style
\emph default
 differs from a class in that it doesn't define a new type of document,
 but a different type of 
\emph on
behavior
\emph default
 that any document can use.
 For example,
 \SpecialChar LyX
 controls page margins and line spacing using two different \SpecialChar LaTeX
 style-files designed for these purposes.
 There are style-files for a whole slew of things:
 printing labels or envelopes,
 changing indentation behavior,
 adding new fonts,
 manipulating graphics,
 designing fancy page headings,
 customizing bibliographies,
 altering the location and appearance of footnotes,
 tables,
 and figures,
 customizing lists,
 etc.
\end_layout

\begin_layout Standard
Here is a summary:
\end_layout

\begin_layout Description
\SpecialChar TeX
:
 Typesetting language with macro capability.
\end_layout

\begin_layout Description
\SpecialChar LaTeX
:
 Macro package built upon \SpecialChar TeX
\SpecialChar endofsentence

\end_layout

\begin_layout Description
classes:
 Descriptions of types of document used with \SpecialChar LaTeX
\SpecialChar endofsentence

\end_layout

\begin_layout Description
styles:
 Descriptions of the default behavior of particular elements of \SpecialChar LaTeX
.
\end_layout

\begin_layout Description
\SpecialChar LyX
:
 Visual,
 WYSIWYM document processor that uses \SpecialChar LaTeX
 to do its typesetting.
\end_layout

\begin_layout Standard
This section attempts to explain the difference between \SpecialChar LyX
 and a word processor.
 Simply put,
 \SpecialChar LaTeX
 is the difference.
 By using \SpecialChar LaTeX
 as its backend,
 \SpecialChar LyX
 helps you to think more about
\emph on
 what
\emph default
 (as in the 
\emph on
words
\emph default
) you write.
 The computer then handles 
\emph on
how
\emph default
 they should look.
\end_layout

\begin_layout Section
Navigating the Documentation
\end_layout

\begin_layout Standard
To make it easier to answer your questions and describe all of the features of \SpecialChar LyX
,
 the documentation has been split up into several different files.
 Each one has its own purpose,
 as described below.
 Before you go ploughing into any of those files,
 however,
 you should read this section thoroughly,
 since it contains a lot of useful information and commentary that can save you some time.
\end_layout

\begin_layout Standard
Hopefully,
 the development of \SpecialChar LyX
 will never stop;
 so some of the documentation may be incomplete or a bit out of date,
 though we try to keep up-to-date.
 Like the rest of \SpecialChar LyX
,
 the manuals are the work of a group of volunteers who have 
\begin_inset Quotes eld
\end_inset

Real Jobs
\begin_inset Quotes erd
\end_inset

,
 families,
 dishes to clean,
 
\emph on
et cetera
\emph default
.
 If you want to help out,
 be sure to read Section
\begin_inset space ~
\end_inset


\begin_inset CommandInset ref
LatexCommand ref
reference "sec:Contrib"
nolink "false"

\end_inset

 in addition to the rest of this document.
\end_layout

\begin_layout Standard
Also,
 please do us a favor:
 if anything in these manuals confuses you,
 is unclear,
 or wrong,
 don't hesitate to let us know!
 You can reach the current documentation maintainers by emailing 
\begin_inset CommandInset href
LatexCommand href
target "lyx-docs@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset

.
\end_layout

\begin_layout Subsection
Where To Get Help
\end_layout

\begin_layout Standard
If you have questions that are not obviously answered in the documentation and need help fast,
 there is an active users' mailing list which you can reach at 
\begin_inset CommandInset href
LatexCommand href
target "lyx-users@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset

.
 You do not have to register to post,
 but you may wish to do so.
 See 
\begin_inset CommandInset href
LatexCommand href
name "the LyX website"
target "https://www.lyx.org/MailingLists"
literal "false"

\end_inset

 for further information.
 LyX also has a 
\begin_inset CommandInset href
LatexCommand href
target "https://www.lyx.org"
literal "false"

\end_inset

 that will answer many questions about how to get LyX to do various things.
\end_layout

\begin_layout Subsection
The Format of the Manuals
\end_layout

\begin_layout Standard
Some of you may have printed out the manuals.
 Others may be reading them within \SpecialChar LyX
.
 There are some differences between the \SpecialChar LyX
-file and the printed version.
 In \SpecialChar LyX
,
 the title is simply at the top of the document,
 not formatted on a separate page as in some of the printed versions.
 Nor are any of the footnotes or the Table of Contents fully visible.
 To open a footnote,
 which looks like this:
 
\begin_inset Graphics
	filename clipart/footnote.png
	scale 95

\end_inset

,
 click on it with the left mouse button.
 For the Table of Contents,
 either click on the grey box or click on the 
\family sans
Navigate
\family default
 menu,
 where the contents are displayed automatically\SpecialChar endofsentence

\end_layout

\begin_layout Standard
In the printed manuals,
 all cross-references appear as the actual numbers for a chapter,
 section,
 subsection,
 and so on.
 In the \SpecialChar LyX
-file,
 however,
 all cross-references appear as light-grey boxes like the following:
 
\begin_inset Graphics
	filename clipart/reference.png
	scale 95

\end_inset

.
 If you click on such a box with the left mouse button,
 a dialog box will appear containing a list of all the cross-references in the document.
 You can go to the referenced element by right-clicking on the box or by clicking the button 
\family sans
Go
\begin_inset space ~
\end_inset

to
\begin_inset space ~
\end_inset

Label
\family default
 in the opened dialog.
 Going back to where you came from is just as easy.
 Click on 
\family sans
Go
\begin_inset space ~
\end_inset

Back
\family default
 to go back to your earlier location.
\end_layout

\begin_layout Standard
Now that we've cleared up some of the differences between the printed and \SpecialChar LyX
-file versions of this file,
 we can start looking at the format of this document.
 You'll occasionally notice things in different fonts:
\end_layout

\begin_layout Itemize

\emph on
Emphasized Style
\emph default
 is used for general emphasis,
 generic arguments,
 book and manual titles,
 names of sections of other manuals,
 and notes from the authors.
\end_layout

\begin_layout Itemize

\family typewriter
Typewriter
\family default
 is used for program and file names,
 \SpecialChar LyX
 code and functions.
\end_layout

\begin_layout Itemize

\family sans
Sans Serif
\family default
 is used for menu,
 button or dialog box names,
 and the names of keyboard keys.
\end_layout

\begin_layout Itemize

\noun on
Noun Style
\noun default
 is used for people's names.
\end_layout

\begin_layout Itemize

\series bold
Bold
\series default
 is used for \SpecialChar LaTeX
 code.
\end_layout

\begin_layout Standard
When we do need to reference keys,
 we'll use the following prefixing convention:
\end_layout

\begin_layout Itemize

\family sans
Ctrl+
\family default
 indicates the 
\family sans
Control
\family default
 key.
\end_layout

\begin_layout Itemize

\family sans
Shift+
\family default
 indicates the 
\family sans
Shift
\family default
 key.
\end_layout

\begin_layout Itemize

\family sans
Alt+
\family default
 indicates the 
\family sans
Alt
\family default
 (
\family sans
Meta
\family default
) key.
\end_layout

\begin_layout Itemize

\family sans
F1
\family default
 \SpecialChar ldots
 
\family sans
F12
\family default
 are the function keys.
\end_layout

\begin_layout Itemize

\family sans
Esc
\family default
 is the escape key.
\end_layout

\begin_layout Itemize

\family sans
Left
\family default
,
 
\family sans
Right
\family default
,
 
\family sans
Up
\family default
 and 
\family sans
Down
\family default
:
 self-explanatory.
\end_layout

\begin_layout Itemize

\family sans
Insert
\family default
,
 
\family sans
Delete
\family default
,
 
\family sans
Home
\family default
,
 
\family sans
End
\family default
,
 
\family sans
PageUp
\family default
 and 
\family sans
PageDown
\family default
:
 these are the 6
\begin_inset space ~
\end_inset

keys that appear above the cursor keys on many PC keyboards.
 
\family sans
PageUp
\family default
 and 
\family sans
PageDown
\family default
 are called 
\family sans
Prior
\family default
 and 
\family sans
Next
\family default
 on some keyboards.
\end_layout

\begin_layout Itemize

\family sans
Return
\family default
 and 
\family sans
Enter
\family default
 both refer to the same key.
 Some keyboards label the 
\family sans
Return
\family default
 key as 
\begin_inset Quotes eld
\end_inset

Return
\begin_inset Quotes erd
\end_inset

,
 others as 
\begin_inset Quotes eld
\end_inset

Enter
\begin_inset Quotes erd
\end_inset

,
 still others have two keys.
 \SpecialChar LyX
 treats all of them as the same key,
 so we'll use 
\family sans
Return
\family default
 and 
\family sans
Enter
\family default
 interchangeably.
\end_layout

\begin_layout Standard
The list with the currently set shortcuts can be found in the 
\family sans
Help
\family default
 menu under 
\family sans
Shortcuts
\family default
.
\end_layout

\begin_layout Subsection
Units used in the Manuals
\end_layout

\begin_layout Standard
To understand the units described in this documentation,
 Table
\begin_inset space ~
\end_inset


\begin_inset CommandInset ref
LatexCommand ref
reference "tab:Units"
nolink "false"

\end_inset

 explains all units available in \SpecialChar LyX
.
\end_layout

\begin_layout Standard
\begin_inset Float table
placement document
alignment document
wide false
sideways false
status open

\begin_layout Plain Layout
\begin_inset Caption Standard

\begin_layout Plain Layout
\begin_inset CommandInset label
LatexCommand label
name "tab:Units"

\end_inset

Units
\end_layout

\end_inset


\end_layout

\begin_layout Plain Layout
\begin_inset VSpace medskip
\end_inset


\end_layout

\begin_layout Plain Layout
\align center
\begin_inset Tabular
<lyxtabular version="3" rows="20" columns="2">
<features booktabs="true" tabularvalignment="middle">
<column alignment="center" valignment="top" width="0pt">
<column alignment="center" valignment="top">
<row>
<cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
unit
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
name/description
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
mm
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
millimeter
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
cm
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
centimeter
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
in
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
inch (1
\begin_inset space \thinspace{}
\end_inset

in = 2.54
\begin_inset space \thinspace{}
\end_inset

cm)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
pt
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
point (72.27
\begin_inset space \thinspace{}
\end_inset

pt = 1
\begin_inset space \thinspace{}
\end_inset

in)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
pc
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
pica (1
\begin_inset space \thinspace{}
\end_inset

pc = 12
\begin_inset space \thinspace{}
\end_inset

pt)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
sp
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
scaled point (65536
\begin_inset space \thinspace{}
\end_inset

sp = 1
\begin_inset space \thinspace{}
\end_inset

pt)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
bp
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
big point (72
\begin_inset space \thinspace{}
\end_inset

bp = 1
\begin_inset space \thinspace{}
\end_inset

in)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
dd
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
didot (72
\begin_inset space \thinspace{}
\end_inset

dd 
\begin_inset Formula $\approx$
\end_inset

 37.6
\begin_inset space \thinspace{}
\end_inset

mm)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
cc
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
cicero (1
\begin_inset space \thinspace{}
\end_inset

cc = 12
\begin_inset space \thinspace{}
\end_inset

dd)
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
Scale%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of original image width
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
text%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of text width
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
col%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of column width
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
page%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of paper width
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
line%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of line width
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
theight%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of text height
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
pheight%
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
% of paper height
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
ex
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
height of letter 
\emph on
x
\emph default
 in current font
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
em
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
width of letter 
\emph on
M
\emph default
 in current font
\end_layout

\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
mu
\end_layout

\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text

\begin_layout Plain Layout
math unit (1
\begin_inset space \thinspace{}
\end_inset

mu = 1/18
\begin_inset space \thinspace{}
\end_inset

em)
\end_layout

\end_inset
</cell>
</row>
</lyxtabular>

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Subsection
The Manuals
\end_layout

\begin_layout Standard
The following list describes the contents of the basic documentation files that you find in the 
\family sans
Help
\family default
 menu:
\end_layout

\begin_layout Description
Introduction This file.
\end_layout

\begin_layout Description
Tutorial If you are new to \SpecialChar LyX
,
 and have never used \SpecialChar LaTeX
 before,
 you should start here.
 If you have used \SpecialChar LaTeX
 before,
 you should still read the 
\emph on
Tutorial
\emph default
,
 starting with the section on 
\emph on
\SpecialChar LyX
 for \SpecialChar LaTeX
 users
\emph default
.
 (Skimming through the rest of the document wouldn't hurt,
 either.)
\end_layout

\begin_layout Description
User's
\begin_inset space ~
\end_inset

Guide The primary documentation.
 We'll cover 
\emph on
most
\emph default
 of the basic operation and available features of \SpecialChar LyX
 here.
 The main manual assumes that you have read the 
\emph on
Tutorial
\emph default
.
\end_layout

\begin_layout Description
Embedded
\begin_inset space ~
\end_inset

Objects Extension of the 
\emph on
User's Guide
\emph default
.
 Documents in detail how to use tables,
 graphics,
 floats,
 notes,
 program listings and boxes.
 It also includes many tricks of the \SpecialChar LaTeX
 masters.
\end_layout

\begin_layout Description
Math Extension of the 
\emph on
User's Guide
\emph default
.
 Documents in detail how to typeset any kind of formula.
\end_layout

\begin_layout Description
Additional
\begin_inset space ~
\end_inset

Features Extension of the 
\emph on
User's Guide
\emph default
.
 Documents how to use raw \SpecialChar LaTeX
 commands,
 additional layouts and special-purpose editing features.
\end_layout

\begin_layout Description
Customization A description of advanced \SpecialChar LyX
 features,
 including how to customize the overall behavior of \SpecialChar LyX
\SpecialChar endofsentence
 This includes such things as keybindings,
 internationalization and configuration files.
 It also includes information about layout files,
 which are needed to get \SpecialChar LyX
 to support \SpecialChar LaTeX
 classes or packages.
\end_layout

\begin_layout Description
Shortcuts Tables of the currently defined \SpecialChar LyX
 shortcuts.
\end_layout

\begin_layout Description
\SpecialChar LaTeX

\begin_inset space ~
\end_inset

Configuration A report produced by \SpecialChar LyX
 about your system.
 This file contains information on what \SpecialChar LyX
 learned about your installation.
 Check it to see if you're missing something you might like to have.
\end_layout

\begin_layout Standard
These files will reference one another as necessary.
 For example,
 the 
\emph on
User's Guide
\emph default
 contains 
\emph on
some
\emph default
 information on installation and customization,
 but refers the reader to the 
\emph on
Customization
\emph default
 manual for more information.
\end_layout

\begin_layout Standard
We'll state again an important point:
\end_layout

\begin_layout Standard
\begin_inset VSpace bigskip
\end_inset


\end_layout

\begin_layout Standard
\align center
If you are new to \SpecialChar LyX
,
 read the 
\emph on
Tutorial
\emph default
.
 Now\SpecialChar endofsentence

\end_layout

\begin_layout Standard
\begin_inset VSpace bigskip
\end_inset


\end_layout

\begin_layout Standard
Otherwise,
 you could needlessly frustrate yourself.
\end_layout

\begin_layout Section
Contributing to the \SpecialChar LyX
 Project
\begin_inset CommandInset label
LatexCommand label
name "sec:Contrib"

\end_inset


\end_layout

\begin_layout Subsection
Contributing to \SpecialChar LyX

\end_layout

\begin_layout Standard
\SpecialChar LyX
 is mostly written in C++ (the \SpecialChar LaTeX
 importer is written in Python).
 It is a large project,
 and as a result it is not free from bugs,
 or the need for improvements in the source code.
\end_layout

\begin_layout Subsubsection
Reporting a bug
\end_layout

\begin_layout Standard
While using \SpecialChar LyX
,
 you may find behavior which you consider a bug.
 Crashes,
 though rare,
 can happen.
 User interface problems are considered major bugs by the \SpecialChar LyX
 team:
 especially helpful are indications of parts of the \SpecialChar LyX
 interface you find confusing,
 or unclear.
\end_layout

\begin_layout Standard
\SpecialChar LyX
 has a bug tracking system,
 which you can find at
\begin_inset Newline newline
\end_inset


\begin_inset CommandInset href
LatexCommand href
target "https://www.lyx.org/trac/wiki/BugTrackerHome"

\end_inset

.
 You should check the bug tracker before reporting any bugs,
 in case it has already been reported.
 If you have a comment on an existing bug,
 or wish to report a new bug,
 you may either use the bug tracker,
 or send an e-mail to the development mailing list,
 
\begin_inset CommandInset href
LatexCommand href
target "lyx-devel@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset

.
 Archives of this list are linked from the main \SpecialChar LyX
 website,
 
\begin_inset CommandInset href
LatexCommand href
target "https://www.lyx.org/MailingLists"
literal "false"

\end_inset

.
\end_layout

\begin_layout Standard
A useful bug report will at a minimum include the version of \SpecialChar LyX
 you are having the problem with.
 Accurate,
 detailed descriptions are preferred —
 the more time developers have to spend to pinpoint the source of a bug,
 the less time they have for other improvements.
 Mention the system and system version on which you are running \SpecialChar LyX
.
 Give the versions of the libraries you have installed on your system,
 and,
 if relevant,
 the versions of external programs that \SpecialChar LyX
 uses.
 If it's a compilation or configuration problem,
 include the file 
\family typewriter
config.log
\family default
,
 and mention which compiler you are using.
 Part of this information can be found in 
\family sans
Help\SpecialChar menuseparator
About
\family default
.
\end_layout

\begin_layout Subsubsection
Contributing fixes and new features
\end_layout

\begin_layout Standard
If you have made changes to \SpecialChar LyX
's source that you think should become part of \SpecialChar LyX
,
 send your changes as a diff file (in unified format) to the development list referenced above,
 along with a change log,
 and a description of what your patch does.
\end_layout

\begin_layout Subsection
Contributing to the Documentation
\end_layout

\begin_layout Standard
\SpecialChar LyX
's documentation is extensive;
 however \SpecialChar LyX
 is under constant development,
 and each new release adds new features.
 You may find some documentation needs improvement.
 This section describes what to do if you find an error,
 or have some suggestions for improving the documentation.
\end_layout

\begin_layout Subsubsection
Reporting Errors in the Manuals
\end_layout

\begin_layout Standard
If you find a problem with the documentation,
 send a message to the mailing list 
\begin_inset CommandInset href
LatexCommand href
target "lyx-docs@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset

.
 The documentation team will make any necessary fixes.
\end_layout

\begin_layout Subsubsection
Joining the Documentation Team.
\end_layout

\begin_layout Standard
The \SpecialChar LyX
 Documentation Project,
 like anything else in the \SpecialChar LyX
 project,
 can always use assistance!
 If you're interested in contributing to the Documentation Project,
 you need to do the following:
\end_layout

\begin_layout Enumerate
Get the latest \SpecialChar LyX
 source code from 
\begin_inset Newline newline
\end_inset


\begin_inset CommandInset href
LatexCommand href
target "https://www.lyx.org/trac/browser/lyxgit/lib/doc?rev=master "

\end_inset


\end_layout

\begin_layout Enumerate
Next,
 read the 
\emph on
User's Guide
\emph default
 and the 
\emph on
Tutorial
\emph default
\SpecialChar endofsentence

\begin_inset Newline newline
\end_inset

The point of this exercise is to give you ideas.
 The 
\emph on
Tutorial
\emph default
 and 
\emph on
User's Guide
\emph default
 are likely to be the most up-to-date of all of the documentation.
 You should be able to glean some insights into how we want the manuals to read and to look.
\end_layout

\begin_layout Enumerate
Contact the team at:
\begin_inset Newline newline
\end_inset


\begin_inset CommandInset href
LatexCommand href
target "lyx-docs@lists.lyx.org"
type "mailto:"
literal "false"

\end_inset


\begin_inset Newline newline
\end_inset

to discuss your intended changes and to get some feedback on them.
\end_layout

\begin_layout Standard
The changes you wish to make may range from improving clarity of the text,
 to doing major re-structuring of the documentation.
 Any and all improvements are gladly received.
\end_layout

\end_body
\end_document