]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Imported Upstream version 2.14.2
[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 comune doppio 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
22 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
23   texidoces = "
24 Presentamos a continuación una plantilla de piano sencilla con algunas
25 notas.
26
27 "
28   doctitlees = "Plantilla de piano (sencilla)"
29
30
31 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
32   texidocde = "
33 Hier ein einfaches Klaviersystem.
34
35 "
36   doctitlede = "Vorlage für einfache Klaviernotation"
37
38 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
39   texidocfr = "
40 Voici une simple partition pour piano avec quelques notes.
41
42 "
43   doctitlefr = "Piano -- cannevas simple"
44
45   texidoc = "
46 Here is a simple piano staff with some notes.
47
48 "
49   doctitle = "Piano template (simple)"
50 } % begin verbatim
51
52 upper = \relative c'' {
53   \clef treble
54   \key c \major
55   \time 4/4
56
57   a4 b c d
58 }
59
60 lower = \relative c {
61   \clef bass
62   \key c \major
63   \time 4/4
64
65   a2 c
66 }
67
68 \score {
69   \new PianoStaff <<
70     \set PianoStaff.instrumentName = #"Piano  "
71     \new Staff = "upper" \upper
72     \new Staff = "lower" \lower
73   >>
74   \layout { }
75   \midi { }
76 }
77