Rule for NameSection
<NameKeyword>[:]\n
<Name> ((⎵\t)(⎵\t)* <Name>)*
Note that the number of names needs to match the number of columns. Note that a name may not be used twice.
Rule for NameKeyword
(INDEX[_SECTION] | INDICES[_SECTION] | NAMES[_SECTION] | NAME_SECTION | Indices | Names)
Rule for Name
(a-z|A-Z)(a-z|A-Z|0-9|_|^)*
Examples
Names:
X Y Z
INDEX
A_1 A_2 B_1 B_2
INDEX_SECTION
alpha0^0 alpha0^1 alpha1^0 alpha1^1
May be used in
Legend
[X]: X
is optional.(X|Y|Z):
One of X, Y
or Z
is present.(A-E):
Any ASCII symbol between symbol A
and E
.X*:
X may occur any number of times (including zero).