Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmsailor committed Aug 19, 2023
1 parent d3af7bf commit 9b5e387
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion music21/romanText/tsvConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,10 @@ def _m21ToTsv_v2(self) -> list[list[str]]:
relativeroot = characterSwaps(
relativeroot, isMinor(local_key), direction='m21-DCML'
)
thisEntry.chord = thisRN.figure # NB: slightly different from DCML: no key.
# We replace the "d" annotation for Mm7 chords on degrees other than
# V because it is not used by the DCML standard
# NB: slightly different from DCML: no key.
thisEntry.chord = thisRN.figure.replace('d', '', 1)
thisEntry.pedal = None
thisEntry.numeral = thisRN.romanNumeral
thisEntry.form = getForm(thisRN)
Expand Down
5 changes: 4 additions & 1 deletion music21/romanText/tsvEg_v2major.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ mc mn mc_onset mn_onset timesig staff voice volta label globalkey localkey pedal
99 99 1/2 1/2 3/4 4 1 Ger6/vi C V Ger6/vi Ger vii o 65 b3 V/vi Ger 0 0 -1, 3, 0, 9 9 -1
121 121 0 0 3/4 4 1 V/vi C i V/vi V vi M 0 1 -3, 1, -2 -3 -3
125 124 1/16 1/16 2/4 4 1 Fr6 F vi Fr6 Fr V 43 b5 V Fr 0 1 -4, 0, 2, 6 2 -4
142 141 0 0 4/4 #VII+/vi C I #VII+/vi #VII + vi + 0 0
141 140 0 0 4/4 #VII+/vi C I #VII+/vi #VII + vi + 0 0
142 141 0 0 4/4 VI43 G iii VI43 VI 43 vi Mm7 0 0
143 142 0 0 4/4 VI43(13) G iii VI43(13) VI 43 13 vi Mm7 0 0
144 143 0 0 4/4 V13 G I V13 V 13 Mm7 0 0

0 comments on commit 9b5e387

Please sign in to comment.