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