]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-simple.ly
Merge branch 'lilypond/translation' of ssh://trettig@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.12.0"
4
5 \header {
6   lsrtags = "keyboards, template"
7
8   texidoces = "
9 Presentamos a continuación una plantilla de piano sencilla con algunas
10 notas.
11
12 "
13   doctitlees = "Plantilla de piano (sencilla)"
14   
15   texidocde = "
16 Hier ein einfaches Klaviersystem.
17
18 "
19   doctitlede = "Vorlage für einfache Klaviernotation"
20
21   texidocja = "
22 これはいくつかの音符をもつ簡単なピアノ譜です。
23 "
24
25   texidoc = "
26 Here is a simple piano staff with some notes.
27
28 "
29   doctitle = "Piano template (simple)"
30 } % begin verbatim
31
32 upper = \relative c'' {
33   \clef treble
34   \key c \major
35   \time 4/4
36   
37   a4 b c d  
38 }
39
40 lower = \relative c {
41   \clef bass
42   \key c \major
43   \time 4/4
44   
45   a2 c  
46 }
47
48 \score {
49   \new PianoStaff <<
50     \set PianoStaff.instrumentName = #"Piano  "
51     \new Staff = "upper" \upper
52     \new Staff = "lower" \lower
53   >>
54   \layout { }
55   \midi { }
56 }