-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathepub301-vocab-structure.xhtml
More file actions
1471 lines (1436 loc) · 96 KB
/
Copy pathepub301-vocab-structure.xhtml
File metadata and controls
1471 lines (1436 loc) · 96 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY trade "™">
<!ENTITY reg "®">
]>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:role="http://www.w3.org/1999/xhtml/vocab#"
xmlns:htu="http://www.daisy.org/ns/rdf/usage/html/#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xml:lang="ja"
version="XHTML+RDFa 1.0">
<head xmlns:epub="http://www.idpf.org/epub/vocab#">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta property="dcterms:creator" content="Wataru Yoshimura"/>
<meta property="dcterms:issued" content="2014-06-28"/>
<meta property="dcterms:source" content="http://idpf.org/epub/vocab/structure/"/>
<meta property="dcterms:description" content="EPUB 3 Structural Semantics Vocabulary。この語彙(EPUB3 の一部)は、書かれた作品の構造意味論の記述に関連するプロパティのセットを定義する。語彙は一般的にホスト言語に依存せず、主に HTML 語彙の要素の意味的な抑揚を有効にするために構成されている。"/>
<title>EPUB 3 Structural Semantics Vocabulary(日本語訳版)</title>
<link rel="stylesheet" type="text/css" href="css/epub-spec.css"/>
<link rel="stylesheet" type="text/css" href="css/translation-memo.css"/>
<style type="text/css">
p.identity {
margin-top: -3em;
font-size: 75%;
}
p.noindent {
margin-left: -2.4em;
}
span.pubdate {
color: rgb(0,0,0);
}
span.status {
color: rgb(190,0,0);
font-size: 80%;
font-weight: bold;
text-transform: uppercase;
margin-left: 0.3em;
}
</style>
</head>
<body xmlns:epub="http://www.idpf.org/epub/vocab#">
<div class="translation-attention">
<p>この文書は「<a href="http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html">EPUB 3 Structural Semantics Vocabulary</a>」の日本語訳である。最新の文書は <a href="http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html">http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html</a> である。原文もしくは完全な情報は、<a href="http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html">http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html</a> を参照されたい。</p>
<p>この日本語訳は参考である。公式な文書ではなく、翻訳・解釈の正確性を保証していない。</p>
<p>本の装幀に関する用語は、洋書が前提になっている。そのため、奥付が前方に置かれるなど、日本の本とは異なる構造になっているので注意されたい。洋書の構造を理解するあたり、以下のサイトを参考にさせて頂いた。</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Book_design">Book design - Wikipedia, the free encyclopedia</a></li>
<li><a href="http://occultamerica2.blog.so-net.ne.jp/2010-02-22">本の部分の英語名称メモ Names of Parts of a Book:カリフォルニア時間 ホイ:So-netブログ</a></li>
</ul>
<dl>
<dt>公開日:</dt>
<dd>2013-11-08</dd>
<dt>改定日:</dt>
<dd>2015-09-28</dd>
<dt>翻訳者:</dt>
<dd>Wataru Yoshimura</dd>
</dl>
</div>
<h1 property="dcterms:title">EPUB 3 Structural Semantics Vocabulary</h1>
<div class="printhistory">
<p class="identity"><span class="pubdate">2015年8月26日</span></p>
<dl class="printhistory">
<dt>この版</dt>
<dd><a class="link" href="http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html">http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150826.html</a></dd>
<dt>最新版</dt>
<dd><a class="link" href="http://www.idpf.org/epub/vocab/structure">http://www.idpf.org/epub/vocab/structure</a></dd>
<dt>前の版</dt>
<dd><a class="link" href="http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150717.html">http://www.idpf.org/epub/vocab/structure/epub-vocab-structure-20150717.html</a></dd>
</dl>
<p class="diff">このドキュメントの<a class="link" href="https://github.com/IDPF/epub-revision/commits/master/src/vocab/structure.n3">改訂履歴</a>は、レビュー用として利用できる。</p>
</div>
<h2 id="tocxsl">目次</h2>
<ul>
<li class="first"><a href="#h_statusofthisdocument">この文書のステータス</a></li>
<li class="first"><a href="#h_aboutthisvocabulary">語彙について</a></li>
<li class="first"><a href="#h_revisionpolicy">改訂方針</a></li>
<li class="first"><a href="#h_partitions">文書のパーティション</a></li>
<li class="first"><a href="#h_divisions">文書(内)のディビジョン</a></li>
<li class="first"><a href="#h_sections">文書のセクションとコンポーネント</a></li>
<li class="first"><a href="#h_navigation">文書のナビゲーション</a></li>
<li class="first"><a href="#h_references">文書の参照セクション</a>
<ul>
<li><a href="#h_indexes">インデックス</a></li>
<li><a href="#h_glossaries">用語集</a></li>
<li><a href="#h_bibliographies">参考文献</a></li>
</ul>
</li>
<li class="first"><a href="#h_preliminary">予備的なセクションとコンポーネント</a></li>
<li class="first"><a href="#h_asides">補完的なコンテンツ</a></li>
<li class="first"><a href="#h_titles">タイトルと見出し</a></li>
<li class="first"><a href="#h_educational">教育用のコンテンツ</a>
<ul>
<li><a href="#h_learning-obj">学習目標</a></li>
<li><a href="#h_testing">試験</a></li>
</ul>
</li>
<li class="first"><a href="#h_comics">漫画</a></li>
<li class="first"><a href="#h_notes">注記と注釈</a></li>
<li class="first"><a href="#h_links">参照文献</a></li>
<li class="first"><a href="#h_document-text">文書のテキスト</a></li>
<li class="first"><a href="#h_pagination">ページネーション</a></li>
<li class="first"><a href="#h_tables">表</a></li>
<li class="first"><a href="#h_lists">リスト</a></li>
<li class="first"><a href="#h_figures">図表</a></li>
</ul>
<div>
<h2 id="h_statusofthisdocument">この文書のステータス</h2>
<p>このドキュメントは、<a href="http://www.idpf.org/epub/profiles/edu/10">EDUPUB profile</a> からのドラフトの用語が含まれている。</p>
<p><a href="#h_indexes">Indexes</a> セクションのすべての用語は、<code>index</code> 用語を除いて、現在、Proposed Specification である <a href="http://www.idpf.org/epub/idx">EPUB Indexes 仕様</a>の新しい機能である。</p>
<p><span class="status">[draft]</span> マークの用語の使用はいずれも、それぞれの仕様が最終的に勧告仕様のステータスに達するまで、実験的であると考慮するべきである。</p>
<p>廃止予定の用語は、<span class="status">[deprecated]</span> によって識別できる。これらの用語は、もはや使用することは推奨されない。</p>
<p>ラベルのないすべての用語は、安定していると考えられる。</p>
</div>
<div>
<h2 id="h_aboutthisvocabulary">語彙について</h2>
<div property="dcterms:description">
<p>この語彙(EPUB® 3 の一部)は、書かれた作品の構造意味論の記述に関連するプロパティのセットを定義する。語彙は一般的にホスト言語に依存せず、主に HTML 語彙の要素の意味的な抑揚を有効にするために構成されている。</p>
<p class="output-htu-expl" id="htu-expl"><i>HTML で使用するコンテクスト</i>フィールドは、指定されたプロパティが適切と見なされている HTML5 文書のコンテクストを示している。製作者は、特に記載されていない HTML5 のマークアップ要素にプロパティを利用してもよいが(may)、セマンティクスは、それらが含んでいる要素のセマンティクスのサブセットを表現することを示し、意味論的に中性な要素に既存の要素の意味を加えないことを確保しなければならない(must)。</p>
<p class="output-htu-expl">HTML5 文書を処理するとき、使用コンテクストがホストの指定によって明示的に上書きまたは拡張でない限り、リーディングシステムはこのような非適合のプロパティを無視してもよい。</p>
<p><i>使用方法の詳細</i>セクションでは、指定されたプロパティを定義または利用している IDPF 仕様を特定する。</p>
</div>
<h2 id="h_revisionpolicy">改訂方針</h2>
<p>このドキュメントは、いつでも変更される可能性がある。この語彙で定義された用語は削除されることはないが、廃止されることがある。</p>
<p>追加、変更、明確化の要求は、<a href="https://code.google.com/p/epub-revision/issues/list">EPUB 3 Revision Tracker</a> を通して行わなければならない(must)。</p>
</div>
<div id="vocab" class="vocabulary">
<div id="partitions" about="#partitions" typeof="rdf:Bag">
<h2 id="h_partitions" about="#partitions" rev="dcterms:title">文書のパーティション</h2>
<dl about="#partitions" rev="rdfs:member">
<dt id="cover" about="#cover" typeof="rdf:Property">cover</dt>
<dd about="#cover" property="rdfs:comment" datatype="xsd:string">
<p>出版物のカバー、ジャケットの情報など。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="frontmatter" about="#frontmatter" typeof="rdf:Property">frontmatter</dt>
<dd about="#frontmatter" property="rdfs:comment" datatype="xsd:string">
<p>出版物の主要なコンテンツの予備的な資料、例えば目次や献辞など。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="bodymatter" about="#bodymatter" typeof="rdf:Property">bodymatter</dt>
<dd about="#bodymatter" property="rdfs:comment" datatype="xsd:string">
<p>出版物のメインコンテンツ。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="backmatter" about="#backmatter" typeof="rdf:Property">backmatter</dt>
<dd about="#backmatter" property="rdfs:comment" datatype="xsd:string">
<p>出版物の主要なコンテンツの後に在る補助的な資料、例えば索引や付録など。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
</dl>
</div>
<div id="divisions" about="#divisions" typeof="rdf:Bag">
<h2 id="h_divisions" about="#divisions" rev="dcterms:title">文書(内)のディビジョン</h2>
<dl about="#divisions" rev="rdfs:member">
<dt id="volume" about="#volume" typeof="rdf:Property">volume</dt>
<dd about="#volume" property="rdfs:comment" datatype="xsd:string">
<p>内容物の構成要素。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="part" about="#part" typeof="rdf:Property">part</dt>
<dd about="#part" property="rdfs:comment" datatype="xsd:string">
<p>作品の主要な構造上のディビジョン、一般的に一組の関連した章を包む。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="chapter" about="#chapter" typeof="rdf:Property">chapter</dt>
<dd about="#chapter" property="rdfs:comment" datatype="xsd:string">
<p>作品の主要な構造上のディビジョン。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="subchapter" about="#subchapter" typeof="rdf:Property">subchapter</dt>
<dd about="#subchapter" property="rdfs:comment" datatype="xsd:string">
<p>章の主要な補助的なディビジョン。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
<dt id="division" about="#division" typeof="rdf:Property">division</dt>
<dd about="#division" property="rdfs:comment" datatype="xsd:string">
<p>一部(特に法律など)の下部構造として表示されることのある主要な構造上のディビジョン。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a></p>
</dd>
</dl>
</div>
<div id="sections" about="#sections" typeof="rdf:Bag">
<h2 id="h_sections" about="#sections" rev="dcterms:title">文書のセクションとコンポーネント</h2>
<p about="#sections" rev="dcterms:description">一般的に出版物の bodymatter に生じるセクションとコンポーネント。</p>
<dl about="#sections" rev="rdfs:member">
<dt id="abstract" about="#abstract" typeof="rdf:Property">abstract <span class="status">[draft]</span>
</dt>
<dd about="#abstract" property="rdfs:comment" datatype="xsd:string">
<p>作品またはセクションの本質的なアイデア、コンセプトと結び、またはその中以外の短い概要。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>, <a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="foreword" about="#foreword" typeof="rdf:Property">foreword</dt>
<dd about="#foreword" property="rdfs:comment" datatype="xsd:string">
<p>作品の前の導入部分。一般的に作品の著者によって書かれない。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="preface" about="#preface" typeof="rdf:Property">preface</dt>
<dd about="#preface" property="rdfs:comment" datatype="xsd:string">
<p>作品の前の導入部分。一般的に作品の作者によって書かれる。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="prologue" about="#prologue" typeof="rdf:Property">prologue</dt>
<dd about="#prologue" property="rdfs:comment" datatype="xsd:string">
<p>物語の背景を設定する導入部分。一般的に物語そのもの。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="introduction" about="#introduction" typeof="rdf:Property">introduction</dt>
<dd about="#introduction" property="rdfs:comment" datatype="xsd:string">
<p>作品のはじまりのセクション。一般的に読者へ作品の内容の範囲または性質を紹介する。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="preamble" about="#preamble" typeof="rdf:Property">preamble</dt>
<dd about="#preamble" property="rdfs:comment" datatype="xsd:string">
<p>作品の始まりのセクション。一般的に作品の内容の範囲または性質に関して紹介のおよび/または説明的な散文を含む。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="conclusion" about="#conclusion" typeof="rdf:Property">conclusion</dt>
<dd about="#conclusion" property="rdfs:comment" datatype="xsd:string">
<p>一般的に作品を締めくくる結びのセクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="epilogue" about="#epilogue" typeof="rdf:Property">epilogue</dt>
<dd about="#epilogue" property="rdfs:comment" datatype="xsd:string">
<p>一般的に、物語の一部であるが、本筋より後のことを書かれている結びのセクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="afterword" about="#afterword" typeof="rdf:Property">afterword</dt>
<dd about="#afterword" property="rdfs:comment" datatype="xsd:string">
<p>著者または物語において重要な人物による締めくくりの言葉で、一般的に、物語が書かれたことについての洞察や、そのタイムラインから発生した重要または関連するイベントを提供する。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="epigraph" about="#epigraph" typeof="rdf:Property">epigraph</dt>
<dd about="#epigraph" property="rdfs:comment" datatype="xsd:string">
<p>関連はあるが、テキストに不可欠ではない引用。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
</dl>
</div>
<div id="navigation" about="#navigation" typeof="rdf:Bag">
<h2 id="h_navigation" about="#navigation" rev="dcterms:title">文書のナビゲーション</h2>
<dl about="#navigation" rev="rdfs:member">
<dt id="toc" about="#toc" typeof="rdf:Property">toc</dt>
<dd about="#toc" property="rdfs:comment" datatype="xsd:string">
<p>目次、典型的に作品の前付けまたはセクションの冒頭に出現する。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="toc-brief" about="#toc-brief" typeof="rdf:Property">toc-brief <span class="status">[draft]</span></dt>
<dd about="#toc-brief" property="rdfs:comment" datatype="xsd:string">
<p>目次の短縮版。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="landmarks" about="#landmarks" typeof="rdf:Property">landmarks</dt>
<dd about="#landmarks" property="rdfs:comment" datatype="xsd:string">
<p>出版物内の馴染み深く/繰り返すコンポーネントへの参照のコレクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="loa" about="#loa" typeof="rdf:Property">loa</dt>
<dd about="#loa" property="rdfs:comment" datatype="xsd:string">
<p>作品に含まれているオーディオクリップの一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="loi" about="#loi" typeof="rdf:Property">loi</dt>
<dd about="#loi" property="rdfs:comment" datatype="xsd:string">
<p>作品に含まれているイラストの一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="lot" about="#lot" typeof="rdf:Property">lot</dt>
<dd about="#lot" property="rdfs:comment" datatype="xsd:string">
<p>作品に含まれている見出しの一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="lov" about="#lov" typeof="rdf:Property">lov</dt>
<dd about="#lov" property="rdfs:comment" datatype="xsd:string">
<p>作品に含まれているビデオクリップの一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
</dl>
</div>
<div id="references" about="#references" typeof="rdf:Bag">
<h2 id="h_references" about="#references" rev="dcterms:title">文書の参照セクション</h2>
<dl about="#references" rev="rdfs:member">
<dt id="appendix" about="#appendix" typeof="rdf:Property">appendix</dt>
<dd about="#appendix" property="rdfs:comment" datatype="xsd:string">
<p>補足情報。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="colophon" about="#colophon" typeof="rdf:Property">colophon</dt>
<dd about="#colophon" property="rdfs:comment" datatype="xsd:string">
<p>概要は普通、出版物の最後に置かれ、(出版物の)版に関連のあるプロダクションノートを説明する。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="credits" about="#credits" typeof="rdf:Property">credits <span class="status">[draft]</span></dt>
<dd about="#credits" property="rdfs:comment" datatype="xsd:string">
<p><a href="#credit">credit</a> のコレクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="keywords" about="#keywords" typeof="rdf:Property">keywords <span class="status">[draft]</span></dt>
<dd about="#keywords" property="rdfs:comment" datatype="xsd:string">
<p><a href="#keyword">keyword</a> のコレクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
</dl>
<div id="indexes" about="#indexes" typeof="rdf:Bag">
<h3 id="h_indexes" about="#indexes" rev="dcterms:title">インデックス</h3>
<dl about="#indexes" rev="rdfs:member">
<dt id="index" about="#index" typeof="rdf:Property">index</dt>
<dd about="#index" property="rdfs:comment" datatype="xsd:string">
<p>出版物内の特定の情報の、通常はアルファベット順に並べられた、詳細なリスト。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-body-element-0">body 要素</a>
</p>
</dd>
<dd>
<p>
<span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-index">EPUB Indexes – index プロパティ</a>
</p>
</dd>
<dt id="index-headnotes" about="#index-headnotes" typeof="rdf:Property">index-headnotes</dt>
<dd about="#index-headnotes" property="rdfs:comment" datatype="xsd:string">
<p>index を使用して、ユーザーを支援する物語や他のコンテンツ。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-headnotes" rel="role:scope" resource="#index"><a href="#index">index</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-header-element">header 要素</a></p>
</dd>
<dd>
<p>
<span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-headnotes">EPUB Indexes – index-headnotes プロパティ</a>
</p>
</dd>
<dt id="index-legend" about="#index-legend" typeof="rdf:Property">index-legend</dt>
<dd about="#index-legend" property="rdfs:comment" datatype="xsd:string">
<p>記号、略語または index で使用される特殊な書式とその意味の一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span> <span class="subpropref" about="#index-legend" rel="role:scope" resource="#index-headnotes"><a href="#index-headnotes">index-headnotes</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-dl-element">dl 要素</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtml#bb-legend">EPUB Indexes – index-legend プロパティ</a></p>
</dd>
<dt id="index-group" about="#index-group" typeof="rdf:Property">index-group</dt>
<dd about="#index-group" property="rdfs:comment" datatype="xsd:string">
<p>例えば、メインエントリの先頭文字(starting letter)など、共通の特徴を共有する連続したメインエントリのコレクション。</p>
</dd>
<dd>
<p>
<span class="subproplabel">必須の親コンテクスト:</span> <span class="subpropref" about="#index-group" rel="role:scope" resource="#index"> <a href="#index">index</a></span>
</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtml#bb-group">EPUB Indexes – index-group プロパティ</a></p>
</dd>
<dt id="index-entry-list" about="#index-entry-list" typeof="rdf:Property">index-entry-list</dt>
<dd about="#index-entry-list" property="rdfs:comment" datatype="xsd:string">
<p>連続したメインエントリまたはサブエントリのコレクション。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-entry-list" rel="role:scope" resource="#index-entry"> <a href="#index-entry">index-entry</a></span>、<span class="subpropref" about="#index-entry-list" rel="role:scope" resource="#index-group"> <a href="#index-group">index-group</a> </span> と <span class="subpropref" about="#index-entry-list" rel="role:scope" resource="#index"><a href="#index">index</a></span></p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/grouping-content.html#the-ul-element">ul 要素</a>。このプロパティは、index-headnotes 内を除いて、ul が index の先祖を持つ場合、暗黙的に指定される</p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtml#bb-entry-list">EPUB Indexes – index-entry-list プロパティ</a></p>
</dd>
<dt id="index-entry" about="#index-entry" typeof="rdf:Property">index-entry</dt>
<dd about="#index-entry" property="rdfs:comment" datatype="xsd:string">
<p>任意の付帯するサブエントリ、ロケータ、相互参照と/または編集者注を持つある用語。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-entry" rel="role:scope" resource="#index-entry-list"><a href="#index-entry-list">index-entry-list</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/grouping-content.html#the-li-element">li 要素</a>。このプロパティは、親 ul が型 index-entry-list(暗黙的または明示的)の場合、暗黙的に指定される</p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-entry">EPUB Indexes – index-entry プロパティ</a></p>
</dd>
<dt id="index-term" about="#index-term" typeof="rdf:Property">index-term</dt>
<dd about="#index-term" property="rdfs:comment" datatype="xsd:string">
<p>単語、語句、文字列、グリフまたはインデックス可能なコンテンツを表す画像。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-term" rel="role:scope" resource="#index-xref-related"><a href="#index-xref-related">index-xref-related</a></span>、<span class="subpropref" about="#index-term" rel="role:scope" resource="#index-entry"> <a href="#index-entry">index-entry</a></span> と <span class="subpropref" about="#index-term" rel="role:scope" resource="#index-xref-preferred"><a href="#index-xref-preferred">index-xref-preferred</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a>;典型的に <a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-span-element">span 要素</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-term">EPUB Indexes – index-term プロパティ</a></p>
</dd>
<dt id="index-editor-note" about="#index-editor-note" typeof="rdf:Property">index-editor-note</dt>
<dd about="#index-editor-note" property="rdfs:comment" datatype="xsd:string">
<p>単一のエントリに関連する編集者注。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span> <span class="subpropref" about="#index-editor-note" rel="role:scope" resource="#index-entry"> <a href="#index-entry">index-entry</a> </span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a></p>
</dd>
<dd>
<p>
<span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-editor-note">EPUB Indexes – index-editor-note プロパティ</a>
</p>
</dd>
<dt id="index-locator" about="#index-locator" typeof="rdf:Property">index-locator</dt>
<dd about="#index-locator" property="rdfs:comment" datatype="xsd:string">
<p>出版物内のインデックス化されたコンテンツの存在を参照。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-locator" rel="role:scope" resource="#index-entry"><a href="#index-entry">index-entry</a></span>、<span class="subpropref" about="#index-locator" rel="role:scope" resource="#index-locator-list"><a href="#index-locator-list">index-locator-list</a></span> と <span class="subpropref" about="#index-locator" rel="role:scope" resource="#index-locator-range"><a href="#index-locator-range">index-locator-range</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-a-element">a 要素</a>。このプロパティは、親コンテクストが、index-locator-list または index-locator-range の場合、暗黙的に指定される</p>
</dd>
<dd>
<p>
<span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-locator">EPUB Indexes – index-locator プロパティ</a>
</p>
</dd>
<dt id="index-locator-list" about="#index-locator-list" typeof="rdf:Property">index-locator-list</dt>
<dd about="#index-locator-list" property="rdfs:comment" datatype="xsd:string">
<p>連続ロケータまたはロケータの範囲のコレクション。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-locator-list" rel="role:scope" resource="#index-entry"><a href="#index-entry">index-entry</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/grouping-content.html#the-ul-element">ul 要素</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-locator-list">EPUB Indexes – index-locator-list プロパティ</a></p>
</dd>
<dt id="index-locator-range" about="#index-locator-range" typeof="rdf:Property">index-locator-range</dt>
<dd about="#index-locator-range" property="rdfs:comment" datatype="xsd:string">
<p>単一のポイントよりはむしろコンテンツの範囲に用語に接続するロケータの組み合わせ。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-locator-range" rel="role:scope" resource="#index-locator-list"><a href="#index-locator-list">index-locator-list</a></span> と <span class="subpropref" about="#index-locator-range" rel="role:scope" resource="#index-entry"><a href="#index-entry">index-entry</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-locator-range">EPUB Indexes – index-locator-range プロパティ</a></p>
</dd>
<dt id="index-xref-preferred" about="#index-xref-preferred" typeof="rdf:Property">index-xref-preferred</dt>
<dd about="#index-xref-preferred" property="rdfs:comment" datatype="xsd:string">
<p>インデックス内のひとつの用語からひとつ以上の推奨する用語または用語カテゴリの参照(“XXXを見よ”に類似)。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-xref-preferred" rel="role:scope" resource="#index-entry"><a href="#index-entry">index-entry</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-xref-preferred">EPUB Indexes – index-xref-preferred プロパティ</a></p>
</dd>
<dt id="index-xref-related" about="#index-xref-related" typeof="rdf:Property">index-xref-related</dt>
<dd about="#index-xref-related" property="rdfs:comment" datatype="xsd:string">
<p>インデックス内のひとつの用語からひとつ以上の関連する用語または用語カテゴリの参照(“XXXも見よ”に類似)。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-xref-related" rel="role:scope" resource="#index-entry"><a href="#index-entry">index-entry</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-xref-related">EPUB Indexes – index-xref-related プロパティ</a></p>
</dd>
<dt id="index-term-category" about="#index-term-category" typeof="rdf:Property">index-term-category</dt>
<dd about="#index-term-category" property="rdfs:comment" datatype="xsd:string">
<p>単語、語句、文字列、グリフまたはインデックス内の用語のカテゴリを表す画像。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-term-category" rel="role:scope" resource="#index-xref-related"><a href="#index-xref-related">index-xref-related</a></span> と <span class="subpropref" about="#index-term-category" rel="role:scope" resource="#index-xref-preferred"><a href="#index-xref-preferred">index-xref-preferred</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-a-element">a 要素</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-term-category">EPUB Indexes – index-term-category プロパティ</a></p>
</dd>
<dt id="index-term-categories" about="#index-term-categories" typeof="rdf:Property">index-term-categories</dt>
<dd about="#index-term-categories" property="rdfs:comment" datatype="xsd:string">
<p>インデックスに関連している用語カテゴリのリストのためのラッパー。</p>
</dd>
<dd>
<p><span class="subproplabel">必須の親コンテクスト:</span><span class="subpropref" about="#index-term-categories" rel="role:scope" resource="#index-xref-related"><a href="#index-xref-related">index-xref-related</a></span> と <span class="subpropref" about="#index-term-categories" rel="role:scope" resource="#index-xref-preferred"><a href="#index-xref-preferred">index-xref-preferred</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-a-element">a 要素</a></p>
</dd>
<dd>
<p><span class="subproplabel">使用方法の詳細:</span><a href="epub-indexes.xhtmlbb-term-categories">EPUB Indexes – index-term-categories プロパティ</a></p>
</dd>
</dl>
</div>
<div id="glossaries" about="#glossaries" typeof="rdf:Bag">
<h3 id="h_glossaries" about="#glossaries" rev="dcterms:title">用語集</h3>
<dl about="#glossaries" rev="rdfs:member">
<dt id="glossary" about="#glossary" typeof="rdf:Property">glossary</dt>
<dd about="#glossary" property="rdfs:comment" datatype="xsd:string">
<p>それらの語彙に関して定義を持つある知識の特定領域内の語彙のアルファベット順リスト。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/grouping-content.html#the-dl-element">dl 要素</a>、<a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="glossterm" about="#glossterm" typeof="rdf:Property">glossterm</dt>
<dd about="#glossterm" property="rdfs:comment" datatype="xsd:string">
<p>glossary の語彙。</p>
</dd>
<dd>
<p><span class="subproplabel">必要とされる親のコンテクスト:</span><span class="subpropref" about="#glossterm" rel="role:scope" resource="#glossary"><a href="#glossary">glossary</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span>プロパティを表示する要素が <a href="#glossary">glossary</a> プロパティをマークしている <a href="http://www.w3.org/TR/html5/grouping-content.html#the-dl-element">dl 要素</a>内の <a href="http://www.w3.org/TR/html5/grouping-content.html#the-dt-element">dt 要素</a>の時、所定の dt 要素に glossterm プロパティが暗黙的に指定される。</p>
</dd>
<dt id="glossdef" about="#glossdef" typeof="rdf:Property">glossdef</dt>
<dd about="#glossdef" property="rdfs:comment" datatype="xsd:string">
<p><a href="#glossterm">glossary の語彙</a>の定義。</p>
</dd>
<dd>
<p><span class="subproplabel">必要とされる親のコンテクスト:</span><span class="subpropref" about="#glossdef" rel="role:scope" resource="#glossary"><a href="#glossary">glossary</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span>プロパティを表示する要素が <a href="#glossary">glossary</a> プロパティをマークしている <a href="http://www.w3.org/TR/html5/grouping-content.html#the-dl-element">dl</a> 要素内の <a href="http://www.w3.org/TR/html5/grouping-content.html#the-dd-element">dd</a> 要素の時、所定の dd 要素に glossdef プロパティが暗黙的に指定される。要素コンテクストが <a href="http://www.w3.org/TR/html5/sections.html#the-dt-element">dd</a> 要素でそして明示的な glossterm へのリンクが提供されないとき、この glossdef を定義するのは直前の <a href="http://www.w3.org/TR/html5/sections.html#the-dt-element">dt 要素</a>の兄弟要素である。</p>
</dd>
</dl>
</div>
<div id="bibliographies" about="#bibliographies" typeof="rdf:Bag">
<h3 id="h_bibliographies" about="#bibliographies" rev="dcterms:title">参考文献</h3>
<dl about="#bibliographies" rev="rdfs:member">
<dt id="bibliography" about="#bibliography" typeof="rdf:Property">bibliography</dt>
<dd about="#bibliography" property="rdfs:comment" datatype="xsd:string">
<p>引用した作品の一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a></p>
</dd>
<dt id="biblioentry" about="#biblioentry" typeof="rdf:Property">biblioentry</dt>
<dd about="#biblioentry" property="rdfs:comment" datatype="xsd:string">
<p><a href="#bibliography">bibliography</a> 内のエントリ。</p>
</dd>
<dd>
<p><span class="subproplabel">必要とされる親のコンテクスト:</span>
<span class="subpropref" about="#biblioentry" rel="role:scope" resource="#bibliography">
<a href="#bibliography">bibliography</a></span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
</dl>
</div>
</div>
<div id="preliminary" about="#preliminary" typeof="rdf:Bag">
<h2 id="h_preliminary" about="#preliminary" rev="dcterms:title">予備的なセクションとコンポーネント</h2>
<p about="#preliminary" rev="dcterms:description">一般的に出版物の frontmatter で発生する予備的なセクションとコンポーネント。</p>
<dl about="#preliminary" rev="rdfs:member">
<dt id="titlepage" about="#titlepage" typeof="rdf:Property">titlepage</dt>
<dd about="#titlepage" property="rdfs:comment" datatype="xsd:string">
<p>作品の標題紙(タイトルページ)。本や論文の冒頭にある、標題(タイトル)などを記したページのこと。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="halftitlepage" about="#halftitlepage" typeof="rdf:Property">halftitlepage</dt>
<dd about="#halftitlepage" property="rdfs:comment" datatype="xsd:string">
<p>作品の略標題紙(ハーフタイトルページ)。標題紙の前にある、折記号のみの白紙。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="copyright-page" about="#copyright-page" typeof="rdf:Property">copyright-page</dt>
<dd about="#copyright-page" property="rdfs:comment" datatype="xsd:string">
<p>作品の著作権のページ。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="seriespage" about="#seriespage" typeof="rdf:Property">seriespage <span class="status"> [draft]</span></dt>
<dd about="#seriespage" property="rdfs:comment" datatype="xsd:string">
<p>関連する出版物をリスト化するために使用されるマーケティングのセクション。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="acknowledgments" about="#acknowledgments" typeof="rdf:Property">acknowledgments</dt>
<dd about="#acknowledgments" property="rdfs:comment" datatype="xsd:string">
<p>作品の実現に関係した実在者の謝辞を含んでいる一節。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="imprint" about="#imprint" typeof="rdf:Property">imprint</dt>
<dd about="#imprint" property="rdfs:comment" datatype="xsd:string">
<p>作品の出版や販売に関連する情報。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="imprimatur" about="#imprimatur" typeof="rdf:Property">imprimatur</dt>
<dd about="#imprimatur" property="rdfs:comment" datatype="xsd:string">
<p>作品の発行を承認している正式な声明。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="contributors" about="#contributors" typeof="rdf:Property">contributors</dt>
<dd about="#contributors" property="rdfs:comment" datatype="xsd:string">
<p>作品の貢献者の一覧。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="other-credits" about="#other-credits" typeof="rdf:Property">other-credits</dt>
<dd about="#other-credits" property="rdfs:comment" datatype="xsd:string">
<p>以前に出版された作品の一部、イラストのクレジットと著作権のある資料からの引用の許可への謝辞。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="errata" about="#errata" typeof="rdf:Property">errata</dt>
<dd about="#errata" property="rdfs:comment" datatype="xsd:string">
<p>出版物の正誤表は、一般的に印刷された作品では、単独の用紙が挿入されている。製本されることもある。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="dedication" about="#dedication" typeof="rdf:Property">dedication</dt>
<dd about="#dedication" property="rdfs:comment" datatype="xsd:string">
<p>ひとりあるいは複数の特定の人に宛てられる献辞。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
<dt id="revision-history" about="#revision-history" typeof="rdf:Property">revision-history</dt>
<dd about="#revision-history" property="rdfs:comment" datatype="xsd:string">
<p>作品に加えられた変更の記録。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a></p>
</dd>
</dl>
</div>
<div id="asides" about="#asides" typeof="rdf:Bag">
<h2 id="h_asides" about="#asides" rev="dcterms:title">補完的なコンテンツ</h2>
<dl about="#asides" rev="rdfs:member">
<dt id="case-study" about="#case-study" typeof="rdf:Property">case-study<span class="status"> [draft]</span></dt>
<dd about="#case-study" property="rdfs:comment" datatype="xsd:string">
<p>特定のトピックの詳細な分析。</p>
</dd>
<dd>
<p><span class="subpropref" about="#case-study" rel="rdfs:subPropertyOf" resource="http://www.w3.org/1999/xhtml/vocab/#complementary"><a href="http://www.w3.org/1999/xhtml/vocab/#complementary">xhv:complementary</a> <span class="subproplabel">から継承</span></span></p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>
</p>
</dd>
<dt id="help" about="#help" typeof="rdf:Property">help</dt>
<dd about="#help" property="rdfs:comment" datatype="xsd:string">
<p>コンテンツを明確にしたり補強する情報。</p>
</dd>
<dd>
<p><span class="subpropref" about="#help" rel="rdfs:subPropertyOf" resource="http://www.w3.org/1999/xhtml/vocab/#complementary"><a href="http://www.w3.org/1999/xhtml/vocab/#complementary">xhv:complementary</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a>、<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a></p>
</dd>
<dt id="marginalia" about="#marginalia" typeof="rdf:Property">marginalia <span class="status" property="owl:deprecated" content="true">[deprecated]</span></dt>
<dd about="#marginalia" property="rdfs:comment" datatype="xsd:string">
<p>余白にオフセットされている、テキストと画像のコンテンツ。</p>
</dd>
<dd>
<p><span class="subpropref" about="#marginalia" rel="rdfs:subPropertyOf" resource="http://www.w3.org/1999/xhtml/vocab/#complementary"><a href="http://www.w3.org/1999/xhtml/vocab/#complementary">xhv:complementary</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a>、<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a></p>
</dd>
<dd>
<p>
<span class="subproplabel">置き換え:</span><span class="subpropref" about="#marginalia" rel="dcterms:isReplacedBy"><a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a></span>
</p>
</dd>
<dt id="notice" about="#notice" typeof="rdf:Property">notice</dt>
<dd about="#notice" property="rdfs:comment" datatype="xsd:string">
<p>特別に注意が必要な情報で、それはスキップまたは抑制されてはならない(must not)。例えば、警告(alert)、警報(warning)、注意(caution)、危険(danger)、重要(important)。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
<dt id="pullquote" about="#pullquote" typeof="rdf:Property">pullquote <span class="status">[draft]</span>
</dt>
<dd about="#pullquote" property="rdfs:comment" datatype="xsd:string">
<p>例えば大きな書体など、独特のやり方で目立たせるテキストからの引用。</p>
</dd>
<dd>
<p><span class="subpropref" about="#pullquote" rel="rdfs:subPropertyOf" resource="http://www.w3.org/1999/xhtml/vocab/#complementary"><a href="http://www.w3.org/1999/xhtml/vocab/#complementary">xhv:complementary</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span> <a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a></p>
</dd>
<dt id="sidebar" about="#sidebar" typeof="rdf:Property">sidebar <span class="status" property="owl:deprecated" content="true">[deprecated]</span>
</dt>
<dd about="#sidebar" property="rdfs:comment" datatype="xsd:string">
<p>二次的または補足的なコンテンツ。一般的にインサートまたはボックスとしてフォーマット化される。</p>
</dd>
<dd>
<p><span class="subpropref" about="#sidebar" rel="rdfs:subPropertyOf" resource="http://www.w3.org/1999/xhtml/vocab/#complementary"><a href="http://www.w3.org/1999/xhtml/vocab/#complementary">xhv:complementary</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a></p>
</dd>
<dd>
<p>
<span class="subproplabel">置き換え:</span><span class="subpropref" about="#sidebar" rel="dcterms:isReplacedBy"><a href="http://www.w3.org/TR/html5/sections.html#the-aside-element">aside 要素</a></span>
</p>
</dd>
<dt id="warning" about="#warning" typeof="rdf:Property">warning <span class="status" property="owl:deprecated" content="true">[deprecated]</span></dt>
<dd about="#warning" property="rdfs:comment" datatype="xsd:string">
<p>警報。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/sections.html#the-section-element">section 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
<dd>
<p>
<span class="subproplabel">置き換え:</span><span class="subpropref" about="#warning" rel="dcterms:isReplacedBy"><a href="#notice">notice</a></span>
</p>
</dd>
</dl>
</div>
<div id="titles" about="#titles" typeof="rdf:Bag">
<h2 id="h_titles" about="#titles" rev="dcterms:title">タイトルと見出し</h2>
<dl about="#titles" rev="rdfs:member">
<dt id="halftitle" about="#halftitle" typeof="rdf:Property">halftitle</dt>
<dd about="#halftitle" property="rdfs:comment" datatype="xsd:string">
<p>作品の最初のページまたはテキストの直前に在るタイトル。</p>
</dd>
<dd>
<p><span class="subpropref" about="#halftitle" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">も参照されたい。</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>。このプロパティは、ドキュメントのスコープ内に一度だけ出現されるべきである。</p>
</dd>
<dt id="fulltitle" about="#fulltitle" typeof="rdf:Property">fulltitle</dt>
<dd about="#fulltitle" property="rdfs:comment" datatype="xsd:string">
<p>作品のフルタイトル。<a href="#title">title</a> と同一または <a href="#title">title</a> と <a href="#subtitle">subtitle</a> から成る複合語。</p>
</dd>
<dd>
<p><span class="subpropref" about="#fulltitle" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">も参照されたい。</span></p>
</dd>
<dd>
<p><span class="subpropref" about="#fulltitle" rel="owl:sameAs" resource="http://purl.org/dc/terms/title"><a href="http://purl.org/dc/terms/title">http://purl.org/dc/terms/title</a></span> <span class="subproplabel">と同様である。</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>。このプロパティは、ドキュメントのスコープ内に一度だけ出現されるべきである。</p>
</dd>
<dt id="covertitle" about="#covertitle" typeof="rdf:Property">covertitle</dt>
<dd about="#covertitle" property="rdfs:comment" datatype="xsd:string">
<p>作品の表紙に表示されるような作品のタイトル。</p>
</dd>
<dd>
<p><span class="subpropref" about="#covertitle" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">も参照されたい。</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>。このプロパティは、ドキュメントのスコープ内に一度だけ出現されるべきである。</p>
</dd>
<dt id="title" about="#title" typeof="rdf:Property">title</dt>
<dd about="#title" property="rdfs:comment" datatype="xsd:string">
<p>作品の主要な名前、または、<a href="#fulltitle">fulltitle</a> のコンテクストで使われるとき、完全なタイトルの主要な部分。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>の子孫にあたる<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a>。</p>
</dd>
<dt id="subtitle" about="#subtitle" typeof="rdf:Property">subtitle</dt>
<dd about="#subtitle" property="rdfs:comment" datatype="xsd:string">
<p>作品ための説明または代替タイトル。</p>
</dd>
<dd>
<p><span class="subpropref" about="#subtitle" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">も参照されたい。</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>。<a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-p-element">p 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-div-element">div 要素</a>の子孫にあたる<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a>。</p>
</dd>
<dt id="label" about="#label" typeof="rdf:Property">label <span class="status">[draft]</span></dt>
<dd about="#label" property="rdfs:comment" datatype="xsd:string">
<p>コンポーネントのタイトル(例えば、「章」、「パート」、「図」、「表」)で <a href="#ordinal">ordinal</a> 前のテキストラベル。</p>
</dd>
<dd>
<p><span class="subpropref" about="#label" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-li-element">li 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-figcaption-element">figcaption 要素</a></p>
</dd>
<dt id="ordinal" about="#ordinal" typeof="rdf:Property">ordinal <span class="status">[draft]</span></dt>
<dd about="#ordinal" property="rdfs:comment" datatype="xsd:string">
<p>コンポーネントの連続(例えば「1」、「IV」、「B-1」)内のコンポーネントの序列を指定する。</p>
</dd>
<dd>
<p><span class="subpropref" about="#ordinal" rel="rdfs:subPropertyOf" resource="#title"><a href="#title">title</a></span> <span class="subproplabel">から継承</span></p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#heading-content">ヘディング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-li-element">li 要素</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#the-figcaption-element">figcaption 要素</a></p>
</dd>
<dt id="bridgehead" about="#bridgehead" typeof="rdf:Property">bridgehead</dt>
<dd about="#bridgehead" property="rdfs:comment" datatype="xsd:string">
<p>作品の階層構造に寄与しない、構造的に重要でない見出し。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a>、典型的に <a href="http://www.w3.org/TR/html5/grouping-content.html#the-p-element">p 要素</a> または <a href="http://www.w3.org/TR/html5/grouping-content.html#the-div-element">div 要素</a>、<a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-span-element">span 要素</a>
</p>
</dd>
</dl>
</div>
<div id="educational" about="#educational" typeof="rdf:Bag">
<h2 id="h_educational" about="#educational" rev="dcterms:title">教育用のコンテンツ</h2>
<div id="learning-obj" about="#learning-obj" typeof="rdf:Bag">
<h3 id="h_learning-obj" about="#learning-obj" rev="dcterms:title">Learning objectives</h3>
<dl about="#learning-obj" rev="rdfs:member">
<dt id="learning-objective" about="#learning-objective" typeof="rdf:Property">learning-objective</dt>
<dd about="#learning-objective" property="rdfs:comment" datatype="xsd:string">
<p>学習目的または明示的な学習目的への参照を明示的に指定または説明する。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a>、<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a></p>
</dd>
<dt id="learning-objectives" about="#learning-objectives" typeof="rdf:Property">learning-objectives <span class="status">[draft]</span></dt>
<dd about="#learning-objectives" property="rdfs:comment" datatype="xsd:string">
<p><a href="#learning-objective">learning-objective</a> のコレクション。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
<dt id="learning-outcome" about="#learning-outcome" typeof="rdf:Property">learning-outcome <span class="status">[draft]</span></dt>
<dd about="#learning-outcome" property="rdfs:comment" datatype="xsd:string">
<p>学生が授業や活動の結果として達成することが期待されている理解や能力。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a>
</p>
</dd>
<dt id="learning-outcomes" about="#learning-outcomes" typeof="rdf:Property">learning-outcomes <span class="status">[draft]</span></dt>
<dd about="#learning-outcomes" property="rdfs:comment" datatype="xsd:string">
<p><a href="#learning-outcome">learning-outcome</a> のコレクション。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
<dt id="learning-resource" about="#learning-resource" typeof="rdf:Property">learning-resource</dt>
<dd about="#learning-resource" property="rdfs:comment" datatype="xsd:string">
<p>学習を強化するために提供されるリソース、またはそのようなリソースへの参照。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/rendering.html#flow-content-0">フロー コンテンツ</a></p>
</dd>
<dt id="learning-resources" about="#learning-resources" typeof="rdf:Property">learning-resources <span class="status">[draft]</span></dt>
<dd about="#learning-resources" property="rdfs:comment" datatype="xsd:string">
<p><a href="#learning-resource">learning-resource</a> のコレクション。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
<dt id="learning-standard" about="#learning-standard" typeof="rdf:Property">learning-standard <span class="status">[draft]</span></dt>
<dd about="#learning-standard" property="rdfs:comment" datatype="xsd:string">
<p>期待や要件の公式なセットは、一般的に政府や標準化団体によって公表される。</p>
</dd>
<dd>
<p><span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/dom.html#phrasing-content">フレージング コンテンツ</a></p>
</dd>
<dt id="learning-standards" about="#learning-standards" typeof="rdf:Property">learning-standards <span class="status">[draft]</span></dt>
<dd about="#learning-standards" property="rdfs:comment" datatype="xsd:string">
<p><a href="#learning-standard">learning-standard</a> のコレクション。</p>
</dd>
<dd>
<p>
<span class="subproplabel">HTML で使用可能な場所:</span><a href="http://www.w3.org/TR/html5/dom.html#sectioning-content-0">セクショニング コンテンツ</a>、<a href="http://www.w3.org/TR/html5/grouping-content.html#grouping-content">グルーピング コンテンツ</a>
</p>
</dd>
</dl>
</div>
<div id="testing" about="#testing" typeof="rdf:Bag">
<h3 id="h_testing" about="#testing" rev="dcterms:title">Testing</h3>