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