blob: a8b18ed5d71e66fb411d71bc692f5329e5d39465 (
plain) (
blame)
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
|
bin/lyx
bin/lyxclient
bin/tex2lyx
%%NLS%%share/locale/ar/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/ca/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/cs/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/de/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/el/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/en/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/es/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/eu/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/fi/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/fr/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/gl/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/he/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/hu/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/id/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/it/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/ja/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/nb/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/nn/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/pl/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/pt/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/ro/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/ru/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/sk/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/tr/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/uk/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/lyx.mo
%%NLS%%share/locale/zh_TW/LC_MESSAGES/lyx.mo
%%DATADIR%%/CREDITS
%%DATADIR%%/bind/aqua.bind
%%DATADIR%%/bind/broadway.bind
%%DATADIR%%/bind/cua.bind
%%DATADIR%%/bind/cyrkeys.bind
%%DATADIR%%/bind/de/menus.bind
%%DATADIR%%/bind/emacs.bind
%%DATADIR%%/bind/fi/menus.bind
%%DATADIR%%/bind/greekkeys.bind
%%DATADIR%%/bind/hollywood.bind
%%DATADIR%%/bind/latinkeys.bind
%%DATADIR%%/bind/mac.bind
%%DATADIR%%/bind/math.bind
%%DATADIR%%/bind/menus.bind
%%DATADIR%%/bind/pt/menus.bind
%%DATADIR%%/bind/sciword.bind
%%DATADIR%%/bind/site.bind
%%DATADIR%%/bind/sv/menus.bind
%%DATADIR%%/bind/xemacs.bind
%%DATADIR%%/chkconfig.ltx
%%DATADIR%%/commands/default.def
%%DATADIR%%/configure.py
%%DATADIR%%/configure.pyc
%%DATADIR%%/configure.pyo
%%DATADIR%%/doc/Customization.lyx
%%DATADIR%%/doc/DummyDocument1.lyx
%%DATADIR%%/doc/DummyDocument2.lyx
%%DATADIR%%/doc/DummyTextDocument.txt
%%DATADIR%%/doc/EmbeddedObjects.lyx
%%DATADIR%%/doc/Extended.lyx
%%DATADIR%%/doc/Formula-numbering.lyx
%%DATADIR%%/doc/Intro.lyx
%%DATADIR%%/doc/LFUNs.lyx
%%DATADIR%%/doc/LaTeXConfig.lyx
%%DATADIR%%/doc/Math.lyx
%%DATADIR%%/doc/Shortcuts.lyx
%%DATADIR%%/doc/Tutorial.lyx
%%DATADIR%%/doc/UserGuide.lyx
%%DATADIR%%/doc/biblio/LyXDocs.bib
%%DATADIR%%/doc/biblio/alphadin.bst
%%DATADIR%%/doc/ca/Intro.lyx
%%DATADIR%%/doc/clipart/Abstract.pdf
%%DATADIR%%/doc/clipart/BoxInsetDefaultQt4.png
%%DATADIR%%/doc/clipart/ChangesToolbar.png
%%DATADIR%%/doc/clipart/ChildDocumentQt4.png
%%DATADIR%%/doc/clipart/CommentNoteImageQt4.png
%%DATADIR%%/doc/clipart/ERT.png
%%DATADIR%%/doc/clipart/ExternalMaterialQt4.png
%%DATADIR%%/doc/clipart/ExtraToolbar.png
%%DATADIR%%/doc/clipart/GreyedOutNoteImageQt4.png
%%DATADIR%%/doc/clipart/LaTeX.png
%%DATADIR%%/doc/clipart/LyXNoteImageQt4.png
%%DATADIR%%/doc/clipart/MacroToolbar.png
%%DATADIR%%/doc/clipart/SpaceMarker.png
%%DATADIR%%/doc/clipart/StandardToolbar.png
%%DATADIR%%/doc/clipart/ToolbarEnvBox.png
%%DATADIR%%/doc/clipart/ViewToolbar.png
%%DATADIR%%/doc/clipart/endnotes.pdf
%%DATADIR%%/doc/clipart/escher-lsd.eps
%%DATADIR%%/doc/clipart/floatQt4.png
%%DATADIR%%/doc/clipart/footnoteQt4.png
%%DATADIR%%/doc/clipart/labelQt4.png
%%DATADIR%%/doc/clipart/macrobox.png
%%DATADIR%%/doc/clipart/macrouse.png
%%DATADIR%%/doc/clipart/mbox.png
%%DATADIR%%/doc/clipart/mobius.eps
%%DATADIR%%/doc/clipart/platypus.eps
%%DATADIR%%/doc/clipart/referenceQt4.png
%%DATADIR%%/doc/clipart/with_fntright.pdf
%%DATADIR%%/doc/clipart/without_fntright.pdf
%%DATADIR%%/doc/cs/Tutorial.lyx
%%DATADIR%%/doc/da/Intro.lyx
%%DATADIR%%/doc/de/Customization.lyx
%%DATADIR%%/doc/de/DummyDocument1.lyx
%%DATADIR%%/doc/de/DummyDocument2.lyx
%%DATADIR%%/doc/de/DummyTextDocument.txt
%%DATADIR%%/doc/de/EmbeddedObjects.lyx
%%DATADIR%%/doc/de/Extended.lyx
%%DATADIR%%/doc/de/Formelnummerierung.lyx
%%DATADIR%%/doc/de/Intro.lyx
%%DATADIR%%/doc/de/Math.lyx
%%DATADIR%%/doc/de/Shortcuts.lyx
%%DATADIR%%/doc/de/Tutorial.lyx
%%DATADIR%%/doc/de/UserGuide.lyx
%%DATADIR%%/doc/de/clipart/ERT.png
%%DATADIR%%/doc/de/clipart/ExternesMaterialQt4.png
%%DATADIR%%/doc/de/clipart/FussnoteQt4.png
%%DATADIR%%/doc/de/clipart/GleitobjektQt4.png
%%DATADIR%%/doc/de/clipart/GrauschriftNotizQt4.png
%%DATADIR%%/doc/de/clipart/KommentarQt4.png
%%DATADIR%%/doc/de/clipart/LyXNotizQt4.png
%%DATADIR%%/doc/de/clipart/Marke.png
%%DATADIR%%/doc/de/clipart/Querverweis.png
%%DATADIR%%/doc/de/clipart/StandardBoxQt4.png
%%DATADIR%%/doc/de/clipart/UnterdokumentQt4.png
%%DATADIR%%/doc/es/Customization.lyx
%%DATADIR%%/doc/es/DocumentoPostizo1.lyx
%%DATADIR%%/doc/es/DocumentoPostizo2.lyx
%%DATADIR%%/doc/es/DocumentoTextoPostizo.txt
%%DATADIR%%/doc/es/EmbeddedObjects.lyx
%%DATADIR%%/doc/es/Extended.lyx
%%DATADIR%%/doc/es/Formula-numbering.lyx
%%DATADIR%%/doc/es/Intro.lyx
%%DATADIR%%/doc/es/Math.lyx
%%DATADIR%%/doc/es/Shortcuts.lyx
%%DATADIR%%/doc/es/Tutorial.lyx
%%DATADIR%%/doc/es/UserGuide.lyx
%%DATADIR%%/doc/es/clipart/ComentNotaImagenQt4.png
%%DATADIR%%/doc/es/clipart/CuadroMinipagQt4.png
%%DATADIR%%/doc/es/clipart/DocumentoHijoQt4.png
%%DATADIR%%/doc/es/clipart/GrisNotaImagenQt4.png
%%DATADIR%%/doc/es/clipart/MaterialExternoQt4.png
%%DATADIR%%/doc/es/clipart/NotaLyXImagenQt4.png
%%DATADIR%%/doc/es/clipart/Resumen.pdf
%%DATADIR%%/doc/es/clipart/es_ERT.png
%%DATADIR%%/doc/es/clipart/es_ToolbarEnvBox.png
%%DATADIR%%/doc/es/clipart/etiquetaQt4.png
%%DATADIR%%/doc/es/clipart/flotanteQt4.png
%%DATADIR%%/doc/es/clipart/notapieQt4.png
%%DATADIR%%/doc/es/clipart/referenciaQt4.png
%%DATADIR%%/doc/eu/Customization.lyx
%%DATADIR%%/doc/eu/Extended.lyx
%%DATADIR%%/doc/eu/Intro.lyx
%%DATADIR%%/doc/eu/Tutorial.lyx
%%DATADIR%%/doc/eu/UserGuide.lyx
%%DATADIR%%/doc/fr/Customization.lyx
%%DATADIR%%/doc/fr/DocumentBidon1.lyx
%%DATADIR%%/doc/fr/DocumentBidon2.lyx
%%DATADIR%%/doc/fr/DocumentTexteBidon.txt
%%DATADIR%%/doc/fr/EmbeddedObjects.lyx
%%DATADIR%%/doc/fr/Extended.lyx
%%DATADIR%%/doc/fr/Formula-numbering.lyx
%%DATADIR%%/doc/fr/Intro.lyx
%%DATADIR%%/doc/fr/Math.lyx
%%DATADIR%%/doc/fr/Shortcuts.lyx
%%DATADIR%%/doc/fr/Tutorial.lyx
%%DATADIR%%/doc/fr/UserGuide.lyx
%%DATADIR%%/doc/fr/clipart/BoxInsetDefaultQt4.png
%%DATADIR%%/doc/fr/clipart/ChildDocumentQt4.png
%%DATADIR%%/doc/fr/clipart/CommentNoteImageQt4.png
%%DATADIR%%/doc/fr/clipart/GreyedOutNoteImageQt4.png
%%DATADIR%%/doc/fr/clipart/LyXNoteImageQt4.png
%%DATADIR%%/doc/fr/clipart/floatQt4.png
%%DATADIR%%/doc/fr/clipart/footnoteQt4.png
%%DATADIR%%/doc/fr/clipart/labelQt4.png
%%DATADIR%%/doc/gl/Intro.lyx
%%DATADIR%%/doc/gl/Tutorial.lyx
%%DATADIR%%/doc/he/Intro.lyx
%%DATADIR%%/doc/he/Tutorial.lyx
%%DATADIR%%/doc/hu/Intro.lyx
%%DATADIR%%/doc/hu/Tutorial.lyx
%%DATADIR%%/doc/id/Intro.lyx
%%DATADIR%%/doc/id/Tutorial.lyx
%%DATADIR%%/doc/id/clipart/id-contrib.png
%%DATADIR%%/doc/id/clipart/id-footnote.png
%%DATADIR%%/doc/id/clipart/id-lingkungan.png
%%DATADIR%%/doc/it/Customization.lyx
%%DATADIR%%/doc/it/Intro.lyx
%%DATADIR%%/doc/it/Tutorial.lyx
%%DATADIR%%/doc/it/UserGuide.lyx
%%DATADIR%%/doc/it/clipart/it_footnoteQt4.png
%%DATADIR%%/doc/it/clipart/it_referenceQt4.png
%%DATADIR%%/doc/ja/Customization.lyx
%%DATADIR%%/doc/ja/DummyDocument1.lyx
%%DATADIR%%/doc/ja/DummyDocument2.lyx
%%DATADIR%%/doc/ja/EmbeddedObjects.lyx
%%DATADIR%%/doc/ja/Extended.lyx
%%DATADIR%%/doc/ja/Formula-numbering.lyx
%%DATADIR%%/doc/ja/Intro.lyx
%%DATADIR%%/doc/ja/LaTeXConfig.lyx
%%DATADIR%%/doc/ja/Math.lyx
%%DATADIR%%/doc/ja/Shortcuts.lyx
%%DATADIR%%/doc/ja/Tutorial.lyx
%%DATADIR%%/doc/ja/UserGuide.lyx
%%DATADIR%%/doc/ja/clipart/ChildDocumentQt4.png
%%DATADIR%%/doc/ja/clipart/ERT.png
%%DATADIR%%/doc/ja/clipart/ExternalMaterialQt4.png
%%DATADIR%%/doc/ja/clipart/ToolbarEnvBox.png
%%DATADIR%%/doc/ja/clipart/floatQt4.png
%%DATADIR%%/doc/ja/clipart/footnoteQt4.png
%%DATADIR%%/doc/ja/clipart/referenceQt4.png
%%DATADIR%%/doc/nb/Intro.lyx
%%DATADIR%%/doc/nl/Intro.lyx
%%DATADIR%%/doc/nl/Tutorial.lyx
%%DATADIR%%/doc/pl/Extended.lyx
%%DATADIR%%/doc/pl/Intro.lyx
%%DATADIR%%/doc/pl/Tutorial.lyx
%%DATADIR%%/doc/pt/Intro.lyx
%%DATADIR%%/doc/pt/Tutorial.lyx
%%DATADIR%%/doc/ro/Intro.lyx
%%DATADIR%%/doc/ru/Intro.lyx
%%DATADIR%%/doc/ru/Tutorial.lyx
%%DATADIR%%/doc/sk/Intro.lyx
%%DATADIR%%/doc/sk/Tutorial.lyx
%%DATADIR%%/doc/sk/UserGuide.lyx
%%DATADIR%%/doc/sl/Intro.lyx
%%DATADIR%%/doc/sl/Tutorial.lyx
%%DATADIR%%/doc/sv/Intro.lyx
%%DATADIR%%/doc/sv/Tutorial.lyx
%%DATADIR%%/doc/uk/Intro.lyx
%%DATADIR%%/doc/uk/clipart/FootnoteQT4.png
%%DATADIR%%/doc/zh_CN/Intro.lyx
%%DATADIR%%/doc/zh_CN/Tutorial.lyx
%%DATADIR%%/encodings
%%DATADIR%%/examples/Braille.lyx
%%DATADIR%%/examples/CV-image.eps
%%DATADIR%%/examples/CV-image.png
%%DATADIR%%/examples/Foils.lyx
%%DATADIR%%/examples/ItemizeBullets.lyx
%%DATADIR%%/examples/Literate.lyx
%%DATADIR%%/examples/aa_sample.lyx
%%DATADIR%%/examples/aas_sample.lyx
%%DATADIR%%/examples/achemso.lyx
%%DATADIR%%/examples/addressExample.adr
%%DATADIR%%/examples/amsart-test.lyx
%%DATADIR%%/examples/amsbook-test.lyx
%%DATADIR%%/examples/armenian-article.lyx
%%DATADIR%%/examples/beamer-g4-mask.jpg
%%DATADIR%%/examples/beamer-g4.jpg
%%DATADIR%%/examples/beamer-icsi-logo.pdf
%%DATADIR%%/examples/beamer-knight1-mask.png
%%DATADIR%%/examples/beamer-knight1.png
%%DATADIR%%/examples/beamer-knight2-mask.png
%%DATADIR%%/examples/beamer-knight2.png
%%DATADIR%%/examples/beamer-knight3-mask.png
%%DATADIR%%/examples/beamer-knight3.png
%%DATADIR%%/examples/beamer-knight4-mask.png
%%DATADIR%%/examples/beamer-knight4.png
%%DATADIR%%/examples/beamerlyxexample1.lyx
%%DATADIR%%/examples/biblioExample.bib
%%DATADIR%%/examples/ca/ItemizeBullets.lyx
%%DATADIR%%/examples/ca/mathed.lyx
%%DATADIR%%/examples/ca/splash.lyx
%%DATADIR%%/examples/chess-article.lyx
%%DATADIR%%/examples/chessgame.lyx
%%DATADIR%%/examples/cs/splash.lyx
%%DATADIR%%/examples/da/splash.lyx
%%DATADIR%%/examples/de/Braille.lyx
%%DATADIR%%/examples/de/Dezimal.lyx
%%DATADIR%%/examples/de/ItemizeBullets.lyx
%%DATADIR%%/examples/de/Lebenslauf.lyx
%%DATADIR%%/examples/de/beispiel_gelyxt.lyx
%%DATADIR%%/examples/de/beispiel_roh.lyx
%%DATADIR%%/examples/de/linguistics.lyx
%%DATADIR%%/examples/de/multicol.lyx
%%DATADIR%%/examples/de/serienbrief1.lyx
%%DATADIR%%/examples/de/serienbrief2.lyx
%%DATADIR%%/examples/de/serienbrief3.lyx
%%DATADIR%%/examples/de/splash.lyx
%%DATADIR%%/examples/de/tufte-handout.lyx
%%DATADIR%%/examples/docbook_article.lyx
%%DATADIR%%/examples/es/Braille.lyx
%%DATADIR%%/examples/es/ItemizeBullets.lyx
%%DATADIR%%/examples/es/beamer-conference-ornate20min.lyx
%%DATADIR%%/examples/es/ejemplo_con_lyx.lyx
%%DATADIR%%/examples/es/ejemplo_sin_lyx.lyx
%%DATADIR%%/examples/es/linguistics.lyx
%%DATADIR%%/examples/es/multicol.lyx
%%DATADIR%%/examples/es/splash.lyx
%%DATADIR%%/examples/es/tufte-book.lyx
%%DATADIR%%/examples/es/tufte-handout.lyx
%%DATADIR%%/examples/eu/adibide_gordina.lyx
%%DATADIR%%/examples/eu/adibide_lyx-atua.lyx
%%DATADIR%%/examples/eu/splash.lyx
%%DATADIR%%/examples/europeCV.lyx
%%DATADIR%%/examples/example_lyxified.lyx
%%DATADIR%%/examples/example_raw.lyx
%%DATADIR%%/examples/fa/splash.lyx
%%DATADIR%%/examples/fr/AlignementDecimal.lyx
%%DATADIR%%/examples/fr/Braille.lyx
%%DATADIR%%/examples/fr/Foils.lyx
%%DATADIR%%/examples/fr/ListesPuces.lyx
%%DATADIR%%/examples/fr/exemple-powerdot.lyx
%%DATADIR%%/examples/fr/exemple_brut.lyx
%%DATADIR%%/examples/fr/exemple_lyxifie.lyx
%%DATADIR%%/examples/fr/linguistics.lyx
%%DATADIR%%/examples/fr/multicol.lyx
%%DATADIR%%/examples/fr/seminar.lyx
%%DATADIR%%/examples/fr/simplecv.lyx
%%DATADIR%%/examples/fr/splash.lyx
%%DATADIR%%/examples/fr/xyfigure.png
%%DATADIR%%/examples/fr/xypic.lyx
%%DATADIR%%/examples/gl/exemplo_bruto.lyx
%%DATADIR%%/examples/gl/exemplo_lyxificado.lyx
%%DATADIR%%/examples/gl/splash.lyx
%%DATADIR%%/examples/he/example_lyxified.lyx
%%DATADIR%%/examples/he/example_raw.lyx
%%DATADIR%%/examples/he/splash.lyx
%%DATADIR%%/examples/hu/example_lyxified.lyx
%%DATADIR%%/examples/hu/example_raw.lyx
%%DATADIR%%/examples/hu/splash.lyx
%%DATADIR%%/examples/id/splash.lyx
%%DATADIR%%/examples/iecc05.fen
%%DATADIR%%/examples/iecc07.fen
%%DATADIR%%/examples/iecc12.fen
%%DATADIR%%/examples/it/ItemizeBullets.lyx
%%DATADIR%%/examples/it/splash.lyx
%%DATADIR%%/examples/ja/Braille.lyx
%%DATADIR%%/examples/ja/linguistics.lyx
%%DATADIR%%/examples/ja/multicol.lyx
%%DATADIR%%/examples/ja/splash.lyx
%%DATADIR%%/examples/ja/xyfigure.png
%%DATADIR%%/examples/ja/xypic.lyx
%%DATADIR%%/examples/landslide.lyx
%%DATADIR%%/examples/linguistics.lyx
%%DATADIR%%/examples/listerrors.lyx
%%DATADIR%%/examples/modernCV.lyx
%%DATADIR%%/examples/multicol.lyx
%%DATADIR%%/examples/nl/multicol.lyx
%%DATADIR%%/examples/nl/opsommingstekens.lyx
%%DATADIR%%/examples/nl/splash.lyx
%%DATADIR%%/examples/nl/voorbeeld_ruw.lyx
%%DATADIR%%/examples/nl/voorbeeld_verlyxt.lyx
%%DATADIR%%/examples/noweb2lyx.lyx
%%DATADIR%%/examples/pl/splash.lyx
%%DATADIR%%/examples/powerdot-example.lyx
%%DATADIR%%/examples/pt/splash.lyx
%%DATADIR%%/examples/recipebook.lyx
%%DATADIR%%/examples/ro/splash.lyx
%%DATADIR%%/examples/ru/splash.lyx
%%DATADIR%%/examples/script_form.lyx
%%DATADIR%%/examples/seminar.lyx
%%DATADIR%%/examples/serial_letter1.lyx
%%DATADIR%%/examples/serial_letter2.lyx
%%DATADIR%%/examples/serial_letter3.lyx
%%DATADIR%%/examples/simplecv.lyx
%%DATADIR%%/examples/sk/splash.lyx
%%DATADIR%%/examples/sl/primer_lyxan.lyx
%%DATADIR%%/examples/sl/primer_surov.lyx
%%DATADIR%%/examples/sl/splash.lyx
%%DATADIR%%/examples/splash.lyx
%%DATADIR%%/examples/tufte-book.lyx
%%DATADIR%%/examples/tufte-handout.lyx
%%DATADIR%%/examples/uk/splash.lyx
%%DATADIR%%/examples/xyfigure.png
%%DATADIR%%/examples/xypic.lyx
%%DATADIR%%/external_templates
%%DATADIR%%/fonts/BaKoMaFontLicense.txt
%%DATADIR%%/fonts/ReadmeBaKoMa4LyX.txt
%%DATADIR%%/fonts/cmex10.ttf
%%DATADIR%%/fonts/cmmi10.ttf
%%DATADIR%%/fonts/cmr10.ttf
%%DATADIR%%/fonts/cmsy10.ttf
%%DATADIR%%/fonts/esint10.ttf
%%DATADIR%%/fonts/eufm10.ttf
%%DATADIR%%/fonts/msam10.ttf
%%DATADIR%%/fonts/msbm10.ttf
%%DATADIR%%/fonts/wasy10.ttf
%%DATADIR%%/images/all-changes-accept.png
%%DATADIR%%/images/all-changes-reject.png
%%DATADIR%%/images/amssymb.png
%%DATADIR%%/images/banner.png
%%DATADIR%%/images/bookmark-goto.png
%%DATADIR%%/images/bookmark-goto_0.png
%%DATADIR%%/images/bookmark-save.png
%%DATADIR%%/images/box-insert.png
%%DATADIR%%/images/break-line.png
%%DATADIR%%/images/buffer-close.png
%%DATADIR%%/images/buffer-export_dvi.png
%%DATADIR%%/images/buffer-export_latex.png
%%DATADIR%%/images/buffer-export_pdf2.png
%%DATADIR%%/images/buffer-export_ps.png
%%DATADIR%%/images/buffer-export_text.png
%%DATADIR%%/images/buffer-new.png
%%DATADIR%%/images/buffer-reload.png
%%DATADIR%%/images/buffer-update_dvi.png
%%DATADIR%%/images/buffer-update_pdf2.png
%%DATADIR%%/images/buffer-update_ps.png
%%DATADIR%%/images/buffer-view_dvi.png
%%DATADIR%%/images/buffer-view_pdf2.png
%%DATADIR%%/images/buffer-view_ps.png
%%DATADIR%%/images/buffer-write-as.png
%%DATADIR%%/images/buffer-write.png
%%DATADIR%%/images/build-program.png
%%DATADIR%%/images/change-accept.png
%%DATADIR%%/images/change-next.png
%%DATADIR%%/images/change-reject.png
%%DATADIR%%/images/changes-merge.png
%%DATADIR%%/images/changes-output.png
%%DATADIR%%/images/changes-track.png
%%DATADIR%%/images/close-tab-group.png
%%DATADIR%%/images/closetab.png
%%DATADIR%%/images/copy.png
%%DATADIR%%/images/cut.png
%%DATADIR%%/images/demote.png
%%DATADIR%%/images/depth-decrement.png
%%DATADIR%%/images/depth-increment.png
%%DATADIR%%/images/dialog-preferences.png
%%DATADIR%%/images/dialog-show-new-inset_citation.png
%%DATADIR%%/images/dialog-show-new-inset_graphics.png
%%DATADIR%%/images/dialog-show-new-inset_include.png
%%DATADIR%%/images/dialog-show-new-inset_ref.png
%%DATADIR%%/images/dialog-show_character.png
%%DATADIR%%/images/dialog-show_findreplace.png
%%DATADIR%%/images/dialog-show_mathdelimiter.png
%%DATADIR%%/images/dialog-show_mathmatrix.png
%%DATADIR%%/images/dialog-show_print.png
%%DATADIR%%/images/dialog-show_spellchecker.png
%%DATADIR%%/images/dialog-show_vclog.png
%%DATADIR%%/images/dialog-toggle_toc.png
%%DATADIR%%/images/down.png
%%DATADIR%%/images/ert-insert.png
%%DATADIR%%/images/file-open.png
%%DATADIR%%/images/float-insert_figure.png
%%DATADIR%%/images/float-insert_table.png
%%DATADIR%%/images/font-bold.png
%%DATADIR%%/images/font-emph.png
%%DATADIR%%/images/font-noun.png
%%DATADIR%%/images/font-sans.png
%%DATADIR%%/images/footnote-insert.png
%%DATADIR%%/images/hidetab.png
%%DATADIR%%/images/href-insert.png
%%DATADIR%%/images/index-insert.png
%%DATADIR%%/images/label-insert.png
%%DATADIR%%/images/layout-document.png
%%DATADIR%%/images/layout-paragraph.png
%%DATADIR%%/images/layout.png
%%DATADIR%%/images/layout_Description.png
%%DATADIR%%/images/layout_Enumerate.png
%%DATADIR%%/images/layout_Itemize.png
%%DATADIR%%/images/layout_List.png
%%DATADIR%%/images/layout_LyX-Code.png
%%DATADIR%%/images/layout_Scrap.png
%%DATADIR%%/images/layout_Section.png
%%DATADIR%%/images/lyx-quit.png
%%DATADIR%%/images/lyx.png
%%DATADIR%%/images/marginalnote-insert.png
%%DATADIR%%/images/math-display.png
%%DATADIR%%/images/math-macro-add-greedy-optional-param.png
%%DATADIR%%/images/math-macro-add-optional-param.png
%%DATADIR%%/images/math-macro-add-param.png
%%DATADIR%%/images/math-macro-append-greedy-param.png
%%DATADIR%%/images/math-macro-make-nonoptional.png
%%DATADIR%%/images/math-macro-make-optional.png
%%DATADIR%%/images/math-macro-remove-greedy-param.png
%%DATADIR%%/images/math-macro-remove-optional-param.png
%%DATADIR%%/images/math-macro-remove-param.png
%%DATADIR%%/images/math-macro_newmacroname_newcommand.png
%%DATADIR%%/images/math-matrix.png
%%DATADIR%%/images/math-mode.png
%%DATADIR%%/images/math-subscript.png
%%DATADIR%%/images/math-superscript.png
%%DATADIR%%/images/math/Bbbk.png
%%DATADIR%%/images/math/Finv.png
%%DATADIR%%/images/math/Game.png
%%DATADIR%%/images/math/Im.png
%%DATADIR%%/images/math/Lleftarrow.png
%%DATADIR%%/images/math/Lsh.png
%%DATADIR%%/images/math/Re.png
%%DATADIR%%/images/math/Rrightarrow.png
%%DATADIR%%/images/math/Rsh.png
%%DATADIR%%/images/math/Vvdash.png
%%DATADIR%%/images/math/acute.png
%%DATADIR%%/images/math/aleph.png
%%DATADIR%%/images/math/alpha.png
%%DATADIR%%/images/math/amalg.png
%%DATADIR%%/images/math/angle.png
%%DATADIR%%/images/math/approx.png
%%DATADIR%%/images/math/approxeq.png
%%DATADIR%%/images/math/asymp.png
%%DATADIR%%/images/math/backepsilon.png
%%DATADIR%%/images/math/backprime.png
%%DATADIR%%/images/math/backsim.png
%%DATADIR%%/images/math/backsimeq.png
%%DATADIR%%/images/math/backslash.png
%%DATADIR%%/images/math/bar.png
%%DATADIR%%/images/math/bars.png
%%DATADIR%%/images/math/barwedge.png
%%DATADIR%%/images/math/because.png
%%DATADIR%%/images/math/beta.png
%%DATADIR%%/images/math/beth.png
%%DATADIR%%/images/math/between.png
%%DATADIR%%/images/math/bigcap.png
%%DATADIR%%/images/math/bigcirc.png
%%DATADIR%%/images/math/bigcup.png
%%DATADIR%%/images/math/bigodot.png
%%DATADIR%%/images/math/bigoplus.png
%%DATADIR%%/images/math/bigotimes.png
%%DATADIR%%/images/math/bigsqcup.png
%%DATADIR%%/images/math/bigstar.png
%%DATADIR%%/images/math/bigtriangledown.png
%%DATADIR%%/images/math/bigtriangleup.png
%%DATADIR%%/images/math/biguplus.png
%%DATADIR%%/images/math/bigvee.png
%%DATADIR%%/images/math/bigwedge.png
%%DATADIR%%/images/math/blacklozenge.png
%%DATADIR%%/images/math/blacksquare.png
%%DATADIR%%/images/math/blacktriangle.png
%%DATADIR%%/images/math/blacktriangledown.png
%%DATADIR%%/images/math/blacktriangleleft.png
%%DATADIR%%/images/math/blacktriangleright.png
%%DATADIR%%/images/math/bot.png
%%DATADIR%%/images/math/bowtie.png
%%DATADIR%%/images/math/boxdot.png
%%DATADIR%%/images/math/boxminus.png
%%DATADIR%%/images/math/boxplus.png
%%DATADIR%%/images/math/boxtimes.png
%%DATADIR%%/images/math/breve.png
%%DATADIR%%/images/math/bullet.png
%%DATADIR%%/images/math/bumpeq.png
%%DATADIR%%/images/math/bumpeq2.png
%%DATADIR%%/images/math/cap.png
%%DATADIR%%/images/math/cap2.png
%%DATADIR%%/images/math/cases.png
%%DATADIR%%/images/math/cdot.png
%%DATADIR%%/images/math/cdots.png
%%DATADIR%%/images/math/centerdot.png
%%DATADIR%%/images/math/check.png
%%DATADIR%%/images/math/chi.png
%%DATADIR%%/images/math/circ.png
%%DATADIR%%/images/math/circeq.png
%%DATADIR%%/images/math/circlearrowleft.png
%%DATADIR%%/images/math/circlearrowright.png
%%DATADIR%%/images/math/circledS.png
%%DATADIR%%/images/math/circledast.png
%%DATADIR%%/images/math/circledcirc.png
%%DATADIR%%/images/math/circleddash.png
%%DATADIR%%/images/math/clubsuit.png
%%DATADIR%%/images/math/complement.png
%%DATADIR%%/images/math/cong.png
%%DATADIR%%/images/math/coprod.png
%%DATADIR%%/images/math/cup.png
%%DATADIR%%/images/math/cup2.png
%%DATADIR%%/images/math/curlyeqprec.png
%%DATADIR%%/images/math/curlyeqsucc.png
%%DATADIR%%/images/math/curlyvee.png
%%DATADIR%%/images/math/curlywedge.png
%%DATADIR%%/images/math/curvearrowleft.png
%%DATADIR%%/images/math/curvearrowright.png
%%DATADIR%%/images/math/dagger.png
%%DATADIR%%/images/math/daleth.png
%%DATADIR%%/images/math/dashleftarrow.png
%%DATADIR%%/images/math/dashrightarrow.png
%%DATADIR%%/images/math/dashv.png
%%DATADIR%%/images/math/ddagger.png
%%DATADIR%%/images/math/ddot.png
%%DATADIR%%/images/math/ddots.png
%%DATADIR%%/images/math/delim.png
%%DATADIR%%/images/math/delta.png
%%DATADIR%%/images/math/delta2.png
%%DATADIR%%/images/math/diagdown.png
%%DATADIR%%/images/math/diagup.png
%%DATADIR%%/images/math/diamond.png
%%DATADIR%%/images/math/diamond2.png
%%DATADIR%%/images/math/diamondsuit.png
%%DATADIR%%/images/math/digamma.png
%%DATADIR%%/images/math/div.png
%%DATADIR%%/images/math/divideontimes.png
%%DATADIR%%/images/math/dot.png
%%DATADIR%%/images/math/doteq.png
%%DATADIR%%/images/math/doteqdot.png
%%DATADIR%%/images/math/dotplus.png
%%DATADIR%%/images/math/dotsint.png
%%DATADIR%%/images/math/dotsintop.png
%%DATADIR%%/images/math/doublebarwedge.png
%%DATADIR%%/images/math/downarrow.png
%%DATADIR%%/images/math/downarrow2.png
%%DATADIR%%/images/math/downdownarrows.png
%%DATADIR%%/images/math/downharpoonleft.png
%%DATADIR%%/images/math/downharpoonright.png
%%DATADIR%%/images/math/ell.png
%%DATADIR%%/images/math/empty.png
%%DATADIR%%/images/math/emptyset.png
%%DATADIR%%/images/math/epsilon.png
%%DATADIR%%/images/math/eqcirc.png
%%DATADIR%%/images/math/eqslantgtr.png
%%DATADIR%%/images/math/eqslantless.png
%%DATADIR%%/images/math/equation.png
%%DATADIR%%/images/math/equiv.png
%%DATADIR%%/images/math/eta.png
%%DATADIR%%/images/math/eth.png
%%DATADIR%%/images/math/exists.png
%%DATADIR%%/images/math/fallingdotseq.png
%%DATADIR%%/images/math/fint.png
%%DATADIR%%/images/math/fintop.png
%%DATADIR%%/images/math/flat.png
%%DATADIR%%/images/math/font.png
%%DATADIR%%/images/math/forall.png
%%DATADIR%%/images/math/frac-square.png
%%DATADIR%%/images/math/frac.png
%%DATADIR%%/images/math/frown.png
%%DATADIR%%/images/math/functions.png
%%DATADIR%%/images/math/gamma.png
%%DATADIR%%/images/math/gamma2.png
%%DATADIR%%/images/math/geq.png
%%DATADIR%%/images/math/geqq.png
%%DATADIR%%/images/math/geqslant.png
%%DATADIR%%/images/math/gg.png
%%DATADIR%%/images/math/ggg.png
%%DATADIR%%/images/math/gimel.png
%%DATADIR%%/images/math/gnapprox.png
%%DATADIR%%/images/math/gneq.png
%%DATADIR%%/images/math/gneqq.png
%%DATADIR%%/images/math/gnsim.png
%%DATADIR%%/images/math/grave.png
%%DATADIR%%/images/math/gtrapprox.png
%%DATADIR%%/images/math/gtrdot.png
%%DATADIR%%/images/math/gtreqless.png
%%DATADIR%%/images/math/gtreqqless.png
%%DATADIR%%/images/math/gtrless.png
%%DATADIR%%/images/math/gtrsim.png
%%DATADIR%%/images/math/gvertneqq.png
%%DATADIR%%/images/math/hat.png
%%DATADIR%%/images/math/hbar.png
%%DATADIR%%/images/math/heartsuit.png
%%DATADIR%%/images/math/hookleftarrow.png
%%DATADIR%%/images/math/hookrightarrow.png
%%DATADIR%%/images/math/hphantom.png
%%DATADIR%%/images/math/hslash.png
%%DATADIR%%/images/math/iiiint.png
%%DATADIR%%/images/math/iiiintop.png
%%DATADIR%%/images/math/iiint.png
%%DATADIR%%/images/math/iiintop.png
%%DATADIR%%/images/math/iint.png
%%DATADIR%%/images/math/iintop.png
%%DATADIR%%/images/math/imath.png
%%DATADIR%%/images/math/in.png
%%DATADIR%%/images/math/infty.png
%%DATADIR%%/images/math/int.png
%%DATADIR%%/images/math/intercal.png
%%DATADIR%%/images/math/intop.png
%%DATADIR%%/images/math/iota.png
%%DATADIR%%/images/math/jmath.png
%%DATADIR%%/images/math/kappa.png
%%DATADIR%%/images/math/lambda.png
%%DATADIR%%/images/math/lambda2.png
%%DATADIR%%/images/math/landdownint.png
%%DATADIR%%/images/math/landdownintop.png
%%DATADIR%%/images/math/landupint.png
%%DATADIR%%/images/math/landupintop.png
%%DATADIR%%/images/math/langle.png
%%DATADIR%%/images/math/lbrace.png
%%DATADIR%%/images/math/lbrace_rbrace.png
%%DATADIR%%/images/math/lbracket.png
%%DATADIR%%/images/math/lbracket_rbracket.png
%%DATADIR%%/images/math/lceil.png
%%DATADIR%%/images/math/lceil_rceil.png
%%DATADIR%%/images/math/ldots.png
%%DATADIR%%/images/math/leftarrow.png
%%DATADIR%%/images/math/leftarrow2.png
%%DATADIR%%/images/math/leftarrowtail.png
%%DATADIR%%/images/math/leftharpoondown.png
%%DATADIR%%/images/math/leftharpoonup.png
%%DATADIR%%/images/math/leftleftarrows.png
%%DATADIR%%/images/math/leftrightarrow.png
%%DATADIR%%/images/math/leftrightarrow2.png
%%DATADIR%%/images/math/leftrightarrows.png
%%DATADIR%%/images/math/leftrightharpoons.png
%%DATADIR%%/images/math/leftrightsquigarrow.png
%%DATADIR%%/images/math/leftthreetimes.png
%%DATADIR%%/images/math/leq.png
%%DATADIR%%/images/math/leqq.png
%%DATADIR%%/images/math/leqslant.png
%%DATADIR%%/images/math/lessapprox.png
%%DATADIR%%/images/math/lessdot.png
%%DATADIR%%/images/math/lesseqgtr.png
%%DATADIR%%/images/math/lesseqqgtr.png
%%DATADIR%%/images/math/lessgtr.png
%%DATADIR%%/images/math/lesssim.png
%%DATADIR%%/images/math/lfloor.png
%%DATADIR%%/images/math/lfloor_rfloor.png
%%DATADIR%%/images/math/ll.png
%%DATADIR%%/images/math/llcorner.png
%%DATADIR%%/images/math/lll.png
%%DATADIR%%/images/math/lnapprox.png
%%DATADIR%%/images/math/lneq.png
%%DATADIR%%/images/math/lneqq.png
%%DATADIR%%/images/math/lnsim.png
%%DATADIR%%/images/math/longleftarrow.png
%%DATADIR%%/images/math/longleftarrow2.png
%%DATADIR%%/images/math/longleftrightarrow.png
%%DATADIR%%/images/math/longleftrightarrow2.png
%%DATADIR%%/images/math/longmapsto.png
%%DATADIR%%/images/math/longrightarrow.png
%%DATADIR%%/images/math/longrightarrow2.png
%%DATADIR%%/images/math/looparrowleft.png
%%DATADIR%%/images/math/looparrowright.png
%%DATADIR%%/images/math/lozenge.png
%%DATADIR%%/images/math/lparen.png
%%DATADIR%%/images/math/lparen_rparen.png
%%DATADIR%%/images/math/lrcorner.png
%%DATADIR%%/images/math/ltimes.png
%%DATADIR%%/images/math/lvertneqq.png
%%DATADIR%%/images/math/mapsto.png
%%DATADIR%%/images/math/mathbb_C.png
%%DATADIR%%/images/math/mathbb_H.png
%%DATADIR%%/images/math/mathbb_N.png
%%DATADIR%%/images/math/mathbb_Q.png
%%DATADIR%%/images/math/mathbb_R.png
%%DATADIR%%/images/math/mathbb_Z.png
%%DATADIR%%/images/math/mathcal_F.png
%%DATADIR%%/images/math/mathcal_H.png
%%DATADIR%%/images/math/mathcal_L.png
%%DATADIR%%/images/math/mathcal_O.png
%%DATADIR%%/images/math/mathcircumflex.png
%%DATADIR%%/images/math/mathrm_T.png
%%DATADIR%%/images/math/matrix.png
%%DATADIR%%/images/math/measuredangle.png
%%DATADIR%%/images/math/mho.png
%%DATADIR%%/images/math/mid.png
%%DATADIR%%/images/math/models.png
%%DATADIR%%/images/math/mp.png
%%DATADIR%%/images/math/mu.png
%%DATADIR%%/images/math/multimap.png
%%DATADIR%%/images/math/nabla.png
%%DATADIR%%/images/math/natural.png
%%DATADIR%%/images/math/ncong.png
%%DATADIR%%/images/math/nearrow.png
%%DATADIR%%/images/math/neg.png
%%DATADIR%%/images/math/neq.png
%%DATADIR%%/images/math/nexists.png
%%DATADIR%%/images/math/ngeq.png
%%DATADIR%%/images/math/ngeqq.png
%%DATADIR%%/images/math/ngeqslant.png
%%DATADIR%%/images/math/ngtr.png
%%DATADIR%%/images/math/ni.png
%%DATADIR%%/images/math/nleftarrow.png
%%DATADIR%%/images/math/nleftarrow2.png
%%DATADIR%%/images/math/nleftrightarrow.png
%%DATADIR%%/images/math/nleftrightarrow2.png
%%DATADIR%%/images/math/nleq.png
%%DATADIR%%/images/math/nleqq.png
%%DATADIR%%/images/math/nleqslant.png
%%DATADIR%%/images/math/nless.png
%%DATADIR%%/images/math/nmid.png
%%DATADIR%%/images/math/notin.png
%%DATADIR%%/images/math/nparallel.png
%%DATADIR%%/images/math/nprec.png
%%DATADIR%%/images/math/npreceq.png
%%DATADIR%%/images/math/nrightarrow.png
%%DATADIR%%/images/math/nrightarrow2.png
%%DATADIR%%/images/math/nshortmid.png
%%DATADIR%%/images/math/nshortparallel.png
%%DATADIR%%/images/math/nsim.png
%%DATADIR%%/images/math/nsubseteq.png
%%DATADIR%%/images/math/nsucc.png
%%DATADIR%%/images/math/nsucceq.png
%%DATADIR%%/images/math/nsupseteq.png
%%DATADIR%%/images/math/nsupseteqq.png
%%DATADIR%%/images/math/ntriangleleft.png
%%DATADIR%%/images/math/ntrianglelefteq.png
%%DATADIR%%/images/math/ntriangleright.png
%%DATADIR%%/images/math/ntrianglerighteq.png
%%DATADIR%%/images/math/nu.png
%%DATADIR%%/images/math/nvdash.png
%%DATADIR%%/images/math/nvdash2.png
%%DATADIR%%/images/math/nvdash3.png
%%DATADIR%%/images/math/nwarrow.png
%%DATADIR%%/images/math/odot.png
%%DATADIR%%/images/math/oiint.png
%%DATADIR%%/images/math/oiintop.png
%%DATADIR%%/images/math/oint.png
%%DATADIR%%/images/math/ointclockwise.png
%%DATADIR%%/images/math/ointclockwiseop.png
%%DATADIR%%/images/math/ointctrclockwise.png
%%DATADIR%%/images/math/ointctrclockwiseop.png
%%DATADIR%%/images/math/ointop.png
%%DATADIR%%/images/math/omega.png
%%DATADIR%%/images/math/omega2.png
%%DATADIR%%/images/math/ominus.png
%%DATADIR%%/images/math/oplus.png
%%DATADIR%%/images/math/oslash.png
%%DATADIR%%/images/math/otimes.png
%%DATADIR%%/images/math/overbrace.png
%%DATADIR%%/images/math/overleftarrow.png
%%DATADIR%%/images/math/overleftrightarrow.png
%%DATADIR%%/images/math/overline.png
%%DATADIR%%/images/math/overrightarrow.png
%%DATADIR%%/images/math/overset.png
%%DATADIR%%/images/math/parallel.png
%%DATADIR%%/images/math/partial.png
%%DATADIR%%/images/math/perp.png
%%DATADIR%%/images/math/phantom.png
%%DATADIR%%/images/math/phi.png
%%DATADIR%%/images/math/phi2.png
%%DATADIR%%/images/math/pi.png
%%DATADIR%%/images/math/pi2.png
%%DATADIR%%/images/math/pitchfork.png
%%DATADIR%%/images/math/pm.png
%%DATADIR%%/images/math/prec.png
%%DATADIR%%/images/math/precapprox.png
%%DATADIR%%/images/math/preccurlyeq.png
%%DATADIR%%/images/math/preceq.png
%%DATADIR%%/images/math/precnapprox.png
%%DATADIR%%/images/math/precnsim.png
%%DATADIR%%/images/math/precsim.png
%%DATADIR%%/images/math/prime.png
%%DATADIR%%/images/math/prod.png
%%DATADIR%%/images/math/propto.png
%%DATADIR%%/images/math/psi.png
%%DATADIR%%/images/math/psi2.png
%%DATADIR%%/images/math/rangle.png
%%DATADIR%%/images/math/rbrace.png
%%DATADIR%%/images/math/rbracket.png
%%DATADIR%%/images/math/rceil.png
%%DATADIR%%/images/math/rfloor.png
%%DATADIR%%/images/math/rho.png
%%DATADIR%%/images/math/rightarrow.png
%%DATADIR%%/images/math/rightarrow2.png
%%DATADIR%%/images/math/rightarrowtail.png
%%DATADIR%%/images/math/rightharpoondown.png
%%DATADIR%%/images/math/rightharpoonup.png
%%DATADIR%%/images/math/rightleftarrows.png
%%DATADIR%%/images/math/rightleftharpoons.png
%%DATADIR%%/images/math/rightrightarrows.png
%%DATADIR%%/images/math/rightsquigarrow.png
%%DATADIR%%/images/math/rightthreetimes.png
%%DATADIR%%/images/math/risingdotseq.png
%%DATADIR%%/images/math/root.png
%%DATADIR%%/images/math/rparen.png
%%DATADIR%%/images/math/rtimes.png
%%DATADIR%%/images/math/searrow.png
%%DATADIR%%/images/math/setminus.png
%%DATADIR%%/images/math/sharp.png
%%DATADIR%%/images/math/shortmid.png
%%DATADIR%%/images/math/shortparallel.png
%%DATADIR%%/images/math/sigma.png
%%DATADIR%%/images/math/sigma2.png
%%DATADIR%%/images/math/sim.png
%%DATADIR%%/images/math/simeq.png
%%DATADIR%%/images/math/slash.png
%%DATADIR%%/images/math/smallfrown.png
%%DATADIR%%/images/math/smallsetminus.png
%%DATADIR%%/images/math/smallsmile.png
%%DATADIR%%/images/math/smile.png
%%DATADIR%%/images/math/space.png
%%DATADIR%%/images/math/spadesuit.png
%%DATADIR%%/images/math/sphericalangle.png
%%DATADIR%%/images/math/sqcap.png
%%DATADIR%%/images/math/sqcup.png
%%DATADIR%%/images/math/sqiint.png
%%DATADIR%%/images/math/sqiintop.png
%%DATADIR%%/images/math/sqint.png
%%DATADIR%%/images/math/sqintop.png
%%DATADIR%%/images/math/sqrt-square.png
%%DATADIR%%/images/math/sqrt.png
%%DATADIR%%/images/math/sqsubset.png
%%DATADIR%%/images/math/sqsubseteq.png
%%DATADIR%%/images/math/sqsupset.png
%%DATADIR%%/images/math/sqsupseteq.png
%%DATADIR%%/images/math/square.png
%%DATADIR%%/images/math/star.png
%%DATADIR%%/images/math/style.png
%%DATADIR%%/images/math/sub.png
%%DATADIR%%/images/math/subset.png
%%DATADIR%%/images/math/subset2.png
%%DATADIR%%/images/math/subseteq.png
%%DATADIR%%/images/math/subseteqq.png
%%DATADIR%%/images/math/subsetneq.png
%%DATADIR%%/images/math/subsetneqq.png
%%DATADIR%%/images/math/succ.png
%%DATADIR%%/images/math/succapprox.png
%%DATADIR%%/images/math/succcurlyeq.png
%%DATADIR%%/images/math/succeq.png
%%DATADIR%%/images/math/succnapprox.png
%%DATADIR%%/images/math/succnsim.png
%%DATADIR%%/images/math/succsim.png
%%DATADIR%%/images/math/sum.png
%%DATADIR%%/images/math/super.png
%%DATADIR%%/images/math/supset.png
%%DATADIR%%/images/math/supset2.png
%%DATADIR%%/images/math/supseteq.png
%%DATADIR%%/images/math/supseteqq.png
%%DATADIR%%/images/math/supsetneq.png
%%DATADIR%%/images/math/supsetneqq.png
%%DATADIR%%/images/math/surd.png
%%DATADIR%%/images/math/swarrow.png
%%DATADIR%%/images/math/tau.png
%%DATADIR%%/images/math/textrm_AA.png
%%DATADIR%%/images/math/textrm_O.png
%%DATADIR%%/images/math/therefore.png
%%DATADIR%%/images/math/theta.png
%%DATADIR%%/images/math/theta2.png
%%DATADIR%%/images/math/thickapprox.png
%%DATADIR%%/images/math/thicksim.png
%%DATADIR%%/images/math/tilde.png
%%DATADIR%%/images/math/times.png
%%DATADIR%%/images/math/top.png
%%DATADIR%%/images/math/triangle.png
%%DATADIR%%/images/math/triangledown.png
%%DATADIR%%/images/math/triangleleft.png
%%DATADIR%%/images/math/trianglelefteq.png
%%DATADIR%%/images/math/triangleq.png
%%DATADIR%%/images/math/triangleright.png
%%DATADIR%%/images/math/trianglerighteq.png
%%DATADIR%%/images/math/twoheadleftarrow.png
%%DATADIR%%/images/math/twoheadrightarrow.png
%%DATADIR%%/images/math/ulcorner.png
%%DATADIR%%/images/math/underbrace.png
%%DATADIR%%/images/math/underleftarrow.png
%%DATADIR%%/images/math/underleftrightarrow.png
%%DATADIR%%/images/math/underline.png
%%DATADIR%%/images/math/underrightarrow.png
%%DATADIR%%/images/math/underscore.png
%%DATADIR%%/images/math/underset.png
%%DATADIR%%/images/math/uparrow.png
%%DATADIR%%/images/math/uparrow2.png
%%DATADIR%%/images/math/updownarrow.png
%%DATADIR%%/images/math/updownarrow2.png
%%DATADIR%%/images/math/upharpoonleft.png
%%DATADIR%%/images/math/upharpoonright.png
%%DATADIR%%/images/math/uplus.png
%%DATADIR%%/images/math/upsilon.png
%%DATADIR%%/images/math/upsilon2.png
%%DATADIR%%/images/math/upuparrows.png
%%DATADIR%%/images/math/urcorner.png
%%DATADIR%%/images/math/varepsilon.png
%%DATADIR%%/images/math/varkappa.png
%%DATADIR%%/images/math/varnothing.png
%%DATADIR%%/images/math/varphi.png
%%DATADIR%%/images/math/varpi.png
%%DATADIR%%/images/math/varpropto.png
%%DATADIR%%/images/math/varrho.png
%%DATADIR%%/images/math/varsigma.png
%%DATADIR%%/images/math/varsubsetneq.png
%%DATADIR%%/images/math/varsubsetneqq.png
%%DATADIR%%/images/math/varsupsetneq.png
%%DATADIR%%/images/math/varsupsetneqq.png
%%DATADIR%%/images/math/vartheta.png
%%DATADIR%%/images/math/vartriangle.png
%%DATADIR%%/images/math/vartriangleleft.png
%%DATADIR%%/images/math/vartriangleright.png
%%DATADIR%%/images/math/vdash.png
%%DATADIR%%/images/math/vdash2.png
%%DATADIR%%/images/math/vdash3.png
%%DATADIR%%/images/math/vdots.png
%%DATADIR%%/images/math/vec.png
%%DATADIR%%/images/math/vee.png
%%DATADIR%%/images/math/veebar.png
%%DATADIR%%/images/math/vert.png
%%DATADIR%%/images/math/vert2.png
%%DATADIR%%/images/math/vphantom.png
%%DATADIR%%/images/math/wedge.png
%%DATADIR%%/images/math/widehat.png
%%DATADIR%%/images/math/widetilde.png
%%DATADIR%%/images/math/wp.png
%%DATADIR%%/images/math/wr.png
%%DATADIR%%/images/math/xi.png
%%DATADIR%%/images/math/xi2.png
%%DATADIR%%/images/math/zeta.png
%%DATADIR%%/images/nomencl-insert.png
%%DATADIR%%/images/note-insert.png
%%DATADIR%%/images/note-next.png
%%DATADIR%%/images/paste.png
%%DATADIR%%/images/promote.png
%%DATADIR%%/images/psnfss1.png
%%DATADIR%%/images/psnfss2.png
%%DATADIR%%/images/psnfss3.png
%%DATADIR%%/images/psnfss4.png
%%DATADIR%%/images/redo.png
%%DATADIR%%/images/reload.png
%%DATADIR%%/images/split-view_horizontal.png
%%DATADIR%%/images/split-view_vertical.png
%%DATADIR%%/images/standard.png
%%DATADIR%%/images/tabular-feature_append-column.png
%%DATADIR%%/images/tabular-feature_append-row.png
%%DATADIR%%/images/tabular-feature_delete-column.png
%%DATADIR%%/images/tabular-feature_delete-row.png
%%DATADIR%%/images/tabular-feature_m-align-center.png
%%DATADIR%%/images/tabular-feature_m-align-left.png
%%DATADIR%%/images/tabular-feature_m-align-right.png
%%DATADIR%%/images/tabular-feature_m-valign-bottom.png
%%DATADIR%%/images/tabular-feature_m-valign-middle.png
%%DATADIR%%/images/tabular-feature_m-valign-top.png
%%DATADIR%%/images/tabular-feature_multicolumn.png
%%DATADIR%%/images/tabular-feature_set-all-lines.png
%%DATADIR%%/images/tabular-feature_set-border-lines.png
%%DATADIR%%/images/tabular-feature_set-longtabular.png
%%DATADIR%%/images/tabular-feature_set-rotate-cell.png
%%DATADIR%%/images/tabular-feature_set-rotate-tabular.png
%%DATADIR%%/images/tabular-feature_toggle-line-bottom.png
%%DATADIR%%/images/tabular-feature_toggle-line-left.png
%%DATADIR%%/images/tabular-feature_toggle-line-right.png
%%DATADIR%%/images/tabular-feature_toggle-line-top.png
%%DATADIR%%/images/tabular-feature_toggle-rotate-cell.png
%%DATADIR%%/images/tabular-feature_toggle-rotate-tabular.png
%%DATADIR%%/images/tabular-feature_unset-all-lines.png
%%DATADIR%%/images/tabular-insert.png
%%DATADIR%%/images/textstyle-apply.png
%%DATADIR%%/images/thesaurus-entry.png
%%DATADIR%%/images/toolbar-toggle_math.png
%%DATADIR%%/images/toolbar-toggle_math_panels.png
%%DATADIR%%/images/toolbar-toggle_table.png
%%DATADIR%%/images/undo.png
%%DATADIR%%/images/unknown.png
%%DATADIR%%/images/up.png
%%DATADIR%%/images/url-insert.png
%%DATADIR%%/images/vc-check-in.png
%%DATADIR%%/images/vc-check-out.png
%%DATADIR%%/images/vc-locking-toggle.png
%%DATADIR%%/images/vc-register.png
%%DATADIR%%/images/vc-repo-update.png
%%DATADIR%%/images/vc-revert.png
%%DATADIR%%/kbd/american-2.kmap
%%DATADIR%%/kbd/american.kmap
%%DATADIR%%/kbd/arabic.kmap
%%DATADIR%%/kbd/bg-bds-1251.kmap
%%DATADIR%%/kbd/brazil.kmap
%%DATADIR%%/kbd/brazil2.kmap
%%DATADIR%%/kbd/czech-prg.kmap
%%DATADIR%%/kbd/czech.kmap
%%DATADIR%%/kbd/espanol.kmap
%%DATADIR%%/kbd/european.kmap
%%DATADIR%%/kbd/farsi.kmap
%%DATADIR%%/kbd/francais.kmap
%%DATADIR%%/kbd/french.kmap
%%DATADIR%%/kbd/german-2.kmap
%%DATADIR%%/kbd/german-3.kmap
%%DATADIR%%/kbd/german.kmap
%%DATADIR%%/kbd/greek.kmap
%%DATADIR%%/kbd/hebrew.kmap
%%DATADIR%%/kbd/koi8-r.kmap
%%DATADIR%%/kbd/koi8-u.kmap
%%DATADIR%%/kbd/latvian.kmap
%%DATADIR%%/kbd/magyar-2.kmap
%%DATADIR%%/kbd/magyar-3.kmap
%%DATADIR%%/kbd/magyar.kmap
%%DATADIR%%/kbd/null.kmap
%%DATADIR%%/kbd/polish.kmap
%%DATADIR%%/kbd/polski.kmap
%%DATADIR%%/kbd/portuges.kmap
%%DATADIR%%/kbd/romanian.kmap
%%DATADIR%%/kbd/serbian.kmap
%%DATADIR%%/kbd/serbocroatian.kmap
%%DATADIR%%/kbd/sf.kmap
%%DATADIR%%/kbd/sg.kmap
%%DATADIR%%/kbd/slovak.kmap
%%DATADIR%%/kbd/slovene.kmap
%%DATADIR%%/kbd/thai-kedmanee.kmap
%%DATADIR%%/kbd/transilvanian.kmap
%%DATADIR%%/kbd/turkish-f.kmap
%%DATADIR%%/kbd/turkish.kmap
%%DATADIR%%/languages
%%DATADIR%%/layouts/IEEEtran.layout
%%DATADIR%%/layouts/aa.layout
%%DATADIR%%/layouts/aapaper.inc
%%DATADIR%%/layouts/aapaper.layout
%%DATADIR%%/layouts/aastex.layout
%%DATADIR%%/layouts/achemso.layout
%%DATADIR%%/layouts/acmsiggraph.layout
%%DATADIR%%/layouts/agu-dtd.layout
%%DATADIR%%/layouts/agu_stdclass.inc
%%DATADIR%%/layouts/agu_stdcounters.inc
%%DATADIR%%/layouts/agu_stdlists.inc
%%DATADIR%%/layouts/agu_stdsections.inc
%%DATADIR%%/layouts/agu_stdtitle.inc
%%DATADIR%%/layouts/agums.layout
%%DATADIR%%/layouts/aguplus.inc
%%DATADIR%%/layouts/amsart.layout
%%DATADIR%%/layouts/amsbook.layout
%%DATADIR%%/layouts/amsdefs.inc
%%DATADIR%%/layouts/apa.layout
%%DATADIR%%/layouts/arab-article.layout
%%DATADIR%%/layouts/armenian-article.layout
%%DATADIR%%/layouts/article-beamer.layout
%%DATADIR%%/layouts/article.layout
%%DATADIR%%/layouts/beamer.layout
%%DATADIR%%/layouts/book.layout
%%DATADIR%%/layouts/braille.module
%%DATADIR%%/layouts/broadway.layout
%%DATADIR%%/layouts/chess.layout
%%DATADIR%%/layouts/cl2emult.layout
%%DATADIR%%/layouts/db_lyxmacros.inc
%%DATADIR%%/layouts/db_stdcharstyles.inc
%%DATADIR%%/layouts/db_stdclass.inc
%%DATADIR%%/layouts/db_stdcounters.inc
%%DATADIR%%/layouts/db_stdlayouts.inc
%%DATADIR%%/layouts/db_stdlists.inc
%%DATADIR%%/layouts/db_stdsections.inc
%%DATADIR%%/layouts/db_stdstarsections.inc
%%DATADIR%%/layouts/db_stdstruct.inc
%%DATADIR%%/layouts/db_stdtitle.inc
%%DATADIR%%/layouts/dinbrief.layout
%%DATADIR%%/layouts/docbook-book.layout
%%DATADIR%%/layouts/docbook-chapter.layout
%%DATADIR%%/layouts/docbook-section.layout
%%DATADIR%%/layouts/docbook.layout
%%DATADIR%%/layouts/doublecol-new.layout
%%DATADIR%%/layouts/dtk.layout
%%DATADIR%%/layouts/egs.layout
%%DATADIR%%/layouts/elsart.layout
%%DATADIR%%/layouts/elsarticle.layout
%%DATADIR%%/layouts/endnotes.module
%%DATADIR%%/layouts/entcs.layout
%%DATADIR%%/layouts/eqs-within-sections.module
%%DATADIR%%/layouts/europecv.layout
%%DATADIR%%/layouts/extarticle.layout
%%DATADIR%%/layouts/extbook.layout
%%DATADIR%%/layouts/extletter.layout
%%DATADIR%%/layouts/extreport.layout
%%DATADIR%%/layouts/figs-within-sections.module
%%DATADIR%%/layouts/foils.layout
%%DATADIR%%/layouts/foottoend.module
%%DATADIR%%/layouts/g-brief-de.layout
%%DATADIR%%/layouts/g-brief-en.layout
%%DATADIR%%/layouts/g-brief2.layout
%%DATADIR%%/layouts/hanging.module
%%DATADIR%%/layouts/heb-article.layout
%%DATADIR%%/layouts/heb-letter.layout
%%DATADIR%%/layouts/hollywood.layout
%%DATADIR%%/layouts/ijmpc.layout
%%DATADIR%%/layouts/ijmpd.layout
%%DATADIR%%/layouts/iopart.layout
%%DATADIR%%/layouts/isprs.layout
%%DATADIR%%/layouts/jarticle.layout
%%DATADIR%%/layouts/jbook.layout
%%DATADIR%%/layouts/jgrga.layout
%%DATADIR%%/layouts/jreport.layout
%%DATADIR%%/layouts/jsarticle.layout
%%DATADIR%%/layouts/jsbook.layout
%%DATADIR%%/layouts/jss.layout
%%DATADIR%%/layouts/kluwer.layout
%%DATADIR%%/layouts/latex8.layout
%%DATADIR%%/layouts/letter.layout
%%DATADIR%%/layouts/linguistics.module
%%DATADIR%%/layouts/literate-article.layout
%%DATADIR%%/layouts/literate-book.layout
%%DATADIR%%/layouts/literate-report.layout
%%DATADIR%%/layouts/literate-scrap.inc
%%DATADIR%%/layouts/llncs.layout
%%DATADIR%%/layouts/logicalmkup.module
%%DATADIR%%/layouts/ltugboat.layout
%%DATADIR%%/layouts/lyxmacros.inc
%%DATADIR%%/layouts/memoir.layout
%%DATADIR%%/layouts/minimalistic.module
%%DATADIR%%/layouts/moderncv.layout
%%DATADIR%%/layouts/mwart.layout
%%DATADIR%%/layouts/mwbk.layout
%%DATADIR%%/layouts/mwrep.layout
%%DATADIR%%/layouts/numarticle.inc
%%DATADIR%%/layouts/numreport.inc
%%DATADIR%%/layouts/numrevtex.inc
%%DATADIR%%/layouts/paper.layout
%%DATADIR%%/layouts/powerdot.layout
%%DATADIR%%/layouts/recipebook.layout
%%DATADIR%%/layouts/report.layout
%%DATADIR%%/layouts/revtex.layout
%%DATADIR%%/layouts/revtex4.layout
%%DATADIR%%/layouts/scrartcl.layout
%%DATADIR%%/layouts/scrarticle-beamer.layout
%%DATADIR%%/layouts/scrbook.layout
%%DATADIR%%/layouts/scrclass.inc
%%DATADIR%%/layouts/scrlettr.layout
%%DATADIR%%/layouts/scrlttr2.layout
%%DATADIR%%/layouts/scrreprt.layout
%%DATADIR%%/layouts/seminar.layout
%%DATADIR%%/layouts/siamltex.layout
%%DATADIR%%/layouts/sigplanconf.layout
%%DATADIR%%/layouts/simplecv.layout
%%DATADIR%%/layouts/singlecol-new.layout
%%DATADIR%%/layouts/singlecol.layout
%%DATADIR%%/layouts/slides.layout
%%DATADIR%%/layouts/spie.layout
%%DATADIR%%/layouts/stdcharstyles.inc
%%DATADIR%%/layouts/stdclass.inc
%%DATADIR%%/layouts/stdcounters.inc
%%DATADIR%%/layouts/stdcustom.inc
%%DATADIR%%/layouts/stdfloats.inc
%%DATADIR%%/layouts/stdinsets.inc
%%DATADIR%%/layouts/stdlayouts.inc
%%DATADIR%%/layouts/stdletter.inc
%%DATADIR%%/layouts/stdlists.inc
%%DATADIR%%/layouts/stdsections.inc
%%DATADIR%%/layouts/stdstarsections.inc
%%DATADIR%%/layouts/stdstruct.inc
%%DATADIR%%/layouts/stdtitle.inc
%%DATADIR%%/layouts/svglobal.layout
%%DATADIR%%/layouts/svglobal3.layout
%%DATADIR%%/layouts/svjog.layout
%%DATADIR%%/layouts/svjour.inc
%%DATADIR%%/layouts/svmono.layout
%%DATADIR%%/layouts/svmult.layout
%%DATADIR%%/layouts/svprobth.layout
%%DATADIR%%/layouts/tabs-within-sections.module
%%DATADIR%%/layouts/tarticle.layout
%%DATADIR%%/layouts/tbook.layout
%%DATADIR%%/layouts/theorems-ams-bytype.inc
%%DATADIR%%/layouts/theorems-ams-bytype.module
%%DATADIR%%/layouts/theorems-ams-extended-bytype.module
%%DATADIR%%/layouts/theorems-ams-extended.module
%%DATADIR%%/layouts/theorems-ams.inc
%%DATADIR%%/layouts/theorems-ams.module
%%DATADIR%%/layouts/theorems-bytype.inc
%%DATADIR%%/layouts/theorems-bytype.module
%%DATADIR%%/layouts/theorems-chap-bytype.module
%%DATADIR%%/layouts/theorems-chap.module
%%DATADIR%%/layouts/theorems-order.inc
%%DATADIR%%/layouts/theorems-proof.inc
%%DATADIR%%/layouts/theorems-sec-bytype.module
%%DATADIR%%/layouts/theorems-sec.module
%%DATADIR%%/layouts/theorems-starred-equivalents.inc
%%DATADIR%%/layouts/theorems-starred.inc
%%DATADIR%%/layouts/theorems-starred.module
%%DATADIR%%/layouts/theorems-std.module
%%DATADIR%%/layouts/theorems.inc
%%DATADIR%%/layouts/treport.layout
%%DATADIR%%/layouts/tufte-book.layout
%%DATADIR%%/layouts/tufte-handout.layout
%%DATADIR%%/lyx2lyx/LyX.py
%%DATADIR%%/lyx2lyx/LyX.pyc
%%DATADIR%%/lyx2lyx/LyX.pyo
%%DATADIR%%/lyx2lyx/generate_encoding_info.py
%%DATADIR%%/lyx2lyx/generate_encoding_info.pyc
%%DATADIR%%/lyx2lyx/generate_encoding_info.pyo
%%DATADIR%%/lyx2lyx/lyx2lyx
%%DATADIR%%/lyx2lyx/lyx2lyx_lang.py
%%DATADIR%%/lyx2lyx/lyx2lyx_lang.pyc
%%DATADIR%%/lyx2lyx/lyx2lyx_lang.pyo
%%DATADIR%%/lyx2lyx/lyx2lyx_version.py
%%DATADIR%%/lyx2lyx/lyx2lyx_version.pyc
%%DATADIR%%/lyx2lyx/lyx2lyx_version.pyo
%%DATADIR%%/lyx2lyx/lyx_0_06.py
%%DATADIR%%/lyx2lyx/lyx_0_06.pyc
%%DATADIR%%/lyx2lyx/lyx_0_06.pyo
%%DATADIR%%/lyx2lyx/lyx_0_08.py
%%DATADIR%%/lyx2lyx/lyx_0_08.pyc
%%DATADIR%%/lyx2lyx/lyx_0_08.pyo
%%DATADIR%%/lyx2lyx/lyx_0_10.py
%%DATADIR%%/lyx2lyx/lyx_0_10.pyc
%%DATADIR%%/lyx2lyx/lyx_0_10.pyo
%%DATADIR%%/lyx2lyx/lyx_0_12.py
%%DATADIR%%/lyx2lyx/lyx_0_12.pyc
%%DATADIR%%/lyx2lyx/lyx_0_12.pyo
%%DATADIR%%/lyx2lyx/lyx_1_0.py
%%DATADIR%%/lyx2lyx/lyx_1_0.pyc
%%DATADIR%%/lyx2lyx/lyx_1_0.pyo
%%DATADIR%%/lyx2lyx/lyx_1_1.py
%%DATADIR%%/lyx2lyx/lyx_1_1.pyc
%%DATADIR%%/lyx2lyx/lyx_1_1.pyo
%%DATADIR%%/lyx2lyx/lyx_1_1_5.py
%%DATADIR%%/lyx2lyx/lyx_1_1_5.pyc
%%DATADIR%%/lyx2lyx/lyx_1_1_5.pyo
%%DATADIR%%/lyx2lyx/lyx_1_1_6_0.py
%%DATADIR%%/lyx2lyx/lyx_1_1_6_0.pyc
%%DATADIR%%/lyx2lyx/lyx_1_1_6_0.pyo
%%DATADIR%%/lyx2lyx/lyx_1_1_6_3.py
%%DATADIR%%/lyx2lyx/lyx_1_1_6_3.pyc
%%DATADIR%%/lyx2lyx/lyx_1_1_6_3.pyo
%%DATADIR%%/lyx2lyx/lyx_1_2.py
%%DATADIR%%/lyx2lyx/lyx_1_2.pyc
%%DATADIR%%/lyx2lyx/lyx_1_2.pyo
%%DATADIR%%/lyx2lyx/lyx_1_3.py
%%DATADIR%%/lyx2lyx/lyx_1_3.pyc
%%DATADIR%%/lyx2lyx/lyx_1_3.pyo
%%DATADIR%%/lyx2lyx/lyx_1_4.py
%%DATADIR%%/lyx2lyx/lyx_1_4.pyc
%%DATADIR%%/lyx2lyx/lyx_1_4.pyo
%%DATADIR%%/lyx2lyx/lyx_1_5.py
%%DATADIR%%/lyx2lyx/lyx_1_5.pyc
%%DATADIR%%/lyx2lyx/lyx_1_5.pyo
%%DATADIR%%/lyx2lyx/lyx_1_6.py
%%DATADIR%%/lyx2lyx/lyx_1_6.pyc
%%DATADIR%%/lyx2lyx/lyx_1_6.pyo
%%DATADIR%%/lyx2lyx/parser_tools.py
%%DATADIR%%/lyx2lyx/parser_tools.pyc
%%DATADIR%%/lyx2lyx/parser_tools.pyo
%%DATADIR%%/lyx2lyx/profiling.py
%%DATADIR%%/lyx2lyx/profiling.pyc
%%DATADIR%%/lyx2lyx/profiling.pyo
%%DATADIR%%/lyx2lyx/test_parser_tools.py
%%DATADIR%%/lyx2lyx/test_parser_tools.pyc
%%DATADIR%%/lyx2lyx/test_parser_tools.pyo
%%DATADIR%%/scripts/TeXFiles.py
%%DATADIR%%/scripts/TeXFiles.pyc
%%DATADIR%%/scripts/TeXFiles.pyo
%%DATADIR%%/scripts/clean_dvi.py
%%DATADIR%%/scripts/clean_dvi.pyc
%%DATADIR%%/scripts/clean_dvi.pyo
%%DATADIR%%/scripts/convertDefault.py
%%DATADIR%%/scripts/convertDefault.pyc
%%DATADIR%%/scripts/convertDefault.pyo
%%DATADIR%%/scripts/csv2lyx.py
%%DATADIR%%/scripts/csv2lyx.pyc
%%DATADIR%%/scripts/csv2lyx.pyo
%%DATADIR%%/scripts/date.py
%%DATADIR%%/scripts/date.pyc
%%DATADIR%%/scripts/date.pyo
%%DATADIR%%/scripts/ext_copy.py
%%DATADIR%%/scripts/ext_copy.pyc
%%DATADIR%%/scripts/ext_copy.pyo
%%DATADIR%%/scripts/fen2ascii.py
%%DATADIR%%/scripts/fen2ascii.pyc
%%DATADIR%%/scripts/fen2ascii.pyo
%%DATADIR%%/scripts/fig2pdftex.py
%%DATADIR%%/scripts/fig2pdftex.pyc
%%DATADIR%%/scripts/fig2pdftex.pyo
%%DATADIR%%/scripts/fig2pstex.py
%%DATADIR%%/scripts/fig2pstex.pyc
%%DATADIR%%/scripts/fig2pstex.pyo
%%DATADIR%%/scripts/fig_copy.py
%%DATADIR%%/scripts/fig_copy.pyc
%%DATADIR%%/scripts/fig_copy.pyo
%%DATADIR%%/scripts/layout2layout.py
%%DATADIR%%/scripts/layout2layout.pyc
%%DATADIR%%/scripts/layout2layout.pyo
%%DATADIR%%/scripts/legacy_lyxpreview2ppm.py
%%DATADIR%%/scripts/legacy_lyxpreview2ppm.pyc
%%DATADIR%%/scripts/legacy_lyxpreview2ppm.pyo
%%DATADIR%%/scripts/listerrors
%%DATADIR%%/scripts/lyxpreview-platex2bitmap.py
%%DATADIR%%/scripts/lyxpreview-platex2bitmap.pyc
%%DATADIR%%/scripts/lyxpreview-platex2bitmap.pyo
%%DATADIR%%/scripts/lyxpreview2bitmap.py
%%DATADIR%%/scripts/lyxpreview2bitmap.pyc
%%DATADIR%%/scripts/lyxpreview2bitmap.pyo
%%DATADIR%%/scripts/lyxpreview_tools.py
%%DATADIR%%/scripts/lyxpreview_tools.pyc
%%DATADIR%%/scripts/lyxpreview_tools.pyo
%%DATADIR%%/scripts/tex_copy.py
%%DATADIR%%/scripts/tex_copy.pyc
%%DATADIR%%/scripts/tex_copy.pyo
%%DATADIR%%/symbols
%%DATADIR%%/syntax.default
%%DATADIR%%/templates/ACM-siggraph.lyx
%%DATADIR%%/templates/ACM-sigplan.lyx
%%DATADIR%%/templates/IEEEtran.lyx
%%DATADIR%%/templates/JSS-article.lyx
%%DATADIR%%/templates/README.new_templates
%%DATADIR%%/templates/aa.lyx
%%DATADIR%%/templates/aastex.lyx
%%DATADIR%%/templates/agu_article.lyx
%%DATADIR%%/templates/apa.lyx
%%DATADIR%%/templates/beamer-conference-ornate-20min.lyx
%%DATADIR%%/templates/de_beamer-conference-ornate-20min.lyx
%%DATADIR%%/templates/dinbrief.lyx
%%DATADIR%%/templates/docbook_article.lyx
%%DATADIR%%/templates/elsarticle.lyx
%%DATADIR%%/templates/es_beamer-conference-ornate-20min.lyx
%%DATADIR%%/templates/fr_beamer-conference-ornate-20min.lyx
%%DATADIR%%/templates/g-brief-de.lyx
%%DATADIR%%/templates/g-brief-en.lyx
%%DATADIR%%/templates/g-brief2.lyx
%%DATADIR%%/templates/hollywood.lyx
%%DATADIR%%/templates/ijmpc.lyx
%%DATADIR%%/templates/ijmpd.lyx
%%DATADIR%%/templates/iop-article.lyx
%%DATADIR%%/templates/kluwer.lyx
%%DATADIR%%/templates/koma-letter2.lyx
%%DATADIR%%/templates/latex8.lyx
%%DATADIR%%/templates/letter.lyx
%%DATADIR%%/templates/revtex.lyx
%%DATADIR%%/templates/revtex4.lyx
%%DATADIR%%/templates/slides.lyx
%%DATADIR%%/templates/svjour3.lyx
%%DATADIR%%/templates/svmono_book.lyx
%%DATADIR%%/templates/svmult_appendix.lyx
%%DATADIR%%/templates/svmult_author.lyx
%%DATADIR%%/templates/svmult_editor.lyx
%%DATADIR%%/tex/broadway.cls
%%DATADIR%%/tex/hollywood.cls
%%DATADIR%%/tex/lyxchess.sty
%%DATADIR%%/tex/lyxskak.sty
%%DATADIR%%/tex/revtex.cls
%%DATADIR%%/ui/classic.ui
%%DATADIR%%/ui/default.ui
%%DATADIR%%/ui/stdcontext.inc
%%DATADIR%%/ui/stdmenus.inc
%%DATADIR%%/ui/stdtoolbars.inc
%%DATADIR%%/unicodesymbols
@dirrm %%DATADIR%%/ui
@dirrm %%DATADIR%%/tex
@dirrm %%DATADIR%%/templates
@dirrm %%DATADIR%%/scripts
@dirrm %%DATADIR%%/lyx2lyx
@dirrm %%DATADIR%%/layouts
@dirrm %%DATADIR%%/kbd
@dirrm %%DATADIR%%/images/math
@dirrm %%DATADIR%%/images/commands
@dirrm %%DATADIR%%/images
@dirrm %%DATADIR%%/fonts
@dirrm %%DATADIR%%/examples/uk
@dirrm %%DATADIR%%/examples/sl
@dirrm %%DATADIR%%/examples/sk
@dirrm %%DATADIR%%/examples/ru
@dirrm %%DATADIR%%/examples/ro
@dirrm %%DATADIR%%/examples/pt
@dirrm %%DATADIR%%/examples/pl
@dirrm %%DATADIR%%/examples/nl
@dirrm %%DATADIR%%/examples/ja
@dirrm %%DATADIR%%/examples/it
@dirrm %%DATADIR%%/examples/id
@dirrm %%DATADIR%%/examples/hu
@dirrm %%DATADIR%%/examples/he
@dirrm %%DATADIR%%/examples/gl
@dirrm %%DATADIR%%/examples/fr
@dirrm %%DATADIR%%/examples/fa
@dirrm %%DATADIR%%/examples/eu
@dirrm %%DATADIR%%/examples/es
@dirrm %%DATADIR%%/examples/de
@dirrm %%DATADIR%%/examples/da
@dirrm %%DATADIR%%/examples/cs
@dirrm %%DATADIR%%/examples/ca
@dirrm %%DATADIR%%/examples
@dirrm %%DATADIR%%/doc/zh_CN
@dirrm %%DATADIR%%/doc/uk/clipart
@dirrm %%DATADIR%%/doc/uk
@dirrm %%DATADIR%%/doc/sv
@dirrm %%DATADIR%%/doc/sl
@dirrm %%DATADIR%%/doc/sk
@dirrm %%DATADIR%%/doc/ru
@dirrm %%DATADIR%%/doc/ro
@dirrm %%DATADIR%%/doc/pt
@dirrm %%DATADIR%%/doc/pl
@dirrm %%DATADIR%%/doc/nl
@dirrm %%DATADIR%%/doc/nb
@dirrm %%DATADIR%%/doc/ja/clipart
@dirrm %%DATADIR%%/doc/ja
@dirrm %%DATADIR%%/doc/it/clipart
@dirrm %%DATADIR%%/doc/it
@dirrm %%DATADIR%%/doc/id/clipart
@dirrm %%DATADIR%%/doc/id
@dirrm %%DATADIR%%/doc/hu
@dirrm %%DATADIR%%/doc/he
@dirrm %%DATADIR%%/doc/gl
@dirrm %%DATADIR%%/doc/fr/clipart
@dirrm %%DATADIR%%/doc/fr
@dirrm %%DATADIR%%/doc/eu
@dirrm %%DATADIR%%/doc/es/clipart
@dirrm %%DATADIR%%/doc/es
@dirrm %%DATADIR%%/doc/de/clipart
@dirrm %%DATADIR%%/doc/de
@dirrm %%DATADIR%%/doc/da
@dirrm %%DATADIR%%/doc/cs
@dirrm %%DATADIR%%/doc/clipart
@dirrm %%DATADIR%%/doc/ca
@dirrm %%DATADIR%%/doc/biblio
@dirrm %%DATADIR%%/doc
@dirrm %%DATADIR%%/commands
@dirrm %%DATADIR%%/bind/sv
@dirrm %%DATADIR%%/bind/pt
@dirrm %%DATADIR%%/bind/fi
@dirrm %%DATADIR%%/bind/de
@dirrm %%DATADIR%%/bind
@dirrm %%DATADIR%%
|