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