]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyrics-skip-notes.ly
(noFlag): fold into manual
[lilypond.git] / input / test / lyrics-skip-notes.ly
1
2 \header
3 {
4     texidoc ="
5
6 By inserting @code{\\skip} statements into lyric lines, one can attach
7 less lyric syllables to a melody. 
8
9 "
10 }
11
12
13                                 % shorthand for Skip Lyric
14 sl =  { \skip 4 }
15
16 \version "2.3.8"
17 \score {
18     <<
19         \context Voice = "A" \relative { c4 c c c }
20         \lyricsto "A" \new Lyrics { foo __ \sl \sl bar }
21         \lyricsto "A" \new Lyrics { foo -- \sl baz bar }
22         \lyricsto "A" \new Lyrics { foo -- baz -- baaz bar }
23     >>
24 }