]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
52210e9b01c2df0b163b6663345dec12a67558e8
[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 = "really-simple, keyboards, template"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: d76b338302374164acc9b62a0d628d4d230bfa95
22   texidocja = "
23 いくつかの音符を持つシンプルなピアノ譜を示します。
24
25 "
26   doctitleja = "ピアノ テンプレート (シンプル)"
27
28 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
29   texidocit = "
30 Ecco un comune doppio pentagramma per pianoforte con un po' di note.
31
32 "
33   doctitleit = "Modello per pianoforte (semplice)"
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Hier ein einfaches Klaviersystem.
38
39 "
40   doctitlede = "Vorlage für einfache Klaviernotation"
41
42 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
43   texidocfr = "
44 Voici une simple partition pour piano avec quelques notes.
45
46 "
47   doctitlefr = "Piano -- cannevas simple"
48
49   texidoc = "
50 Here is a simple piano staff with some notes.
51
52 "
53   doctitle = "Piano template (simple)"
54 } % begin verbatim
55
56
57 upper = \relative c'' {
58   \clef treble
59   \key c \major
60   \time 4/4
61
62   a4 b c d
63 }
64
65 lower = \relative c {
66   \clef bass
67   \key c \major
68   \time 4/4
69
70   a2 c
71 }
72
73 \score {
74   \new PianoStaff <<
75     \set PianoStaff.instrumentName = #"Piano  "
76     \new Staff = "upper" \upper
77     \new Staff = "lower" \lower
78   >>
79   \layout { }
80   \midi { }
81 }
82