]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / 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.13.1"
4
5 \header {
6 %% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
7   texidocfr = "
8 Voici une simple partition pour piano avec quelques notes.
9
10 "
11   doctitlefr = "Piano -- cannevas simple"
12
13   lsrtags = "keyboards, template"
14
15 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
16   texidoces = "
17 Presentamos a continuación una plantilla de piano sencilla con algunas
18 notas.
19
20 "
21   doctitlees = "Plantilla de piano (sencilla)"
22   
23 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
24   texidocde = "
25 Hier ein einfaches Klaviersystem.
26
27 "
28   doctitlede = "Vorlage für einfache Klaviernotation"
29
30   texidoc = "
31 Here is a simple piano staff with some notes.
32
33 "
34   doctitle = "Piano template (simple)"
35 } % begin verbatim
36
37 upper = \relative c'' {
38   \clef treble
39   \key c \major
40   \time 4/4
41   
42   a4 b c d  
43 }
44
45 lower = \relative c {
46   \clef bass
47   \key c \major
48   \time 4/4
49   
50   a2 c  
51 }
52
53 \score {
54   \new PianoStaff <<
55     \set PianoStaff.instrumentName = #"Piano  "
56     \new Staff = "upper" \upper
57     \new Staff = "lower" \lower
58   >>
59   \layout { }
60   \midi { }
61 }
62