]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-centered-lyrics.ly
Add a TODO comment re grace note spacing.
[lilypond.git] / input / lsr / piano-template-with-centered-lyrics.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.35"
4
5 \header {
6   lsrtags = "text, piano-music, template"
7  texidoc = "
8 Instead of having a full staff for the melody and lyrics, you can place
9 the lyrics between the piano staff (and omit the separate melody
10 staff).
11 " }
12 % begin verbatim
13 upper = \relative c'' {
14             \clef treble
15             \key c \major
16             \time 4/4
17          
18             a b c d
19          }
20          
21          lower = \relative c {
22             \clef bass
23             \key c \major
24             \time 4/4
25          
26             a2 c
27          }
28          
29          text = \lyricmode {
30             Aaa Bee Cee Dee
31          }
32          
33          \score {
34            \new GrandStaff <<
35              \new Staff = upper { \new Voice = "singer" \upper }
36              \new Lyrics \lyricsto "singer" \text
37              \new Staff = lower {
38                \clef bass
39                \lower
40              }
41            >>
42            \layout {
43              \context { \GrandStaff \accepts "Lyrics" }
44              \context { \Lyrics \consists "Bar_engraver" }
45            }
46            \midi { }
47          }
48