]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-names-context.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / note-names-context.ly
1 \version "2.19.21"
2
3 \header {
4
5   texidoc = "
6     NoteNames context should be close to the related notes,
7     and should not collide with the tempo markings.
8   "
9 }
10
11 \paper {
12   system-system-spacing.basic-distance = #10 % increase this value for more space
13 }
14
15 notes = \relative {
16   c'4 c c c
17 }
18
19 mylyrics = \lyricmode {
20   \tempo "Allegro"
21   ly -- ric ly -- ric
22 }
23
24 \score {
25   <<
26     \new Voice = "voice" {
27       \repeat unfold 13 \notes
28     }
29     \context NoteNames  {
30       \repeat unfold 13 \notes
31     }
32     \new Lyrics \lyricsto "voice" {
33       \repeat unfold 13 \mylyrics
34     }
35   >>
36 }