File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ def test_tuplet():
33
33
def test_lyrics_simple_lyricsto ():
34
34
compare_output ('lyrics_simple_lyricsto' )
35
35
36
+ def test_lyrics_simple_addlyrics ():
37
+ compare_output ('lyrics_simple_addlyrics' )
38
+
36
39
def ly_to_xml (filename ):
37
40
"""Read Lilypond file and return XML string."""
38
41
writer = ly .musicxml .writer ()
Original file line number Diff line number Diff line change
1
+ \version " 2.19.55"
2
+
3
+ \header {
4
+ title = " lyrics simple addlyrics"
5
+ }
6
+
7
+ verseOne = \lyricmode {
8
+ \set stanza = " v1"
9
+ My long sing song for voice one
10
+ }
11
+ verseTwo = \lyricmode {
12
+ \set stanza = " v2"
13
+ This is verse two, the last verse
14
+ }
15
+
16
+ \score {
17
+ \new Staff {
18
+ \relative c' {
19
+ \clef treble
20
+ c'32 c c16 c8 c4 c2 |
21
+ c1 |
22
+ }
23
+ }
24
+ \addlyrics \verseOne
25
+ \addlyrics \verseTwo
26
+ \layout { }
27
+ }
You can’t perform that action at this time.
0 commit comments