<xref>

X (cross) Reference (相互参照)

文書内のオブジェクトへの参照 (例えば表、書誌引用)。

備考

この要素は、@id 型の属性を持つものを参照するために使用できます。この単一要素は、多くのジャーナル・タグ・セットにある名前付きの参照 (図参照、表参照、および脚注参照など) を置き換えます。
推奨用法: @ref-type 属性は、(<xref> 要素による) 相互参照において示される要素の種別情報を記述するために使います。
アクセシビリティ: しばしば <xref> は内容やタグ付けにと異なった形で発音しなくてはならない場合があります。@alt 属性は、スクリーンリーダーやその他のアクセシビリティデバイスのための発音を記録するために使用できます。たとえば、次の図とのクロスリファレンスは、“Figure 4” と発音されます。
... See <xref alt="figure 4">Fig&#x00A0;IV.</xref>...
表示/書式設定上の注意点: 参考文献 (もし存在すれば) の中身はリンクとして表示されることがあります。

属性

コンテンツ・モデル

<!ELEMENT  xref         (#PCDATA %xref-elements;)*                   >

拡張コンテンツ・モデル

(#PCDATA | bold | fixed-case | italic | monospace | overline | roman | sans-serif | sc | strike | underline | ruby | named-content | styled-content | sub | sup)*

記述方法

この要素は以下の要素内に含むことができます:

用例 1

叙述テキストの中で、文献書誌を参照:
<article dtd-version="1.1">
<front>...</front>
  
<body>...
<p>Geriatric day hospitals developed rapidly in the United Kingdom in
the 1960s as an important component of care provision. ... Although
there is considerable descriptive literature on day hospital
care,<xref ref-type="bibr" rid="B1">1</xref> concern has been expressed
that evidence for effectiveness is equivocal and that day hospital care
is expensive.<xref ref-type="bibr" rid="B2">2</xref> ...</p>
...</body>
  
<back>
...<ref-list>
<ref id="B1">
<element-citation>
<collab>Research Unit of the Royal College of Physicians and British
Geriatric Society</collab>
<source>Geriatric day hospitals: their role and guidelines for good
practice</source>
<year iso-8601-date="1994">1994</year>
<publisher-loc>London</publisher-loc>
<publisher-name>RCP</publisher-name>
</element-citation>
</ref>
<ref id="B2">
<element-citation>
<collab>National Audit Office</collab>
<source>National health service day hospitals for elderly people
in England</source>
<year iso-8601-date="1994">1994</year>
<publisher-loc>London</publisher-loc>
<publisher-name>HMSO</publisher-name>
</element-citation>
</ref>
...</ref-list>
</back>
</article>

用例 2

叙述テキストの中で、図を参照:
...
<sec id="sec3">...
<p>Allocation of tags to individual molecules is outlined in
<xref ref-type="fig" rid="F2" alt="figure two">Fig.&#x00A0;2</xref>.
First, the complete repertoire of tags in a plasmid library is ligated
to the entire population of cDNAs ... After separating loaded 
microbeads from unloaded microbeads by FACS, as shown in 
<xref ref-type="fig" rid="F4" alt="figure four">Fig.&#x00A0;4</xref>,
the hybridized DNA is ligated to the anti-tag, covalently attaching 
one strand of the DNA to the microbead's surface. This permits 
easy removal of the noncovalently attached strand.</p>
<fig id="F2">...</fig>
<fig id="F3">...</fig>
<fig id="F4">...</fig>
</sec>
...

用例 3

記事メタデータの中で、著者とその所属先や著者注記にリンク:
...
<article-meta>...
<contrib-group>
<contrib contrib-type="author">
<name-alternatives>
<name name-style="western"><surname>Zhang</surname>
<given-names>Y. P.</given-names></name>
<string-name name-style="eastern" xml:lang="zh">???</string-name>
</name-alternatives>
<xref ref-type="aff" rid="a1">1</xref>
<xref ref-type="author-notes" rid="n1">a)</xref>
</contrib>
  
<contrib contrib-type="author">
<name-alternatives>
<name name-style="western"><surname>Isobe</surname>
<given-names>M.</given-names></name>
<string-name name-style="eastern" xml:lang="zh">磯L</string-name>
</name-alternatives>
<xref ref-type="aff" rid="a2">2</xref>
</contrib>
  
<contrib contrib-type="author">
<name-alternatives>
<name name-style="western"><surname>Liu</surname>
<given-names>Yi</given-names></name>
<string-name name-style="eastern" xml:lang="zh">?lt;/string-name>
</name-alternatives>
<xref ref-type="aff" rid="a1">1</xref>
</contrib>
</contrib-group>
<aff id="a1">...</aff>
<aff id="a2">...</aff>
<author-notes id="n1">...</author-notes>
...</article-meta>
...