]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/song-splitpart.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / song-splitpart.ly
1 \version "2.16.0"
2 \header {
3   texidoc="Festival song synthesis output supports
4 divided voices.
5 "
6 }
7 \include "festival.ly"
8
9 \score{
10 \festival #"song-splitpart.xml" { \tempo 4 = 100 }
11 <<
12   \context Voice = "melody" {
13     \relative c' {
14       c4
15       <<
16         { \voiceOne c8 e }
17         \context Voice = splitpart { \voiceTwo c4 }
18       >>
19       \oneVoice c4 c | c
20     }
21   }
22   \new Lyrics \lyricsto "melody" { we shall not o- ver- come }
23   \new Lyrics \lyricsto "splitpart" { will }
24 >> }
25 #(ly:progress "song-splitpart")
26 #(ly:progress "~a" (ly:gulp-file "song-splitpart.xml"))