]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / piano-template-simple.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "keyboards, template"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Presentamos a continuación una plantilla de piano sencilla con algunas
15 notas.
16
17 "
18   doctitlees = "Plantilla de piano (sencilla)"
19
20
21 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
22   texidocit = "
23 Ecco un comune doppio pentagramma per pianoforte con un po' di note.
24
25 "
26   doctitleit = "Modello per pianoforte (semplice)"
27
28 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
29   texidocde = "
30 Hier ein einfaches Klaviersystem.
31
32 "
33   doctitlede = "Vorlage für einfache Klaviernotation"
34
35 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
36   texidocfr = "
37 Voici une simple partition pour piano avec quelques notes.
38
39 "
40   doctitlefr = "Piano -- cannevas simple"
41
42   texidoc = "
43 Here is a simple piano staff with some notes.
44
45 "
46   doctitle = "Piano template (simple)"
47 } % begin verbatim
48
49 upper = \relative c'' {
50   \clef treble
51   \key c \major
52   \time 4/4
53
54   a4 b c d
55 }
56
57 lower = \relative c {
58   \clef bass
59   \key c \major
60   \time 4/4
61
62   a2 c
63 }
64
65 \score {
66   \new PianoStaff <<
67     \set PianoStaff.instrumentName = #"Piano  "
68     \new Staff = "upper" \upper
69     \new Staff = "lower" \lower
70   >>
71   \layout { }
72   \midi { }
73 }
74