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