]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
48897eaae1e82d838a9ef9c9b019565d258803fb
[lilypond.git] / Documentation / snippets / piano-template-simple.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "keyboards, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Presentamos a continuación una plantilla de piano sencilla con algunas
12 notas.
13
14 "
15   doctitlees = "Plantilla de piano (sencilla)"
16
17 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
18   texidocde = "
19 Hier ein einfaches Klaviersystem.
20
21 "
22   doctitlede = "Vorlage für einfache Klaviernotation"
23 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
24   texidocfr = "
25 Voici une simple partition pour piano avec quelques notes.
26
27 "
28   doctitlefr = "Piano -- cannevas simple"
29
30   texidoc = "
31 Here is a simple piano staff with some notes.
32
33 "
34   doctitle = "Piano template (simple)"
35 } % begin verbatim
36
37 upper = \relative c'' {
38   \clef treble
39   \key c \major
40   \time 4/4
41
42   a4 b c d
43 }
44
45 lower = \relative c {
46   \clef bass
47   \key c \major
48   \time 4/4
49
50   a2 c
51 }
52
53 \score {
54   \new PianoStaff <<
55     \set PianoStaff.instrumentName = #"Piano  "
56     \new Staff = "upper" \upper
57     \new Staff = "lower" \lower
58   >>
59   \layout { }
60   \midi { }
61 }
62