]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / piano-template-with-melody-and-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.62"
4
5 \header {
6   lsrtags = "vocal-music, keyboards, template"
7
8   texidoces = "
9 He aquí el típico formato dde una canción: un pentagrama con la
10 melodía y la letra, y el acompañamiento de piano por debajo.
11
12 "
13   doctitlees = "Plantilla de piano con melodía y letra"
14   
15   texidocde = "
16 as nächste Beispiel ist typisch für ein Lied: Im oberen System die 
17 Melodie mit Text, darunter Klavierbegleitung.
18 "
19
20   texidoc = "
21 Here is a typical song format: one staff with the melody and lyrics,
22 with piano accompaniment underneath. 
23
24 "
25   doctitle = "Piano template with melody and lyrics"
26 } % begin verbatim
27 melody = \relative c'' {
28   \clef treble
29   \key c \major
30   \time 4/4
31   
32   a b c d  
33 }
34
35 text = \lyricmode {
36   Aaa Bee Cee Dee
37 }
38
39 upper = \relative c'' {
40   \clef treble
41   \key c \major
42   \time 4/4
43   
44   a4 b c d  
45 }
46
47 lower = \relative c {
48   \clef bass
49   \key c \major
50   \time 4/4
51   
52   a2 c  
53 }
54
55 \score {
56   <<
57     \new Voice = "mel" { \autoBeamOff \melody }
58     \new Lyrics \lyricsto mel \text    
59     \new PianoStaff <<
60       \new Staff = "upper" \upper
61       \new Staff = "lower" \lower
62     >>
63   >>
64   \layout {
65     \context { \RemoveEmptyStaffContext }
66   }
67   \midi { }
68 }