mt#
Summary
- Description
-
Main title.
-
The variable
#
(1-4) represents the level of division.
-
- Syntax
-
-
USFM:
\mt#
content -
USX:
<para style="mt#">
content</para>
-
- Style Type
- Valid In
- Added
-
1.0
Examples
-
USFM
-
USX
-
USJ
Example 1. Introduction to Acts (GNT)
\id ACT
\h Acts
\toc1 The Acts of the Apostles
\toc2 Acts
\mt1 THE ACTS
\mt2 of the Apostles
\is Introduction
\ip \bk The Acts of the Apostles\bk* is a continuation of \bk The Gospel
according to Luke\bk*.
Example 2. Introduction to Acts (GNT)
<usx version="3.1">
<para style="h">Acts</para>
<para style="toc1">The Acts of the Apostles</para>
<para style="toc2">Acts</para>
<para style="mt1">THE ACTS</para>
<para style="mt2">of the Apostles</para>
<para style="is">Introduction</para>
<para style="ip">
<char style="bk">The Acts of the Apostles</char> is a continuation of
<char style="bk">The Gospel according to Luke</char>.</para>
</usx>
Example 3. Introduction to Acts (GNT)
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "para",
"marker": "h",
"content": ["Acts"]
},
{
"type": "para",
"marker": "toc1",
"content": ["The Acts of the Apostles"]
},
{
"type": "para",
"marker": "toc2",
"content": ["Acts"]
},
{
"type": "para",
"marker": "mt1",
"content": ["THE ACTS"]
},
{
"type": "para",
"marker": "mt2",
"content": ["of the Apostles"]
},
{
"type": "para",
"marker": "is",
"content": ["Introduction"]
},
{
"type": "para",
"marker": "ip",
"content": [
{
"type": "char",
"marker": "bk",
"content": ["The Acts of the Apostles"]
},
"is a continuation of",
{
"type": "char",
"marker": "bk",
"content": ["The Gospel according to Luke"]
},
"."
]
}
]
}

-
USFM
-
USX
Example 4. Introduction to John (GNT)
\h John
\toc1 The Gospel according to John
\toc2 John
\mt2 The Gospel
\mt3 according to
\mt1 JOHN
\is Introduction
Example 5. Introduction to John (GNT)
<para style="h">John</para>
<para style="toc1">The Gospel according to John</para>
<para style="toc2">John</para>
<para style="mt2">The Gospel</para>
<para style="mt3">according to</para>
<para style="mt1">JOHN</para>
<para style="is">Introduction</para>
