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