]> 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 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
11   texidocit = "
12 Ecco un semplice pentagramma per pianoforte con un po' di note.
13
14 "
15   doctitleit = "Modello per pianoforte (semplice)"
16
17   lsrtags = "keyboards, template"
18
19
20
21 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
22   texidoces = "
23 Presentamos a continuación una plantilla de piano sencilla con algunas
24 notas.
25
26 "
27   doctitlees = "Plantilla de piano (sencilla)"
28
29
30 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
31   texidocde = "
32 Hier ein einfaches Klaviersystem.
33
34 "
35   doctitlede = "Vorlage für einfache Klaviernotation"
36
37 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
38   texidocfr = "
39 Voici une simple partition pour piano avec quelques notes.
40
41 "
42   doctitlefr = "Piano -- cannevas simple"
43
44   texidoc = "
45 Here is a simple piano staff with some notes.
46
47 "
48   doctitle = "Piano template (simple)"
49 } % begin verbatim
50
51 upper = \relative c'' {
52   \clef treble
53   \key c \major
54   \time 4/4
55
56   a4 b c d
57 }
58
59 lower = \relative c {
60   \clef bass
61   \key c \major
62   \time 4/4
63
64   a2 c
65 }
66
67 \score {
68   \new PianoStaff <<
69     \set PianoStaff.instrumentName = #"Piano  "
70     \new Staff = "upper" \upper
71     \new Staff = "lower" \lower
72   >>
73   \layout { }
74   \midi { }
75 }
76