]> 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
[lilypond.git] / Documentation / snippets / piano-template-simple.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "keyboards, template"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 Presentamos a continuación una plantilla de piano sencilla con algunas
12 notas.
13
14 "
15   doctitlees = "Plantilla de piano (sencilla)"
16
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Hier ein einfaches Klaviersystem.
21
22 "
23   doctitlede = "Vorlage für einfache Klaviernotation"
24
25 %% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
26   texidocfr = "
27 Voici une simple partition pour piano avec quelques notes.
28
29 "
30   doctitlefr = "Piano -- cannevas simple"
31
32   texidoc = "
33 Here is a simple piano staff with some notes.
34
35 "
36   doctitle = "Piano template (simple)"
37 } % begin verbatim
38
39 upper = \relative c'' {
40   \clef treble
41   \key c \major
42   \time 4/4
43
44   a4 b c d
45 }
46
47 lower = \relative c {
48   \clef bass
49   \key c \major
50   \time 4/4
51
52   a2 c
53 }
54
55 \score {
56   \new PianoStaff <<
57     \set PianoStaff.instrumentName = #"Piano  "
58     \new Staff = "upper" \upper
59     \new Staff = "lower" \lower
60   >>
61   \layout { }
62   \midi { }
63 }
64