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