<media>
Media Object (メディア・オブジェクト)
メディア・オブジェクト (例えばアニメーション、動画) を保有する外部ファイルの説明と位置情報
備考
<media> 要素の「中身」は、メディアオブジェクト自体ではなく、オブジェクトに関する情報です。オブジェクトを含む外部ファイルは、@xlink:href 属性によって指定されます。
位置: @position 属性は、この要素をテキスト内の正確な位置に固定する必要があるかどうか、または浮動させるかどうかを示すために使用できますが、画像とメディア・オブジェクトに関しては固定することをお勧めします。テキスト中で位置がはっきり決まっていない少数のメディア・オブジェクトも固定するべきです。また図、表等の内部にあるメディア・オブジェクトも固定しなくてはいけません。ただし、外部構造 (図、囲みテキスト) は浮動させることが許されています。
使用法: <caption> などの表示に用いる要素は、常に可能な限り高いレベルで使用する必要があります。つまり、<media> 要素が <fig> 要素内にある場合、<caption>, <long-desc> などは、<fig> の一部である必要があり、<media> 要素の一部であってはなりません。<caption> 要素 (および類似の表示用要素) を <media> に含めるのは、その画像オブジェクトが他の構造体に含まれていない場合、またはある図が複数のメディア・オブジェクトを含んでおり、それぞれが独自の <caption> を持つ場合に限られます。同様の理由から、@position 属性は、より大きな表示用コンテナに含まれる <media> 要素 (たとえば <fig> の中の) では固定とする必要があります。
属性
コンテンツ・モデル
<!ELEMENT media %media-model; >
拡張コンテンツ・モデル
(alt-text | long-desc | abstract | email | ext-link | uri | caption | object-id | kwd-group | label | attrib | permissions)*
記述方法
この要素は以下の要素内に含むことができます:
<alternatives>, <app>, <app-group>, <array>, <bio>, <body>, <boxed-text>, <chem-struct>, <chem-struct-wrap>, <disp-formula>, <disp-quote>, <fig>, <fig-group>, <floats-group>, <glossary>, <license-p>, <named-content>, <notes>, <p>, <ref-list>, <sec>, <sig>, <sig-block>, <styled-content>, <supplementary-material>, <table-wrap>, <td>, <term>, <th>
用例 1
...
<media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait"
position="anchor" specific-use="original-format" xlink:href="v1">
<object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4807071.1</object-id>
</media>
...
用例 2
形式の異なるメディア・オブジェクト:
... <fig id="f1" orientation="portrait" position="float"> <label>FIG. 1.</label> <caption> <p>(a) Schematic of the working principles of HFM, (b) a typical application scheme for an electric bias in HFM, (c) regulation the conformations and dynamics (trapping, concentration, and sudden stretching) of λ-DNA molecules in HFM, and (d) schematic of the trapping location regulation (enhanced online). [URL: <ext-link ext-link-type="uri" xlink:href="http://dx.doi.org/10.1063/1.4762852.1"> http://dx.doi.org/10.1063/1.4762852.1</ext-link>] <alternatives> <media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait" position="anchor" specific-use="original-format" xlink:href="v1"> <object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4762852.1</object-id> </media> <media mime-subtype="mpeg" mimetype="video" orientation="portrait" position="anchor" specific-use="archival-format" xlink:href="v1"></media> <media mime-subtype="x-flv" mimetype="video" orientation="portrait" position="anchor" specific-use="online-format" xlink:href="v1"></media> </alternatives> </p> </caption> <graphic orientation="portrait" position="float" xlink:href="f1"/> <graphic id="f1a" orientation="portrait" position="float" xlink:href="dummy1.png"/> <graphic id="f1b" orientation="portrait" position="float" xlink:href="dummy2.png"/> <graphic id="f1c" orientation="portrait" position="float" xlink:href="dummy3.png"/> <graphic id="f1d" orientation="portrait" position="float" xlink:href="dummy4.png"/> </fig> ...