<bold>

Bold (太字)

太字で現れるべきテキストをマークするために使用されます。

備考

トグルスイッチとしての強調: @toggle 属性は、この要素の動作を制御します。@toggle の値が “no”に設定されている場合、強調されたテキストは、周囲のテキストに関係なく、要求されたスタイルで残ります。@toggle の値が “yes”の場合、周囲のテキストが同一の強調スタイルに設定されていれば、この要素内のテキストは別の強調スタイルに変更され、そのテキストは常にその周囲と表記上区別されます。
例として <italic> 要素を使用した場合、@toggle 属性を “no” に設定すると、斜体でマークされたテキストは、周りが斜体であっても常に斜体になります。一方、<italic> 要素において @toggle 属性が “yes” に設定されている場合、周囲が斜体である場合は (それが別の <italic> 要素、スタイルシート、CSS、またはその他の手段にかかわらず), そのテキストの斜体がオフとなり、強調されたテキストがコントラストで強調されます。斜体のままでは強調されない結果になります。<italic> 要素はそれ以外の場所では通常の斜体を生成します。

属性

コンテンツ・モデル

<!ELEMENT  bold         (#PCDATA %emphasized-text;)*                 >

拡張コンテンツ・モデル

(#PCDATA | email | ext-link | uri | inline-supplementary-material | related-article | related-object | bold | fixed-case | italic | monospace | overline | roman | sans-serif | sc | strike | underline | ruby | alternatives | inline-graphic | private-char | chem-struct | inline-formula | tex-math | mml:math | abbrev | milestone-end | milestone-start | named-content | styled-content | fn | target | xref | sub | sup)*

記述方法

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

用例 1

...
<p>... The third nucleotide (CG<bold>A</bold>) at codon 529, which
is a specific nucleotide of <italic>M. tuberculosis</italic>
(<xref ref-type="bibr" rid="B8">8</xref>, <xref ref-type="bibr"
rid="B11">11</xref>), was not clearly determined by conventional PCR direct
sequencing. Furthermore, PCR sequencing misidentified codon 531 as
T<bold>C</bold>G, which reflects the rifampin-susceptible strain. However,
the second nucleotide at codon 531, which is the most frequent site of
mutation related to rifampin resistance, was determined as
T<bold>T</bold>G by nested PCR sequencing (Fig. <xref ref-type="fig"
rid="F5">5</xref>, lower panel). ...</p>
...

用例 2

...
<table frame="box" rules="all" cellpadding="5">
<thead>
<tr>
<td>Functional Category</td>
<td>Gene or Operon</td>
<td>&sigma; Factor<sup>a</sup></td>
<td>Activated by<sup>b</sup></td>
<td>Repressed by</td>
</tr>
</thead>
<tbody>
<tr>
<td>Engulfment</td>
<td><italic>spoIID</italic></td>
<td><bold>&sigma;<sup>E</sup></bold></td>
<td></td>
<td><bold>SpoIIID</bold></td>
</tr>
<tr>
<td></td>
<td><italic>spoIIM</italic></td>
<td><bold>&sigma;<sup>E</sup></bold></td>
<td></td>
<td>GerR</td>
</tr>
...</tbody>
</table>
...