]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
2ffcf6feded1bfe4c76705b0cb8572e03e6f414a
[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.57"
4
5 \header {
6   lsrtags = "keyboards, template"
7
8   texidoc = "
9 Here is a simple piano staff with some notes.
10
11 "
12   doctitle = "Piano template (simple)"
13 } % begin verbatim
14 upper = \relative c'' {
15   \clef treble
16   \key c \major
17   \time 4/4
18   
19   a4 b c d  
20 }
21
22 lower = \relative c {
23   \clef bass
24   \key c \major
25   \time 4/4
26   
27   a2 c  
28 }
29
30 \score {
31   \new PianoStaff <<
32     \set PianoStaff.instrumentName = #"Piano  "
33     \new Staff = "upper" \upper
34     \new Staff = "lower" \lower
35   >>
36   \layout { }
37   \midi { }
38 }