]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
Merge commit 'origin' into beamlets2
[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.12.0"
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 Das 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
28 melody = \relative c'' {
29   \clef treble
30   \key c \major
31   \time 4/4
32   
33   a b c d  
34 }
35
36 text = \lyricmode {
37   Aaa Bee Cee Dee
38 }
39
40 upper = \relative c'' {
41   \clef treble
42   \key c \major
43   \time 4/4
44   
45   a4 b c d  
46 }
47
48 lower = \relative c {
49   \clef bass
50   \key c \major
51   \time 4/4
52   
53   a2 c  
54 }
55
56 \score {
57   <<
58     \new Voice = "mel" { \autoBeamOff \melody }
59     \new Lyrics \lyricsto mel \text    
60     \new PianoStaff <<
61       \new Staff = "upper" \upper
62       \new Staff = "lower" \lower
63     >>
64   >>
65   \layout {
66     \context { \RemoveEmptyStaffContext }
67   }
68   \midi { }
69 }