-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlicense.lyx
1947 lines (1203 loc) · 38.7 KB
/
license.lyx
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
#LyX file created by tex2lyx 1.6.5
\lyxformat 264
\begin_document
\begin_header
\textclass book
\language english
\inputencoding utf8
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\paperfontsize 12
\spacing single
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\cite_engine basic
\use_bibtopic false
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\papercolumns 1
\papersides 2
\paperpagestyle default
\tracking_changes false
\output_changes false
\end_header
\begin_body
\begin_layout Standard
\align center
Version 1.3, 3 November 2008
\end_layout
\begin_layout Standard
\align center
Copyright
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
copyright
\end_layout
\end_inset
\begin_inset ERT
status collapsed
\begin_layout Standard
{}
\end_layout
\end_inset
2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
\end_layout
\begin_layout Standard
\align center
\begin_inset VSpace bigskip
\end_inset
\end_layout
\begin_layout Standard
\align center
<http://fsf.org/>
\end_layout
\begin_layout Standard
\align center
\begin_inset VSpace bigskip
\end_inset
\end_layout
\begin_layout Standard
\align center
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
\end_layout
\begin_layout Standard
\align center
\series bold
\size large
Preamble
\family default
\series default
\shape default
\end_layout
\begin_layout Standard
The purpose of this License is to make a manual, textbook, or other functional and useful document
\begin_inset Quotes eld
\end_inset
free
\begin_inset Quotes erd
\end_inset
in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.
\end_layout
\begin_layout Standard
This License is a kind of
\begin_inset Quotes eld
\end_inset
copyleft
\begin_inset Quotes erd
\end_inset
, which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.
\end_layout
\begin_layout Standard
We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.
\end_layout
\begin_layout Standard
\align center
\size larger
\series bold
1. APPLICABILITY AND DEFINITIONS
\end_layout
\begin_layout Standard
\align center
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
phantomsection
\end_layout
\end_inset
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
addcontentsline{toc}{section}{
\end_layout
\end_inset
1. APPLICABILITY AND DEFINITIONS
\begin_inset ERT
status collapsed
\begin_layout Standard
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The
\begin_inset Quotes eld
\end_inset
\series bold
Document
\series default
\begin_inset Quotes erd
\end_inset
, below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as
\begin_inset Quotes eld
\end_inset
\series bold
you
\series default
\begin_inset Quotes erd
\end_inset
. You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.
\end_layout
\begin_layout Standard
A
\begin_inset Quotes eld
\end_inset
\series bold
Modified Version
\series default
\begin_inset Quotes erd
\end_inset
of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.
\end_layout
\begin_layout Standard
A
\begin_inset Quotes eld
\end_inset
\series bold
Secondary Section
\series default
\begin_inset Quotes erd
\end_inset
is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.
\end_layout
\begin_layout Standard
The
\begin_inset Quotes eld
\end_inset
\series bold
Invariant Sections
\series default
\begin_inset Quotes erd
\end_inset
are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.
\end_layout
\begin_layout Standard
The
\begin_inset Quotes eld
\end_inset
\series bold
Cover Texts
\series default
\begin_inset Quotes erd
\end_inset
are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.
\end_layout
\begin_layout Standard
A
\begin_inset Quotes eld
\end_inset
\series bold
Transparent
\series default
\begin_inset Quotes erd
\end_inset
copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not
\begin_inset Quotes eld
\end_inset
Transparent
\begin_inset Quotes erd
\end_inset
is called
\begin_inset Quotes eld
\end_inset
\series bold
Opaque
\series default
\begin_inset Quotes erd
\end_inset
.
\end_layout
\begin_layout Standard
Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.
\end_layout
\begin_layout Standard
The
\begin_inset Quotes eld
\end_inset
\series bold
Title Page
\series default
\begin_inset Quotes erd
\end_inset
means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such,
\begin_inset Quotes eld
\end_inset
Title Page
\begin_inset Quotes erd
\end_inset
means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.
\end_layout
\begin_layout Standard
The
\begin_inset Quotes eld
\end_inset
\series bold
publisher
\series default
\begin_inset Quotes erd
\end_inset
means any person or entity that distributes copies of the Document to the public.
\end_layout
\begin_layout Standard
A section
\begin_inset Quotes eld
\end_inset
\series bold
Entitled XYZ
\series default
\begin_inset Quotes erd
\end_inset
means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as
\begin_inset Quotes eld
\end_inset
\series bold
Acknowledgements
\series default
\begin_inset Quotes erd
\end_inset
,
\begin_inset Quotes eld
\end_inset
\series bold
Dedications
\series default
\begin_inset Quotes erd
\end_inset
,
\begin_inset Quotes eld
\end_inset
\series bold
Endorsements
\series default
\begin_inset Quotes erd
\end_inset
, or
\begin_inset Quotes eld
\end_inset
\series bold
History
\series default
\begin_inset Quotes erd
\end_inset
.) To
\begin_inset Quotes eld
\end_inset
\series bold
Preserve the Title
\series default
\begin_inset Quotes erd
\end_inset
of such a section when you modify the Document means that it remains a section
\begin_inset Quotes eld
\end_inset
Entitled XYZ
\begin_inset Quotes erd
\end_inset
according to this definition.
\end_layout
\begin_layout Standard
The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.
\end_layout
\begin_layout Standard
\align center
\size larger
\series bold
2. VERBATIM COPYING
\end_layout
\begin_layout Standard
\align center
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
phantomsection
\end_layout
\end_inset
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
addcontentsline{toc}{section}{
\end_layout
\end_inset
2. VERBATIM COPYING
\begin_inset ERT
status collapsed
\begin_layout Standard
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section\InsetSpace ~
3.
\end_layout
\begin_layout Standard
You may also lend copies, under the same conditions stated above, and you may publicly display copies.
\end_layout
\begin_layout Standard
\align center
\size larger
\series bold
3. COPYING IN QUANTITY
\end_layout
\begin_layout Standard
\align center
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
phantomsection
\end_layout
\end_inset
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
addcontentsline{toc}{section}{
\end_layout
\end_inset
3. COPYING IN QUANTITY
\begin_inset ERT
status collapsed
\begin_layout Standard
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.
\end_layout
\begin_layout Standard
If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.
\end_layout
\begin_layout Standard
If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.
\end_layout
\begin_layout Standard
It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.
\end_layout
\begin_layout Standard
\align center
\size larger
\series bold
4. MODIFICATIONS
\end_layout
\begin_layout Standard
\align center
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
phantomsection
\end_layout
\end_inset
\begin_inset ERT
status collapsed
\begin_layout Standard
\backslash
addcontentsline{toc}{section}{
\end_layout
\end_inset
4. MODIFICATIONS
\begin_inset ERT
status collapsed
\begin_layout Standard
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
A.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
B.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
C.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
State on the Title page the name of the publisher of the Modified Version, as the publisher.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
D.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Preserve all the copyright notices of the Document.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
E.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Add an appropriate copyright notice for your modifications adjacent to the other copyright notices.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
F.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
G.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
H.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Include an unaltered copy of this License.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
I.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Preserve the section Entitled
\begin_inset Quotes eld
\end_inset
History
\begin_inset Quotes erd
\end_inset
, Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled
\begin_inset Quotes eld
\end_inset
History
\begin_inset Quotes erd
\end_inset
in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
J.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the
\begin_inset Quotes eld
\end_inset
History
\begin_inset Quotes erd
\end_inset
section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission.
\end_layout
\begin_layout Itemize
\begin_inset ERT
status collapsed
\begin_layout Standard
[
\end_layout
\end_inset
K.
\begin_inset ERT
status collapsed
\begin_layout Standard
]
\end_layout
\end_inset
For any section Entitled
\begin_inset Quotes eld
\end_inset
Acknowledgements
\begin_inset Quotes erd
\end_inset
or
\begin_inset Quotes eld
\end_inset