]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Doc: run makelsr.py after adding italian translation of snippets in LM
[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 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
21   texidoces = "
22 Presentamos a continuación una plantilla de piano sencilla con algunas
23 notas.
24
25 "
26   doctitlees = "Plantilla de piano (sencilla)"
27
28
29 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 Hier ein einfaches Klaviersystem.
32
33 "
34   doctitlede = "Vorlage für einfache Klaviernotation"
35
36 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
37   texidocfr = "
38 Voici une simple partition pour piano avec quelques notes.
39
40 "
41   doctitlefr = "Piano -- cannevas simple"
42
43   texidoc = "
44 Here is a simple piano staff with some notes.
45
46 "
47   doctitle = "Piano template (simple)"
48 } % begin verbatim
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