◇◆
<bold> Bold
Used to mark text that should appear in bold face.
Usage/Remarks
Ensuring that a text component remains bold is not as common in journal publishing
as (for example) italics, since bold is typically reserved for headings. But any text
may be marked as bold and kept as bold or toggled, using the @toggle attribute.
Using the Toggle Switch with Bold
The @toggle attribute can control the behavior of the <bold> element.
For example, setting
the @toggle attribute to “no” would mean that material marked as bold will always be bold, even in a context such
as a bold heading. In contrast, if the @toggle attribute is set to “yes” on a <bold> element, and if the formatting context then imposes bold (whether due to another
<bold> element, a stylesheet, some CSS, or other means), then the
bolding would be turned off within that context, making the emphasized text emphasized
by contrast (typographically distinct from its surroundings) but no longer bold.
Attributes
Multi-lang Attributes
Models and Context
May be contained in
<addr-line>, <aff>, <alt-title>, <article-title>, <attrib>, <bold>, <chapter-title>, <chem-struct>, <code>, <collab>, <collab-name>, <comment>, <compound-kwd-part>, <compound-subject-part>, <conf-theme>, <copyright-statement>, <data-title>, <def-head>, <disp-formula>, <element-citation>, <ext-link>, <fixed-case>, <funding-statement>, <gov>, <inline-formula>, <inline-media>, <inline-supplementary-material>, <italic>, <kwd>, <license-p>, <meta-value>, <mixed-citation>, <monospace>, <named-content>, <on-behalf-of>, <overline>, <p>, <part-title>, <preformat>, <price>, <product>, <rb>, <related-article>, <related-object>, <resource-name>, <roman>, <sans-serif>, <sc>, <see>, <see-also>, <series>, <source>, <std>, <strike>, <styled-content>, <sub>, <subject>, <subtitle>, <sup>, <supplement>, <support-source>, <target>, <td>, <term>, <term-head>, <textual-form>, <th>, <title>, <trans-source>, <trans-title>, <underline>, <verse-line>, <xref>
Description
Any combination of:
- Text, numbers, or special characters
- Linking Elements
- Related Material Elements
- Emphasis Elements
- <alternatives> Alternatives For Processing
- Inline Display Elements
- Inline Math Elements
- Other Inline Elements
- Internal Linking Elements
- Baseline Change Elements
Content Model
<!ELEMENT bold (#PCDATA %emphasized-text;)* >
Expanded Content Model
(#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 | inline-media | chem-struct | inline-formula | abbrev | index-term | index-term-range-end | named-content | styled-content | fn | target | xref | sub | sup)*
Tagged Samples
Highlighting in text
...
<p>Suddenly, something caught Peter’s attention. He
looked around and noticed a sly cat crawling through the grass.
The cat thought; “That little bird is busy arguing with
the duck, I’ll just grab him while he is busy!”
Very carefully, on her little velvet paws, she crept towards
him. “<bold>Look out!</bold>” shouted Peter
and the little bird flew up into the tree for safety ...</p>
...
Highlighting in table cell
... <table frame="box" rules="all" cellpadding="5"> <thead> <tr> <td>Functional Category</td> <td>Gene or Operon</td> <td>σ 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>σ<sup>E</sup></bold></td> <td></td> <td><bold>SpoIIID</bold></td> </tr> <tr> <td></td> <td><italic>spoIIM</italic></td> <td><bold>σ<sup>E</sup></bold></td> <td></td> <td>GerR</td> </tr> ... </tbody> </table> ...