Skip to content

Commit

Permalink
142: Single-Ended Ties 5
Browse files Browse the repository at this point in the history
  • Loading branch information
webern committed Mar 10, 2017
1 parent e4e487e commit af3bdbc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
21 changes: 13 additions & 8 deletions schema/common.mod
Expand Up @@ -84,16 +84,21 @@
a slur may appear in staff 1 before the starting point for
the slur appears in staff 2 later in the document.
The tied-type type is used as an attribute of the tied
The tied-type entity is used as an attribute of the tied
element to specify where the visual representation of a
tie begins and ends. A tied element which joins two notes
of the same pitch can be specified with tied-type start on
the first note and tied-type stop on the second note. To
indicate a note should be undamped, use a single tied
element with tied-type let-ring. For other ties that are
visually attached to a single note, such as a tie leading
into or out of a repeated section or coda, use two tied
elements on the same note, one start and one stop.
can be specified with tied-type start on the first note and
tied-type stop on the second note. To indicate a note
should be undamped, use a single tied element with
tied-type let-ring. For other ties that are visually
attached to a single note, such as a tie leading into or
out of a repeated section or coda, use two tied elements on
the same note, one start and one stop.
In start-stop cases, ties can add more elements using a
continue type. This is typically used to specify the
formatting of cross-system ties, or to specify the shape of
very complex ties.
-->
<!ENTITY % start-stop "(start | stop)">
<!ENTITY % start-stop-continue "(start | stop | continue)">
Expand Down
4 changes: 3 additions & 1 deletion schema/musicxml.xsd
Expand Up @@ -459,7 +459,9 @@ The values of start, stop, and continue refer to how an element appears in music

<xs:simpleType name="tied-type">
<xs:annotation>
<xs:documentation>The tied-type type is used as an attribute of the tied element to specify where the visual representation of a tie begins and ends. A tied element which joins two notes of the same pitch can be specified with tied-type start on the first note and tied-type stop on the second note. To indicate a note should be undamped, use a single tied element with tied-type let-ring. For other ties that are visually attached to a single note, such as a tie leading into or out of a repeated section or coda, use two tied elements on the same note, one start and one stop.</xs:documentation>
<xs:documentation>The tied-type type is used as an attribute of the tied element to specify where the visual representation of a tie begins and ends. A tied element which joins two notes of the same pitch can be specified with tied-type start on the first note and tied-type stop on the second note. To indicate a note should be undamped, use a single tied element with tied-type let-ring. For other ties that are visually attached to a single note, such as a tie leading into or out of a repeated section or coda, use two tied elements on the same note, one start and one stop.

In start-stop cases, ties can add more elements using a continue type. This is typically used to specify the formatting of cross-system ties, or to specify the shape of very complex ties.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="start"/>
Expand Down
2 changes: 1 addition & 1 deletion schema/to30.xsl
Expand Up @@ -94,7 +94,7 @@

<!--
Remove tied elements which use the new let-ring
attribue for single-ended ties.
attribute for single-ended ties.
-->
<xsl:template
match="tied[. = 'let-ring']"/>
Expand Down

0 comments on commit af3bdbc

Please sign in to comment.