]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Merge branch 'dev/mf2pt1-build' of 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 %% Tags: piano-music, template
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Here is a simple piano staff with some notes.
8 " }
9 % begin verbatim
10 upper = \relative c'' {
11             \clef treble
12             \key c \major
13             \time 4/4
14          
15             a b c d
16          }
17          
18          lower = \relative c {
19             \clef bass
20             \key c \major
21             \time 4/4
22          
23             a2 c
24          }
25          
26          \score {
27             \new PianoStaff <<
28                \set PianoStaff.instrumentName = "Piano  "
29                \new Staff = "upper" \upper
30                \new Staff = "lower" \lower
31             >>
32             \layout { }
33             \midi { }
34          }
35