]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-centered-lyrics.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[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.64"
4
5 \header {
6   lsrtags = "text, keyboards, template"
7
8   texidoces = "
9 En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta
10 se puede centrar entre los pentagramas de un sistema de piano.
11
12 "
13   doctitlees = "Plantilla de piano con letra centrada"
14   
15   texidocde = "
16 Anstatt ein eigenes System für Melodie und Text zu schreiben, können 
17 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
18 (und damit das zusätzliche System für die Gesangstimme auslassen).
19 "
20
21   texidoc = "
22 Instead of having a full staff for the melody and lyrics, lyrics can be
23 centered between the staves of a piano staff.
24
25 "
26   doctitle = "Piano template with centered lyrics"
27 } % begin verbatim
28
29 upper = \relative c'' {
30   \clef treble
31   \key c \major
32   \time 4/4
33   
34   a4 b c d  
35 }
36
37 lower = \relative c {
38   \clef bass
39   \key c \major
40   \time 4/4
41   
42   a2 c  
43 }
44
45 text = \lyricmode {
46   Aaa Bee Cee Dee
47 }
48
49 \score {
50   \new GrandStaff <<
51     \new Staff = upper { \new Voice = "singer" \upper }
52     \new Lyrics \lyricsto "singer" \text
53     \new Staff = lower { \lower }
54   >>
55   \layout {
56     \context {
57       \GrandStaff
58       \accepts "Lyrics"
59     }
60     \context {
61       \Lyrics
62       \consists "Bar_engraver"
63     }
64   }
65   \midi { }
66 }