cl

Summary

Description

Chapter label text.

Usage note

If cl is added to a text once before chapter 1 it represents the label text for “Chapter” to be used throughout the current book. If cl is used after each individual chapter, it represents the specific label text to be used for the display of the current chapter (e.g. if numbers are being presented as words, not numerals).

Syntax help
  • USFM: \cl content

  • USX: <para style="cl">content</para>

Style Type

Paragraph

Valid In

[ChapterContent] > [Section]

Added

1.0

Examples

  • USFM

  • USX

  • USJ

Example 1. Psalm 1 (GNT - markup adapted - general chapter label)
\id PSA
\cl Psalm
\c 1
\q1
\v 1 Happy are those
\q2 who reject the advice of evil people,
Example 2. Psalm 1 (GNT - markup adapted - general chapter label)
<usx version="3.1">
  <para style="cl">Psalm</para>
  <chapter number="1" style="c" sid="PSA 1"/>
  <para style="q1">
    <verse number="1" style="v" sid="PSA 1:1"/>Happy are those</para>
  <para style="q2" vid="PSA 1:1">who reject the advice of evil people,
    ...
    <verse eid="PSA 1:1"/></para>
</usx>
Example 3. Psalm 1 (GNT - markup adapted - general chapter label)
{
  "type": "USJ",
  "version": "3.1",
  "content": [
    {
      "type": "para",
      "marker": "cl",
      "content": ["Psalm"]
    },
    {
      "type": "chapter",
      "marker": "c",
      "number": "1",
      "sid": "PSA 1"
    },
    {
      "type": "para",
      "marker": "q1",
      "content": [
        {
          "type": "verse",
          "marker": "v",
          "number": "1",
          "sid": "PSA 1:1"
        },
        "Happy are those"
      ]
    },
    {
      "type": "para",
      "marker": "q2",
      "content": ["who reject the advice of evil people, ..."]
    }
  ]
}
Psalm 1 (GNT - markup adapted - general chapter label)
  • USFM

  • USX

  • USJ

Example 4. Psalm 1 (GNT - markup adapted - specific chapter label)
\id PSA
\c 1
\cl Psalm One
\q1
\v 1 Happy are those
\q2 who reject the advice of evil people,
Example 5. Psalm 1 (GNT - markup adapted - specific chapter label)
<usx version="3.1">
  <chapter number="1" style="c" sid="PSA 1"/>
  <para style="cl">Psalm One</para>
  <para style="s">True Happiness</para>
  <para style="q1">
    <verse number="1" style="v" sid="PSA 1:1" />Happy are those</para>
  <para style="q2" vid="PSA 1:1">who reject the advice of evil people,
    ...
    <verse eid="PSA 1:1"/></para>
</usx>
Example 6. Psalm 1 (GNT - markup adapted - specific chapter label)
{
  "type": "USJ",
  "version": "3.1",
  "content": [
    {
      "type": "chapter",
      "marker": "c",
      "number": "1",
      "sid": "PSA 1"
    },
    {
      "type": "para",
      "marker": "cl",
      "content": ["Psalm One"]
    },
    {
      "type": "para",
      "marker": "s",
      "content": ["True Happiness"]
    },
    {
      "type": "para",
      "marker": "q1",
      "content": [
        {
          "type": "verse",
          "marker": "v",
          "number": "1",
          "sid": "PSA 1:1"
        },
        "Happy are those"
      ]
    },
    {
      "type": "para",
      "marker": "q2",
      "content": ["who reject the advice of evil people, ..."]
    }
  ]
}
Psalm 1 (GNT - markup adapted - specific chapter label)

Properties

TextType

Other

TextProperties

paragraph

Publication Issues

Discussion