]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-names-context.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / note-names-context.ly
1 \version "2.14.0"
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
13     #'basic-distance = #10 % increase this value for more space
14 }
15
16 notes = \relative c {
17   c'4 c c c
18 }
19
20 mylyrics = \lyricmode {
21   \tempo "Allegro"
22   ly -- ric ly -- ric
23 }
24
25 \score {
26   <<
27     \new Voice = "voice" {
28       \repeat unfold 13 \notes
29     }
30     \context NoteNames  {
31       \repeat unfold 13 \notes
32     }
33     \new Lyrics \lyricsto "voice" {
34       \repeat unfold 13 \mylyrics
35     }
36   >>
37 }