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