1\version "2.21.0"
2\header {
3  texidoc="Festival song synthesis output supports
4divided 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 {
14      c'4
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"))
27