]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/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 \version "2.11.38"
4
5 \header {
6   lsrtags = "piano-music, 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   a b c d
20   
21 }
22
23 lower = \relative c {
24   \clef bass
25   \key c \major
26   \time 4/4
27   
28   a2 c
29   
30 }
31
32 \score {
33   \new PianoStaff <<
34     \set PianoStaff.instrumentName = "Piano  "
35     \new Staff = "upper" \upper
36     \new Staff = "lower" \lower
37   >>
38   \layout { }
39   \midi { }
40 }