]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Merge master into nested-bookparts
[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.62"
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   doctitlede = "Vorlage für einfache Klaviernotation"
20
21   texidoc = "
22 Here is a simple piano staff with some notes.
23
24 "
25   doctitle = "Piano template (simple)"
26 } % begin verbatim
27 upper = \relative c'' {
28   \clef treble
29   \key c \major
30   \time 4/4
31   
32   a4 b c d  
33 }
34
35 lower = \relative c {
36   \clef bass
37   \key c \major
38   \time 4/4
39   
40   a2 c  
41 }
42
43 \score {
44   \new PianoStaff <<
45     \set PianoStaff.instrumentName = #"Piano  "
46     \new Staff = "upper" \upper
47     \new Staff = "lower" \lower
48   >>
49   \layout { }
50   \midi { }
51 }