]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
Doc-it: fix compile.
[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.25"
8
9 \header {
10   lsrtags = "vocal-music, keyboards, template"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
27   texidocit = "
28 Ecco un tipico formato per canzoni: un rigo con linea melodica e testo,
29 e sotto l'accompagnamento per pianoforte.
30
31 "
32   doctitleit = "Modello per pianoforte con melodia e testo"
33
34 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
35   texidocde = "
36 Das nächste Beispiel ist typisch für ein Lied: Im oberen System die
37 Melodie mit Text, darunter Klavierbegleitung.
38 "
39
40   doctitlede = "Vorlage für Klavier und Gesangsstimme"
41
42
43 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
44   texidocfr = "
45 Il s'agit du format classique pour le chant : une portée pour la mélodie
46 et les paroles au-dessus de l'accompagnement au piano.
47
48 "
49   doctitlefr = "Piano mélodie et paroles"
50
51   texidoc = "
52 Here is a typical song format: one staff with the melody and lyrics,
53 with piano accompaniment underneath.
54
55 "
56   doctitle = "Piano template with melody and lyrics"
57 } % begin verbatim
58
59 melody = \relative c'' {
60   \clef treble
61   \key c \major
62   \time 4/4
63
64   a b c d
65 }
66
67 text = \lyricmode {
68   Aaa Bee Cee Dee
69 }
70
71 upper = \relative c'' {
72   \clef treble
73   \key c \major
74   \time 4/4
75
76   a4 b c d
77 }
78
79 lower = \relative c {
80   \clef bass
81   \key c \major
82   \time 4/4
83
84   a2 c
85 }
86
87 \score {
88   <<
89     \new Voice = "mel" { \autoBeamOff \melody }
90     \new Lyrics \lyricsto mel \text
91     \new PianoStaff <<
92       \new Staff = "upper" \upper
93       \new Staff = "lower" \lower
94     >>
95   >>
96   \layout {
97     \context { \Staff \RemoveEmptyStaves }
98   }
99   \midi { }
100 }
101