]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-simple.ly
Docs: run convert-ly for 2.14.0.
[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   lsrtags = "keyboards, template"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Hier ein einfaches Klaviersystem.
24
25 "
26   doctitlede = "Vorlage für einfache Klaviernotation"
27
28 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
29   texidocfr = "
30 Voici une simple partition pour piano avec quelques notes.
31
32 "
33   doctitlefr = "Piano -- cannevas simple"
34
35   texidoc = "
36 Here is a simple piano staff with some notes.
37
38 "
39   doctitle = "Piano template (simple)"
40 } % begin verbatim
41
42 upper = \relative c'' {
43   \clef treble
44   \key c \major
45   \time 4/4
46
47   a4 b c d
48 }
49
50 lower = \relative c {
51   \clef bass
52   \key c \major
53   \time 4/4
54
55   a2 c
56 }
57
58 \score {
59   \new PianoStaff <<
60     \set PianoStaff.instrumentName = #"Piano  "
61     \new Staff = "upper" \upper
62     \new Staff = "lower" \lower
63   >>
64   \layout { }
65   \midi { }
66 }
67