]> git.donarmstrong.com Git - lilypond.git/blob - input/template/piano-lyrics.ly
*** empty log message ***
[lilypond.git] / input / template / piano-lyrics.ly
1 \version "1.5.68"
2
3 \header {
4   texidoc ="Lyrics between two staffs."
5 }
6
7 upper = \notes\relative c'' {
8   a b c d
9 }
10
11 lower = \notes\relative c {
12   a2 c
13 }
14
15 text = \lyrics {
16   Aaa Bee Cee Dee
17 }
18
19 \score {
20   \context GrandStaff <
21     \addlyrics
22       \context Staff = upper \upper
23       \context Lyrics \text
24     \context Staff = lower <
25       \clef bass
26       \lower
27     >  
28   >
29   \paper {
30     \translator {
31       \GrandStaffContext
32       \accepts "Lyrics"
33     }
34     \translator {
35       %\LyricsVoiceContext
36       \LyricsContext
37       \consists "Bar_engraver"
38     }
39   }  
40   \midi { }  
41 }