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