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