]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-no-association-rhythm.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / input / regression / lyric-no-association-rhythm.ly
1
2 \header {
3
4   texidoc = "When lyrics are not associated with specific voices, the
5   lyric placement should follow lyric rhythms.  In particular, the
6   second syllable here should not be attached to the first note of the first staff."
7
8 }
9
10
11 \version "2.19.21"
12 \layout { ragged-right = ##t }
13
14 \score {
15   \context ChoirStaff <<
16     \context Staff = soprano <<
17       \context Voice = sop \relative { e'2 e4  }
18     >>
19     \context Staff = alto <<
20       \context Voice = alt \relative { e'4  e4  e4  }
21       \new Lyrics \lyricmode { 
22         do4 re4 me4
23       }
24     >>
25   >>
26 }