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