-
Notifications
You must be signed in to change notification settings - Fork 0
/
usfm.sty
2699 lines (2440 loc) · 72.3 KB
/
usfm.sty
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
# Version=2.503
# ********************************************************************
# * usfm.sty is the default stylesheet for Paratext 7 projects *
# * using USFM markup. *
# * Latest documentation and stylesheets are maintained at: *
# * http://paratext.org/usfm *
# ********************************************************************
# File Identification
\Marker id
\Name id - File - Identification
\Description File identification information (BOOKID, FILENAME, EDITOR, MODIFICATION DATE)
\StyleType Paragraph
\TextType Other
\TextProperties paragraph nonpublishable nonvernacular book
\FontSize 12
\Marker ide
\Name ide - File - Encoding
\Description File encoding information
\OccursUnder id
\Rank 1
\StyleType Paragraph
\TextType Other
\TextProperties paragraph nonpublishable nonvernacular
\FontSize 12
# Headers
\Marker h
\Name h - File - Header
\Description Running header text for a book (basic)
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker h1
\Name h1 - File - Header
\Description Running header text
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker h2
\Name h2 - File - Left Header
\Description Running header text, left side of page
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker h3
\Name h3 - File - Right Header
\Description Running header text, right side of page
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker toc1
\Name toc1 - File - Long Table of Contents Text
\Description Long table of contents text
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Italic
\Bold
\color 16384
\Marker toc2
\Name toc2 - File - Short Table of Contents Text
\Description Short table of contents text
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Italic
\color 16384
\Marker toc3
\Name toc3 - File - Book Abbreviation
\Description Book Abbreviation
\OccursUnder id
\Rank 1
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Bold
\Italic
\color 128
# Remarks and Comments
\Marker rem
\Name rem - File - Remark
\Description Comments and remarks
\OccursUnder id ide c
\TextType Other
\TextProperties paragraph nonpublishable nonvernacular
\StyleType Paragraph
\FontSize 12
\Color 16711680
\Marker sts
\Name rem - File - Status
\Description Status of this file
\OccursUnder id ide c
\TextType Other
\TextProperties paragraph nonpublishable nonvernacular
\StyleType Paragraph
\FontSize 12
\Color 16711680
\Marker restore
\Name restore - File - Restore Information
\Description Project restore information
\OccursUnder id
\Rank 99
\TextType Other
\TextProperties paragraph nonpublishable nonvernacular
\StyleType Paragraph
\FontSize 12
\Color 16711680
# Introduction
\Marker imt
\Name imt - Introduction - Major Title Level 1
\Description Introduction major title, level 1 (if single level) (basic)
\OccursUnder id
\Rank 5
\TextProperties paragraph publishable vernacular level_1
\TextType Other
\StyleType Paragraph
\FontSize 14
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker imt1
\Name imt1 - Introduction - Major Title Level 1
\Description Introduction major title, level 1 (if multiple levels)
\OccursUnder id
\Rank 5
\TextProperties paragraph publishable vernacular level_1
\TextType Other
\StyleType Paragraph
\FontSize 14
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker imt2
\Name imt2 - Introduction - Major Title Level 2
\Description Introduction major title, level 2
\OccursUnder id
\Rank 5
\TextProperties paragraph publishable vernacular level_2
\TextType other
\StyleType Paragraph
\FontSize 13
\Italic
\Justification Center
\SpaceBefore 6
\SpaceAfter 3
\Marker imt3
\Name imt3 - Introduction - Major Title Level 3
\Description Introduction major title, level 3
\OccursUnder id
\Rank 5
\TextProperties paragraph publishable vernacular level_3
\TextType Other
\StyleType Paragraph
\FontSize 12
\Bold
\Justification Center
\SpaceBefore 2
\SpaceAfter 2
\Marker imt4
\Name imt4 - Introduction - Major Title Level 4
\Description Introduction major title, level 4 (usually within parenthesis)
\OccursUnder id
\Rank 5
\TextProperties paragraph publishable vernacular level_4
\TextType Other
\StyleType Paragraph
\FontSize 12
\Italic
\Justification Center
\SpaceBefore 2
\SpaceAfter 2
\Marker imte
\Name imte - Introduction - [Uncommon] Major Title at Introduction End Level 1
\Description Introduction major title at introduction end, level 1 (if single level)
\TextProperties paragraph publishable vernacular level_1
\TextType Other
\OccursUnder id
\Rank 7
\StyleType Paragraph
\FontSize 20
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker imte1
\Name imte1 - Introduction - [Uncommon] Major Title at Introduction End Level 1
\Description Introduction major title at introduction end, level 1 (if multiple levels)
\TextProperties paragraph publishable vernacular level_1
\TextType Other
\OccursUnder id
\Rank 7
\StyleType Paragraph
\FontSize 20
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker imte2
\Name imte2 - Introduction - [Uncommon] Major Title at Introduction End Level 2
\Description Introduction major title at introduction end, level 2
\TextProperties paragraph publishable vernacular level_2
\TextType Other
\OccursUnder id
\Rank 7
\StyleType Paragraph
\FontSize 16
\Italic
\Justification Center
\SpaceAfter 2
\Marker is
\Name is - Introduction - Section Heading Level 1
\Description Introduction section heading, level 1 (if single level) (basic)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType Paragraph
\FontSize 14
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker is1
\Name is1 - Introduction - Section Heading Level 1
\Description Introduction section heading, level 1 (if multiple levels)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType Paragraph
\FontSize 14
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker is2
\Name is2 - Introduction - Section Heading Level 2
\Description Introduction section heading, level 2
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_2
\StyleType Paragraph
\FontSize 12
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker iot
\Name iot - Introduction - Outline Title
\Description Introduction outline title (basic)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Bold
\Justification Center
\SpaceBefore 8
\SpaceAfter 4
\Marker io
\Name io - Introduction - Outline Level 1
\Description Introduction outline text, level 1 (if single level)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType paragraph
\FontSize 12
\LeftMargin .5
\Marker io1
\Name io1 - Introduction - Outline Level 1
\Description Introduction outline text, level 1 (if multiple levels) (basic)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType paragraph
\FontSize 12
\LeftMargin .5
\Marker io2
\Name io2 - Introduction - Outline Level 2
\Description Introduction outline text, level 2
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_2
\StyleType paragraph
\FontSize 12
\LeftMargin .75
\Marker io3
\Name io3 - Introduction - Outline Level 3
\Description Introduction outline text, level 3
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_3
\StyleType paragraph
\FontSize 12
\LeftMargin 1
\Marker io4
\Name io4 - Introduction - Outline Level 4
\Description Introduction outline text, level 4
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_4
\StyleType paragraph
\FontSize 12
\LeftMargin 1.25
\Marker ior
\Endmarker ior*
\Name ior...ior* - Introduction - Outline References Range
\Description Introduction references range for outline entry; for marking references separately
\OccursUnder id io io1 io2 io3 io4 NEST
\TextType Other
\TextProperties publishable vernacular
\StyleType Character
\FontSize 12
\Marker ip
\Name ip - Introduction - Paragraph
\Description Introduction prose paragraph (basic)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\Marker im
\Name im - Introduction - Paragraph - no first line indent
\Description Introduction prose paragraph, with no first line indent (may occur after poetry)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker ipi
\Name ipi - Introduction - Indented Para - first line indent
\Description Introduction prose paragraph, indented, with first line indent
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .25
\RightMargin .25
\Marker imi
\Name imi - Introduction - Indented Para - no first line indent
\Description Introduction prose paragraph text, indented, with no first line indent
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Marker ili
\Name ili - Introduction - List Entry - Level 1
\Description A list entry, level 1 (if single level)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType paragraph
\FontSize 12
\LeftMargin .5
\FirstLineIndent -.375 # 1/8 inch indent, 1/2 inch wrap
\Marker ili1
\Name ili1 - Introduction - List Entry - Level 1
\Description A list entry, level 1 (if multiple levels)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_1
\StyleType paragraph
\FontSize 12
\LeftMargin .5
\FirstLineIndent -.375 # 1/8 inch indent, 1/2 inch wrap
\Marker ili2
\Name ili2 - Introduction - List Entry - Level 2
\Description A list entry, level 2
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular level_2
\StyleType paragraph
\FontSize 12
\LeftMargin .75
\FirstLineIndent -.375
\Marker ipq
\Name ipq - Introduction - Paragraph - quote from text
\Description Introduction prose paragraph, quote from the body text
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\FirstLineIndent .125 # 1/8 inch first line indent
\Italic
\Marker imq
\Name imq - Introduction - Paragraph - quote from text - no first line indent
\Description Introduction prose paragraph, quote from the body text, with no first line indent
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Italic
\Marker ipr
\Name ipr - Introduction - Paragraph - right aligned
\Description Introduction prose paragraph, right aligned
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Justification Right
\Italic
\Marker ib
\Name ib - Introduction - Blank Line
\Description Introduction blank line
\OccursUnder id
\Rank 6
\TextProperties paragraph publishable vernacular poetic
\TextType Other
\FontSize 10
\StyleType paragraph
\Marker iq
\Name iq - Introduction - Poetry Level 1
\Description Introduction poetry text, level 1 (if single level)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular poetic level_1
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.75 # 1/4 inch indent, 1 inch wrap
\Italic
\Marker iq1
\Name iq1 - Introduction - Poetry Level 1
\Description Introduction poetry text, level 1 (if multiple levels)
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular poetic level_1
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.75 # 1/4 inch indent, 1 inch wrap
\Italic
\Marker iq2
\Name iq2 - Introduction - Poetry Level 2
\Description Introduction poetry text, level 2
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular poetic level_2
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.5 # 1/2 inch indent, 1 inch wrap
\Italic
\Marker iq3
\Name iq3 - Introduction - Poetry Level 3
\Description Introduction poetry text, level 3
\OccursUnder id
\Rank 6
\TextType Other
\TextProperties paragraph publishable vernacular poetic level_3
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.25 # 3/4 inch indent, 1 inch wrap
\Italic
\Marker iex
\Name iex - Introduction - Explanatory or Bridge Text
\Description Introduction explanatory or bridge text (e.g. explanation of missing book in Short Old Testament)
\OccursUnder id
\TextType Other
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\SpaceBefore 4
\SpaceAfter 4
\Marker iqt
\Endmarker iqt*
\Name iqt...iqt* - Special Text - Quoted Scripture Text in Introduction
\Description For quoted scripture text appearing in the introduction
\OccursUnder imt, imt1, imt2, imt3, imt4, ib, ie, ili, ili1, ili2, im, imi, imq, io, io1, io2, io3, io4, iot, ip, ipi, ipq, ipr, iq, iq1, iq2, iq3, is, is1, is2, imte, imte1, imte2, iex
\TextType Other
\TextProperties publishable vernacular
\StyleType Character
\FontSize 12
\Italic
\Marker ie
\Name ie - Introduction - End Marker
\Description Introduction ending marker
\OccursUnder id
\Rank 6
\TextProperties paragraph publishable vernacular
\TextType Other
\FontSize 10
\StyleType paragraph
# Chapters and Verses
\Marker c
\Name c - Chapter Number
\Description Chapter number (necessary for normal Paratext operation)
\OccursUnder id
\Rank 8
\TextType ChapterNumber
\TextProperties chapter
\StyleType Paragraph
\Bold
\FontSize 18
\SpaceBefore 8
\SpaceAfter 4
\Marker ca
\Endmarker ca*
\Name ca...ca* - Chapter Number - Alternate
\Description Second (alternate) chapter number (for coding dual versification; useful for places where different traditions of chapter breaks need to be supported in the same translation)
\OccursUnder c
\TextType Other
\StyleType Character
\Italic
\FontSize 16
\Color 2263842
\Marker cp
\Name cp - Chapter Number - Publishing Alternate
\Description Published chapter number (this is a chapter marking that would be used in the published text)
\OccursUnder c
\Rank 4
\TextType Other
\TextProperties paragraph
\StyleType Paragraph
\Bold
\FontSize 18
\SpaceBefore 8
\SpaceAfter 4
\Color 16711680
\Marker cl
\Name cl - Chapter - Publishing Label
\Description Chapter label used for translations that add a word such as "Chapter" before chapter numbers (e.g. Psalms). The subsequent text is the chapter label.
\OccursUnder id c ms ms1 ms2 ms3 mr
\TextType Other
\TextProperties paragraph
\StyleType Paragraph
\Bold
\FontSize 18
\SpaceBefore 8
\SpaceAfter 4
\Justification Center
\Marker cd
\Name cd - Chapter - Description
\Description Chapter Description (Publishing option D, e.g. in Russian Bibles)
\OccursUnder c
\TextType Other
\TextProperties paragraph
\StyleType Paragraph
\FontSize 11
\SpaceBefore 8
\SpaceAfter 4
\Marker v
\Name v - Verse Number
\Description A verse number (Necessary for normal paratext operation) (basic)
\OccursUnder li li1 li2 li3 li4 m mi nb p pc ph phi pi pi1 pi2 pi3 pr pmo pm pmc pmr q q1 q2 q3 q4 qc qr qm qm1 qm2 qm3 tr tc1 tc2 tc3 tc4 tcr1 tcr2 tcr3 tcr4 s3 d sp
\TextType VerseNumber
\TextProperties verse
\StyleType Character
\FontSize 12
\Superscript
\Marker va
\Endmarker va*
\Name va...va* - Verse Number - Alternate
\Description Second (alternate) verse number (for coding dual numeration in Psalms; see also NRSV Exo 22.1-4)
\OccursUnder li li1 li2 li3 li4 m mi nb p pc ph phi pi pi1 pi2 pi3 pr pmo pm pmc pmr q q1 q2 q3 q4 qc qr qm qm1 qm2 qm3 tc1 tc2 tc3 tc4 s3 d
\TextType Other
\StyleType Character
\FontSize 12
\Superscript
\Color 2263842
\Marker vp
\Endmarker vp*
\Name vp...vp* - Verse Number - Publishing Alternate
\Description Published verse marker - this is a verse marking that would be used in the published text
\OccursUnder li li1 li2 li3 li4 m mi nb p pc ph phi pi pi1 pi2 pi3 pr pmo pm pmc pmr q q1 q2 q3 q4 qc qr qm qm1 qm2 qm3 tc1 tc2 tc3 tc4 s3
\TextType Other
\StyleType Character
\FontSize 12
\Superscript
\Color 16711680
# Paragraphs
\Marker p
\Name p - Paragraph - Normal - First Line Indent
\Description Paragraph text, with first line indent (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\Marker m
\Name m - Paragraph - Margin - No First Line Indent
\Description Paragraph text, with no first line indent (may occur after poetry) (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker pmo
\Name pmo - Paragraph - Embedded Text Opening
\Description Embedded text opening
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr s1 s2 s3 s4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Marker pm
\Name pm - Paragraph - Embedded Text
\Description Embedded text paragraph
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr psi q q1 q2 q3 q4 qc qr b s1 s2 s3 s4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .25
\RightMargin .25
\Marker pmc
\Name pmc - Paragraph - Embedded Text Closing
\Description Embedded text closing
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr b s1 s2 s3 s4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Marker pmr
\Name pmr - Paragraph - Embedded Text Refrain
\Description Embedded text refrain (e.g. Then all the people shall say, "Amen!")
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr b s1 s2 s3 s4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Justification Right
\LeftMargin .25
\RightMargin .25
\Marker pi
\Name pi - Paragraph - Indented - Level 1 - First Line Indent
\Description Paragraph text, level 1 indent (if sinlge level), with first line indent; often used for discourse (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular level_1
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .25
\RightMargin .25
\Marker pi1
\Name pi1 - Paragraph - Indented - Level 1 - First Line Indent
\Description Paragraph text, level 1 indent (if multiple levels), with first line indent; often used for discourse
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular level_1
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .25
\RightMargin .25
\Marker pi2
\Name pi2 - Paragraph - Indented - Level 2 - First Line Indent
\Description Paragraph text, level 2 indent, with first line indent; often used for discourse
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular level_2
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .5
\RightMargin .25
\Marker pi3
\Name pi3 - Paragraph - Indented - Level 3 - First Line Indent
\Description Paragraph text, level 3 indent, with first line indent; often used for discourse
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular level_3
\StyleType Paragraph
\FontSize 12
\FirstLineIndent .125 # 1/8 inch first line indent
\LeftMargin .75
\RightMargin .25
\Marker pc
\Name pc - Paragraph - Centered (for Inscription)
\Description Paragraph text, centered (for Inscription)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\Justification Center
\FontSize 12
\Marker mi
\Name mi - Paragraph - Indented - No First Line Indent
\Description Paragraph text, indented, with no first line indent; often used for discourse
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\LeftMargin .25
\RightMargin .25
\Marker nb
\Name nb - Paragraph - No Break with Previous Paragraph
\Description Paragraph text, with no break from previous paragraph text (at chapter boundary) (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Marker cls
\Name cls - Paragraph - Closure of an Epistle
\Description Closure of an Epistle
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular
\StyleType Paragraph
\FontSize 12
\Justification Right
# Poetry
\Marker q
\Name q - Poetry - Indent Level 1 - Single Level Only
\Description Poetry text, level 1 indent (if single level)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_1
\StyleType Paragraph
\FontSize 12
\LeftMargin 1.25
\FirstLineIndent -1 # 1/4 inch indent, 1 inch wrap
\Marker q1
\Name q1 - Poetry - Indent Level 1
\Description Poetry text, level 1 indent (if multiple levels) (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_1
\StyleType Paragraph
\FontSize 12
\LeftMargin 1.25
\FirstLineIndent -1 # 1/4 inch indent, 1 inch wrap
\Marker q2
\Name q2 - Poetry - Indent Level 2
\Description Poetry text, level 2 indent (basic)
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_2
\StyleType Paragraph
\FontSize 12
\LeftMargin 1.25
\FirstLineIndent -.75 # 1/2 inch indent, 1 inch wrap
\Marker q3
\Name q3 - Poetry - Indent Level 3
\Description Poetry text, level 3 indent
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_3
\StyleType Paragraph
\FontSize 12
\LeftMargin 1.25
\FirstLineIndent -.5 # 3/4 inch indent, 1 inch wrap
\Marker q4
\Name q4 - Poetry - Indent Level 4
\Description Poetry text, level 4 indent
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_3
\StyleType Paragraph
\FontSize 12
\LeftMargin 1.25
\FirstLineIndent -.25 # 3/4 inch indent, 1 inch wrap
\Marker qc
\Name qc - Poetry - Centered
\Description Poetry text, centered
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic
\StyleType Paragraph
\FontSize 12
\Justification Center
\Marker qr
\Name qr - Poetry - Right Aligned
\Description Poetry text, Right Aligned
\OccursUnder c
\Rank 4
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic
\StyleType Paragraph
\FontSize 12
\Justification Right
\Marker qs
\Endmarker qs*
\Name qs...qs* - Poetry Text - Selah
\Description Poetry text, Selah
\OccursUnder q q1 q2 q3 q4 qc qr NEST
\Rank 4
\TextType VerseText
\TextProperties publishable vernacular poetic
\StyleType Character
\FontSize 12
\Italic
\Marker qa
\Name qa - Poetry - Acrostic Heading/Marker
\Description Poetry text, Acrostic marker/heading
\OccursUnder c
\Rank 4
\TextType Other
\TextProperties paragraph publishable vernacular poetic
\StyleType Paragraph
\FontSize 12
\Italic
\Marker qac
\Endmarker qac*
\Name qac...qac* - Poetry Text - Acrostic Letter
\Description Poetry text, Acrostic markup of the first character of a line of acrostic poetry
\OccursUnder q q1 q2 q3 q4 qc qr NEST
\Rank 4
\TextType Other
\TextProperties publishable vernacular poetic
\StyleType Character
\FontSize 12
\Italic
\Marker qm
\Name qm - Poetry - Embedded Text - Indent Level 1 - Single Level Only
\Description Poetry text, embedded, level 1 indent (if single level)
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr b
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.75 # 1/4 inch indent, 1 inch wrap
\Marker qm1
\Name qm1 - Poetry - Embedded Text - Indent Level 1
\Description Poetry text, embedded, level 1 indent (if multiple levels)
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr b
\TextType VerseText
\TextProperties paragraph publishable vernacular poetic level_1
\StyleType Paragraph
\FontSize 12
\LeftMargin 1
\FirstLineIndent -.75 # 1/4 inch indent, 1 inch wrap
\Marker qm2
\Name qm2 - Poetry - Embedded Text - Indent Level 2
\Description Poetry text, embedded, level 2 indent
\OccursUnder m mi nb p pc ph phi pi pi1 pi2 pi3 pr q q1 q2 q3 q4 qc qr b
\TextType VerseText