]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
64ad83dad2a13478d1029111526b4b13fc5fc10d
[lilypond.git] / Documentation / snippets / piano-template-with-melody-and-lyrics.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "vocal-music, keyboards, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 He aquí el típico formato dde una canción: un pentagrama con la
12 melodía y la letra, y el acompañamiento de piano por debajo.
13
14 "
15   doctitlees = "Plantilla de piano con melodía y letra"
16
17 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
18   texidocja = "
19 これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
20 "
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Das nächste Beispiel ist typisch für ein Lied: Im oberen System die
24 Melodie mit Text, darunter Klavierbegleitung.
25 "
26
27   doctitlede = "Vorlage für Klavier und Gesangsstimme"
28
29 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
30   texidocfr = "
31 Il s'agit du format classique pour le chant : une portée pour la mélodie
32 et les paroles au-dessus de l'accompagnement au piano.
33
34 "
35   doctitlefr = "Piano mélodie et paroles"
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