]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
Doc: update snippet committishes.
[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.10"
5
6 \header {
7   lsrtags = "vocal-music, keyboards, template"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
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: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
18   texidocja = "
19 これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
20 "
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
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