LSR: Update.
[lilypond/mpolesky.git] / Documentation / snippets / piano-template-with-melody-and-lyrics.ly
blob629b32ff8d9d60aad8833e0a6874bfbde8da7d94
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
6 \header {
7 lsrtags = "vocal-music, keyboards, template"
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10 texidoces = "
11 He aquí el típico formato dde una canción: un pentagrama con la
12 melodía y la letra, y el acompañamiento de piano por debajo.
15 doctitlees = "Plantilla de piano con melodía y letra"
17 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
18 texidocja = "
19 これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Das nächste Beispiel ist typisch für ein Lied: Im oberen System die
24 Melodie mit Text, darunter Klavierbegleitung.
27 doctitlede = "Vorlage für Klavier und Gesangsstimme"
29 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
30 texidocfr = "
31 Il s'agit du format classique pour le chant : une portée pour la mélodie
32 et les paroles au-dessus de l'accompagnement au piano.
35 doctitlefr = "Piano mélodie et paroles"
37 texidoc = "
38 Here is a typical song format: one staff with the melody and lyrics,
39 with piano accompaniment underneath.
42 doctitle = "Piano template with melody and lyrics"
43 } % begin verbatim
45 melody = \relative c'' {
46 \clef treble
47 \key c \major
48 \time 4/4
50 a b c d
53 text = \lyricmode {
54 Aaa Bee Cee Dee
57 upper = \relative c'' {
58 \clef treble
59 \key c \major
60 \time 4/4
62 a4 b c d
65 lower = \relative c {
66 \clef bass
67 \key c \major
68 \time 4/4
70 a2 c
73 \score {
75 \new Voice = "mel" { \autoBeamOff \melody }
76 \new Lyrics \lyricsto mel \text
77 \new PianoStaff <<
78 \new Staff = "upper" \upper
79 \new Staff = "lower" \lower
82 \layout {
83 \context { \Staff \RemoveEmptyStaves }
85 \midi { }