]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Add a TODO comment re grace note spacing.
[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.35"
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          lower = \relative c {
20             \clef bass
21             \key c \major
22             \time 4/4
23          
24             a2 c
25          }
26          
27          \score {
28             \new PianoStaff <<
29                \set PianoStaff.instrumentName = "Piano  "
30                \new Staff = "upper" \upper
31                \new Staff = "lower" \lower
32             >>
33             \layout { }
34             \midi { }
35          }
36