]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/addlyrics-existing-context.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / addlyrics-existing-context.ly
1 \version "2.19.14"
2
3 \header {
4   texidoc = "
5 @code{\\addlyrics} should be able to attach itself to named and unnamed @code{Voice}
6 constructs.  For all tests where this succeeds, the noteheads will be red."
7 }
8
9 \layout { ragged-right = ##t }
10
11 \new Staff \new Voice \with { \override NoteHead.color = #red }
12 { \tempo \markup \typewriter "\\new Staff \\new Voice" c'1 }
13 \addlyrics { Oh! }
14
15 \new Voice \with { \override NoteHead.color = #red }
16 { \tempo \markup \typewriter "\\new Voice" c'1 }
17 \addlyrics { Oh! }
18
19 \new Staff \new Voice = "named" \with { \override NoteHead.color = #red }
20 { \tempo \markup \typewriter "\\new Staff \\new Voice = \"named\"" c'1 }
21 \addlyrics { Oh! }
22
23 \new Voice = "named" \with { \override NoteHead.color = #red }
24 { \tempo \markup \typewriter "\\new Voice = \"named\"" c'1 }
25 \addlyrics { Oh! }