]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "template, vocal-music, keyboards, really-simple"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
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