]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Merge branch 'lilypond/translation' into staging
[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.2"
8
9 \header {
10   lsrtags = "template, keyboards, really-simple"
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
50 upper = \relative c'' {
51   \clef treble
52   \key c \major
53   \time 4/4
54
55   a4 b c d
56 }
57
58 lower = \relative c {
59   \clef bass
60   \key c \major
61   \time 4/4
62
63   a2 c
64 }
65
66 \score {
67   \new PianoStaff <<
68     \set PianoStaff.instrumentName = #"Piano  "
69     \new Staff = "upper" \upper
70     \new Staff = "lower" \lower
71   >>
72   \layout { }
73   \midi { }
74 }
75