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