-
Notifications
You must be signed in to change notification settings - Fork 18
/
fb3_body.xsd
686 lines (686 loc) · 31.4 KB
/
fb3_body.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by Dmitry Gribov (LitRes) -->
<!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by GribUser (Shukovsky) -->
<schema xmlns:fb3b="http://www.fictionbook.org/FictionBook3/body" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fb3d="http://www.fictionbook.org/FictionBook3/description" targetNamespace="http://www.fictionbook.org/FictionBook3/body" elementFormDefault="qualified" attributeFormDefault="unqualified">
<!-- See license.txt for licensing information -->
<include schemaLocation="fb3_general.xsd"/>
<import namespace="http://www.w3.org/1999/xlink" schemaLocation="fb3_links.xsd"/>
<import namespace="http://www.fictionbook.org/FictionBook3/description" schemaLocation="fb3_descr.xsd"/>
<element name="fb3-body">
<annotation>
<documentation xml:lang="ru">Корневой элемент для текста в fb3. id привязывает его к дескрипшну. На всякий пожарный</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element name="section" maxOccurs="unbounded">
<complexType>
<complexContent>
<extension base="fb3b:SectionType">
<attribute name="output" type="fb3b:TrialShareType" default="default">
<annotation>
<documentation>Как работать с содержимым этой секции при генерации триального фрагмента?</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
</element>
<element name="notes" minOccurs="0" maxOccurs="unbounded">
<complexType>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element name="notebody" type="fb3b:SemiSimpleBodyType" maxOccurs="unbounded"/>
</sequence>
<attribute name="show"/>
</extension>
</complexContent>
</complexType>
</element>
</sequence>
<attribute name="id" type="fb3b:UUIDType" use="required"/>
</extension>
<!-- OB: тип изменен с ID на fb3b:UUIDType -->
</complexContent>
</complexType>
<unique name="SectionID">
<selector xpath=".//section"/>
<field xpath="@id"/>
</unique>
<key name="SimpleNotesLinks">
<selector xpath=".//note"/>
<field xpath="@xlink:href"/>
</key>
<keyref name="SimpleNotesTargets" refer="fb3b:SimpleNotesLinks">
<selector xpath="notes/note"/>
<field xpath="@id"/>
</keyref>
</element>
<complexType name="TitledType">
<annotation>
<documentation>Элемент с заголовком. Заголовок имеет многоуровневую структуру и может тащить за собой эпиграф</documentation>
</annotation>
<sequence>
<element name="title" minOccurs="0">
<annotation>
<documentation>Заголовок (потенциально многострочный) и подзаголовок</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="fb3b:SimpleTextType"/>
</complexContent>
</complexType>
</element>
<element name="epigraph" minOccurs="0" maxOccurs="25">
<annotation>
<documentation>Эпиграф, у которого, в свою очередь, может быть подпись - дата, имя автора эпиграфа и прочее</documentation>
</annotation>
<complexType>
<sequence>
<choice>
<element name="poem" type="fb3b:PoemType"/>
<element name="p" type="fb3b:StyleType"/>
</choice>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="poem" type="fb3b:PoemType"/>
<element name="p" type="fb3b:StyleType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0"/>
</sequence>
</complexType>
</element>
</sequence>
</complexType>
<complexType name="SimpleTextType">
<annotation>
<documentation>Многострочный текст без структурных изысков. Используется большей частью в заголовках</documentation>
</annotation>
<sequence>
<annotation>
<documentation>Кудрявая схема sequence+choice позволяет исключить br в качестве первого элемента. Сперва мы требуем текст.</documentation>
</annotation>
<element name="p" type="fb3b:StyleType"/>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0">
<annotation>
<documentation>"Полу подвал" нашего текстового фрагмента.</documentation>
</annotation>
</element>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="SectionType">
<annotation>
<documentation>Секция. Целостный фрагмент текста, обычно представляет часть книги - главу и т.п.</documentation>
</annotation>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element ref="fb3d:fb3-relations" minOccurs="0"/>
<element ref="fb3d:fb3-classification" minOccurs="0"/>
<element name="annotation" type="fb3b:BasicAnnotationType" minOccurs="0"/>
<choice>
<element name="section" type="fb3b:SectionType" maxOccurs="unbounded">
<annotation>
<documentation>В секции может быть либо другая секция</documentation>
</annotation>
</element>
<sequence>
<annotation>
<documentation>Либо собственно контент. Контент секции представлен полным набором элементов форматирования и в конце секции может иметь "подпись"</documentation>
</annotation>
<choice maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="subtitle" type="fb3b:StyleType">
<annotation>
<documentation>Обычно выделен отступами сверху-снизу, отбит по центру и выведен жирным начертанием. Нечто среднее между заголовком и абзацем. В содержании не отображается</documentation>
</annotation>
</element>
<element name="ol">
<complexType>
<complexContent>
<extension base="fb3b:LiHolderType"/>
</complexContent>
</complexType>
</element>
<element name="ul">
<complexType>
<complexContent>
<extension base="fb3b:LiHolderType"/>
</complexContent>
</complexType>
</element>
<element name="pre" type="fb3b:PHolderType"/>
<element name="table">
<complexType>
<complexContent>
<extension base="fb3b:TableType"/>
</complexContent>
</complexType>
</element>
<element name="poem">
<complexType>
<complexContent>
<extension base="fb3b:PoemType"/>
</complexContent>
</complexType>
</element>
<element name="blockquote" type="fb3b:PHolderType"/>
<element name="br" type="fb3b:BRType"/>
<element name="div" type="fb3b:DivBlockType">
<annotation>
<documentation>Блоки div могут включать в себя большую часть форматирования, но не блоки - вложенность "блоков" запрещена. Описание этой простой концепции выглядит достаточно монстроподобно, но суть проста</documentation>
</annotation>
</element>
</choice>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0">
<annotation>
<documentation>Подпись в конце секции - обычно тут че-нить типа "Москва, весна 2008" или "Конец" или "Продолжение следует"</documentation>
</annotation>
</element>
</sequence>
<element name="clipped">
<annotation>
<documentation>Либо метка, что секция опустошена в целях изготовления триального фрагмента</documentation>
</annotation>
<complexType/>
</element>
</choice>
</sequence>
<attribute name="id" type="fb3d:UUIDType" use="required"/>
<attribute name="article" type="boolean" use="optional">
<annotation>
<documentation>Научная статья?</documentation>
</annotation>
</attribute>
<attribute name="doi" type="fb3d:DOIType" use="optional">
<annotation>
<documentation>ID статьи в научном пространстве имен</documentation>
</annotation>
</attribute>
<attribute name="clipped" type="boolean">
<annotation>
<documentation>Признак секции, которую модифицировали (например, очистили от содержимого) при формирования фрагмента произведения</documentation>
</annotation>
</attribute>
<attribute name="first-char-pos" type="positiveInteger">
<annotation>
<documentation>Значение равно номеру позиции с которой она должна начинаться в полной версии произведения (см. fb3-fragment/@full_length в мета-файле). Полезно при навигации по фрагменту</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="DivBlockType">
<annotation>
<documentation>Выделенный блок текста. Весь блок можно нестандартно разместить и/или выделить</documentation>
</annotation>
<sequence>
<element name="title" type="fb3b:SimpleTextType" minOccurs="0"/>
<element name="marker" minOccurs="0">
<annotation>
<documentation>Помимо отсутствия вложенных блоков у блоков может быть маркер (их полно в книгах O'Relly, там всякие пальцы и восклицательные знаки на полях)</documentation>
</annotation>
<complexType>
<sequence>
<element name="img" type="fb3b:ImgType"/>
</sequence>
</complexType>
</element>
<choice>
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:PHolderType"/>
<element name="table" type="fb3b:TableType"/>
<element name="poem" type="fb3b:PoemType"/>
<element name="blockquote" type="fb3b:PHolderType"/>
</choice>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:PHolderType"/>
<element name="table" type="fb3b:TableType"/>
<element name="poem" type="fb3b:PoemType"/>
<element name="blockquote" type="fb3b:PHolderType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0">
<annotation>
<documentation>Так же блок может иметь подпись. Сюда, к примеру, можно затолкать и подпись к картинке - шрифт будет соответствующий</documentation>
</annotation>
</element>
</sequence>
<attributeGroup ref="fb3b:SizingAttributes"/>
<attribute name="float" use="optional">
<simpleType>
<restriction base="token">
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="center"/>
<enumeration value="default"/>
</restriction>
</simpleType>
</attribute>
<attribute name="align" type="fb3b:alignType" use="optional"/>
<attribute name="bindto" type="IDREF" use="optional"/>
<attribute name="border" type="boolean" use="optional"/>
<attribute name="id" type="ID" use="optional"/>
<attribute name="on-one-page" type="boolean" use="optional"/>
</complexType>
<complexType name="BasicAnnotationType">
<annotation>
<documentation>Подпись под текстом. В fb2 было text-author, теперь использование "подписи" расширено - просто абстрактная подпись под блоком</documentation>
</annotation>
<sequence>
<annotation>
<documentation>Кудрявая схема sequence+choice позволяет исключить br в качестве первого элемента. Сперва мы требуем текст.</documentation>
</annotation>
<choice>
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:PHolderType"/>
<element name="blockquote" type="fb3b:PHolderType"/>
</choice>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:PHolderType"/>
<element name="blockquote" type="fb3b:PHolderType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="SubscriptionType">
<annotation>
<documentation>Подпись под текстом. В fb2 было text-author, теперь использование "подписи" расширено - просто абстрактная подпись под блоком. Включает всё то же, что и аннотация, кроме, собственно, subscription</documentation>
</annotation>
<sequence>
<annotation>
<documentation>Кудрявая схема sequence+choice позволяет исключить br в качестве первого элемента. Сперва мы требуем текст.</documentation>
</annotation>
<choice>
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:ReducedPHolderType"/>
<element name="blockquote" type="fb3b:ReducedPHolderType"/>
</choice>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
<element name="pre" type="fb3b:ReducedPHolderType"/>
<element name="blockquote" type="fb3b:ReducedPHolderType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="BRType">
<annotation>
<documentation>Разрыв в тексте - обычно представлен пустой строкой. Так же может влиять на течение текста по отношению к блокам (возобновлять после их окончания) или на размещение на листах - clear="page" означает разрыв страницы на экране</documentation>
</annotation>
<attribute name="clear" type="fb3b:BrClearType" use="optional"/>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="TableType">
<annotation>
<documentation>Полноценные, по сути, таблицы, но без возможности вложенности</documentation>
</annotation>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element name="tr" maxOccurs="unbounded">
<complexType>
<choice maxOccurs="unbounded">
<element name="th" type="fb3b:TDType"/>
<element name="td" type="fb3b:TDType"/>
</choice>
<attribute name="align" type="fb3b:alignType" use="optional" default="left"/>
<attribute name="id" type="ID" use="optional"/>
</complexType>
</element>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</extension>
</complexContent>
</complexType>
<complexType name="TDType">
<annotation>
<documentation>Ячейка таблицы</documentation>
</annotation>
<complexContent>
<extension base="fb3b:PHolderType">
<attribute name="colspan" type="integer" use="optional"/>
<attribute name="rowspan" type="integer" use="optional"/>
<attribute name="align" type="fb3b:alignType" use="optional" default="left"/>
<attribute name="valign" type="fb3b:vAlignType" use="optional" default="top"/>
</extension>
</complexContent>
</complexType>
<complexType name="StyleType" mixed="true">
<annotation>
<documentation>Внутриабзацевый отформатированный текст - может содержать всеразличное форматирование, сноски и ссылки (и то, и то - не вложенное)</documentation>
</annotation>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="strong" type="fb3b:StyleType">
<annotation>
<documentation>Жирный текст, может выделяться в т.ч. и цветом, а не начертанием</documentation>
</annotation>
</element>
<element name="em" type="fb3b:StyleType">
<annotation>
<documentation>Курсив, может выделяться в т.ч. и цветом, а не начертанием</documentation>
</annotation>
</element>
<element name="strikethrough" type="fb3b:StyleType">
<annotation>
<documentation>Зачеркнутый текст</documentation>
</annotation>
</element>
<element name="sub" type="fb3b:StyleType">
<annotation>
<documentation>Подстрочный текст</documentation>
</annotation>
</element>
<element name="sup" type="fb3b:StyleType">
<annotation>
<documentation>Надстрочный текст</documentation>
</annotation>
</element>
<element name="code" type="fb3b:StyleType">
<annotation>
<documentation>Моноширный шрифт, возможно выделение цветом и/или подложкой</documentation>
</annotation>
</element>
<element name="underline" type="fb3b:StyleType">
<annotation>
<documentation>Подчеркивание (во избежание конфликта со ссылками следует использовать пунктирное подчеркивание)</documentation>
</annotation>
</element>
<element name="spacing" type="fb3b:StyleType">
<annotation>
<documentation>Разрядка</documentation>
</annotation>
</element>
<element name="span">
<complexType mixed="true">
<complexContent mixed="true">
<extension base="fb3b:StyleType">
<attribute name="class" type="normalizedString" use="optional"/>
</extension>
</complexContent>
</complexType>
</element>
<element name="note" type="fb3b:NoteType"/>
<element name="a" type="fb3b:LinkType"/>
<element name="smallcaps" type="fb3b:StyleType">
<annotation>
<documentation>Капитель (small-caps in CSS)</documentation>
</annotation>
</element>
<element name="img" type="fb3b:ImgType"/>
<element name="paper-page-break" type="fb3b:PaperPageBreakType"/>
</choice>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="StyleInLinkType" mixed="true">
<annotation>
<documentation>Внутрибзацевый отформатированный текст - может содержать всеразличное форматирование, но без ссылок и сносок</documentation>
</annotation>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="strong" type="fb3b:StyleInLinkType"/>
<element name="em" type="fb3b:StyleInLinkType"/>
<element name="strikethrough" type="fb3b:StyleInLinkType"/>
<element name="sub" type="fb3b:StyleInLinkType"/>
<element name="sup" type="fb3b:StyleInLinkType"/>
<element name="code" type="fb3b:StyleInLinkType"/>
<element name="underline" type="fb3b:StyleInLinkType"/>
<element name="spacing" type="fb3b:StyleInLinkType"/>
<element name="span">
<complexType mixed="true">
<complexContent mixed="true">
<extension base="fb3b:StyleInLinkType">
<attribute name="class" type="normalizedString" use="optional"/>
</extension>
</complexContent>
</complexType>
</element>
<element name="smallcaps" type="fb3b:StyleType"/>
<element name="img" type="fb3b:ImgType"/>
<element name="paper-page-break" type="fb3b:PaperPageBreakType"/>
</choice>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="LinkType" mixed="true">
<annotation>
<documentation>Ссылка - внешняя или на другой фрагмент этого же текста (адресация через id элемента)</documentation>
</annotation>
<complexContent mixed="true">
<extension base="fb3b:StyleInLinkType">
<attribute ref="xlink:href" use="required"/>
</extension>
</complexContent>
</complexType>
<complexType name="NoteType" mixed="true">
<annotation>
<documentation>Сноска в теле документа</documentation>
</annotation>
<complexContent mixed="true">
<extension base="fb3b:StyleInLinkType">
<attribute name="href" type="IDREF" use="required"/>
<attribute ref="xlink:role" use="optional"/>
<attribute name="autotext" use="optional" default="1">
<annotation>
<documentation>Автонумерация для подстраничных сносок (1, 2, 3; I, II, III, IV; a, b, c; *, **, ***; без автонумерации)</documentation>
</annotation>
<simpleType>
<restriction base="token">
<enumeration value="1"/>
<enumeration value="i"/>
<enumeration value="a"/>
<enumeration value="*"/>
<enumeration value="keep"/>
</restriction>
</simpleType>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="ImgType">
<annotation>
<documentation>Картинка. Имеет достаточно гибкое описание размера. Ссылается не на файл картинки (!) а на ее ID в .rels-файле. Может быть jpg, png, gif и svg</documentation>
</annotation>
<attribute name="src" type="anyURI" use="required"/>
<attribute name="alt" type="string" use="optional"/>
<attribute name="id" type="ID" use="optional"/>
<attributeGroup ref="fb3b:SizingAttributes"/>
</complexType>
<complexType name="PHolderType">
<annotation>
<documentation>Простой контейнер для нескольких абзацев текста. Не допускает сложное структурирование. Может содержать subscription</documentation>
</annotation>
<complexContent>
<extension base="fb3b:ReducedPHolderType">
<sequence>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="ReducedPHolderType">
<annotation>
<documentation>Простой контейнер для нескольких абзацев текста без subscription. Не допускает сложное структурирование</documentation>
</annotation>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element name="p" type="fb3b:StyleType"/>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="LiHolderType">
<annotation>
<documentation>OL|UL в html - списки. Немного добавляем им определенности и наперед задаем формат вложенности - вложение идет на уровне ul|ol, в него можно помещать другой ul|ol</documentation>
</annotation>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<annotation>
<documentation>Начинать список со вложенности не даем. В принципе, крохоборство, но заведомо бессмысленные последовательности отрубать на уровне валидации - правильно</documentation>
</annotation>
<element name="li" type="fb3b:StyleType"/>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="li" type="fb3b:StyleType"/>
<element name="ol" type="fb3b:LiHolderType"/>
<element name="ul" type="fb3b:LiHolderType"/>
</choice>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</extension>
</complexContent>
</complexType>
<complexType name="PoemType">
<annotation>
<documentation>Стихи. Состоят из строф и строк, строки представлены абзацами</documentation>
</annotation>
<complexContent>
<extension base="fb3b:TitledType">
<sequence>
<element name="stanza" type="fb3b:PHolderType" maxOccurs="unbounded"/>
<element name="subscription" type="fb3b:SubscriptionType" minOccurs="0"/>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</extension>
</complexContent>
</complexType>
<complexType name="SemiSimpleBodyType">
<annotation>
<documentation>Тело сноски. Может содержать большую часть структурирования, но не блоков</documentation>
</annotation>
<sequence>
<element name="title" type="fb3b:SimpleTextType" minOccurs="0"/>
<choice maxOccurs="unbounded">
<element name="p" type="fb3b:StyleType"/>
<element name="ol">
<complexType>
<complexContent>
<extension base="fb3b:LiHolderType"/>
</complexContent>
</complexType>
</element>
<element name="ul">
<complexType>
<complexContent>
<extension base="fb3b:LiHolderType"/>
</complexContent>
</complexType>
</element>
<element name="pre" type="fb3b:PHolderType"/>
<element name="table" type="fb3b:TableType"/>
<element name="poem" type="fb3b:PoemType"/>
<element name="blockquote" type="fb3b:PHolderType"/>
<element name="br" type="fb3b:BRType"/>
</choice>
</sequence>
<attribute name="id" type="ID" use="optional"/>
</complexType>
<complexType name="PaperPageBreakType">
<annotation>
<documentation>Описательный элемент, позволяющий соотнести электронный текст с бумажным</documentation>
</annotation>
<attribute name="page-before" type="positiveInteger" use="required"/>
<attribute name="page-after" type="positiveInteger" use="optional"/>
</complexType>
<simpleType name="alignType">
<annotation>
<documentation>Выравнивание для ячеек таблиц - горизонтальное</documentation>
</annotation>
<restriction base="token">
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="center"/>
<enumeration value="justify"/>
</restriction>
</simpleType>
<simpleType name="vAlignType">
<annotation>
<documentation>Выравнивание для ячеек таблиц - вертикальное</documentation>
</annotation>
<restriction base="token">
<enumeration value="top"/>
<enumeration value="middle"/>
<enumeration value="bottom"/>
</restriction>
</simpleType>
<simpleType name="BrClearType">
<annotation>
<documentation>Возможные значения для типа "очистки" блоков у элемента "br"</documentation>
</annotation>
<restriction base="token">
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="both"/>
<enumeration value="page"/>
</restriction>
</simpleType>
<simpleType name="TrialShareType">
<annotation>
<documentation>Возможные значения для типа "триальности" секций</documentation>
</annotation>
<restriction base="token">
<enumeration value="default">
<annotation>
<documentation>Эта секция может быть триальной или закрытой, на усмотрение конвертера</documentation>
</annotation>
</enumeration>
<enumeration value="trial">
<annotation>
<documentation>Эта секция должна присутствовать как в триальном фрагменте, так и в полном тексте</documentation>
</annotation>
</enumeration>
<enumeration value="trial-only">
<annotation>
<documentation>Эта секция должна присутствовать в триальном фрагменте, должна отсутствовать в полном тексте</documentation>
</annotation>
</enumeration>
<enumeration value="payed">
<annotation>
<documentation>Данная секция не может присутствовать в триальном фрагменте</documentation>
</annotation>
</enumeration>
</restriction>
</simpleType>
<simpleType name="ScreenSizeType">
<annotation>
<documentation>Допустимые единицы измерения при указании размеров</documentation>
</annotation>
<restriction base="normalizedString">
<pattern value="\d+(\.\d+)?(em|ex|%|mm)"/>
</restriction>
</simpleType>
<attributeGroup name="SizingAttributes">
<annotation>
<documentation>Стандартный набор атрибутов для элементов, имеющих фиксированные размеры</documentation>
</annotation>
<attribute name="width" type="fb3b:ScreenSizeType" use="optional"/>
<attribute name="min-width" type="fb3b:ScreenSizeType" use="optional"/>
<attribute name="max-width" type="fb3b:ScreenSizeType" use="optional"/>
</attributeGroup>
</schema>