]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
0fea696ab1eda310a1655c0ab73f8e931bbae4c7
[lilypond.git] / Documentation / snippets / piano-template-with-centered-lyrics.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "keyboards, really-simple, template, text"
11
12   texidoc = "
13 Instead of having a full staff for the melody and lyrics, lyrics can be
14 centered between the staves of a piano staff.
15
16 "
17   doctitle = "Piano template with centered lyrics"
18 } % begin verbatim
19
20
21 upper = \relative c'' {
22   \clef treble
23   \key c \major
24   \time 4/4
25
26   a4 b c d
27 }
28
29 lower = \relative c {
30   \clef bass
31   \key c \major
32   \time 4/4
33
34   a2 c
35 }
36
37 text = \lyricmode {
38   Aaa Bee Cee Dee
39 }
40
41 \score {
42   \new GrandStaff <<
43     \new Staff = upper { \new Voice = "singer" \upper }
44     \new Lyrics \lyricsto "singer" \text
45     \new Staff = lower { \lower }
46   >>
47   \layout {
48     \context {
49       \GrandStaff
50       \accepts "Lyrics"
51     }
52     \context {
53       \Lyrics
54       \consists "Bar_engraver"
55     }
56   }
57   \midi { }
58 }