]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
8d80c301f4917c26f8684a664d15d72d4d8155f8
[lilypond.git] / input / lsr / piano-template-with-melody-and-lyrics.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 = "vocal-music, keyboards, template"
7
8 %% Translation of GIT committish: d35687993883eb31442009fc50d5ae063108bfa7
9   texidoces = "
10 He aquí el típico formato dde una canción: un pentagrama con la
11 melodía y la letra, y el acompañamiento de piano por debajo.
12
13 "
14   doctitlees = "Plantilla de piano con melodía y letra"
15   
16 %% Translation of GIT committish: 17633f6b8681af86230aa84597fe7561e98c91d6
17   texidocde = "
18 Das nächste Beispiel ist typisch für ein Lied: Im oberen System die 
19 Melodie mit Text, darunter Klavierbegleitung.
20 "
21
22 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
23   texidocja = "
24 これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
25 "
26
27   texidoc = "
28 Here is a typical song format: one staff with the melody and lyrics,
29 with piano accompaniment underneath. 
30
31 "
32   doctitle = "Piano template with melody and lyrics"
33 } % begin verbatim
34
35 melody = \relative c'' {
36   \clef treble
37   \key c \major
38   \time 4/4
39   
40   a b c d  
41 }
42
43 text = \lyricmode {
44   Aaa Bee Cee Dee
45 }
46
47 upper = \relative c'' {
48   \clef treble
49   \key c \major
50   \time 4/4
51   
52   a4 b c d  
53 }
54
55 lower = \relative c {
56   \clef bass
57   \key c \major
58   \time 4/4
59   
60   a2 c  
61 }
62
63 \score {
64   <<
65     \new Voice = "mel" { \autoBeamOff \melody }
66     \new Lyrics \lyricsto mel \text    
67     \new PianoStaff <<
68       \new Staff = "upper" \upper
69       \new Staff = "lower" \lower
70     >>
71   >>
72   \layout {
73     \context { \RemoveEmptyStaffContext }
74   }
75   \midi { }
76 }
77