]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Merge git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / piano-template-simple.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.61"
4
5 \header {
6   lsrtags = "keyboards, template"
7
8   texidoces = "
9 Presentamos a continuación una plantilla de piano sencilla con algunas
10 notas.
11
12 "
13   doctitlees = "Plantilla de piano (sencilla)"
14   
15   texidocde = "
16 Hier ein einfaches Klaviersystem.
17
18 "
19
20   doctitlees = "Vorlage für einfache Klaviernotation"
21
22   texidoc = "
23 Here is a simple piano staff with some notes.
24
25 "
26   doctitle = "Piano template (simple)"
27 } % begin verbatim
28 upper = \relative c'' {
29   \clef treble
30   \key c \major
31   \time 4/4
32   
33   a4 b c d  
34 }
35
36 lower = \relative c {
37   \clef bass
38   \key c \major
39   \time 4/4
40   
41   a2 c  
42 }
43
44 \score {
45   \new PianoStaff <<
46     \set PianoStaff.instrumentName = #"Piano  "
47     \new Staff = "upper" \upper
48     \new Staff = "lower" \lower
49   >>
50   \layout { }
51   \midi { }
52 }