]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / piano-template-with-centered-lyrics.ly
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.16"
5
6 \header {
7   lsrtags = "text, keyboards, template"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta
12 se puede centrar entre los pentagramas de un sistema de piano.
13
14 "
15   doctitlees = "Plantilla de piano con letra centrada"
16
17
18 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
19   texidocja = "
20 旋律と歌詞のための譜表を持つ代わりに、歌詞をピアノ譜の 2 つの譜の間に置くことができます。
21 "
22
23 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
24   texidocde = "
25 Anstatt ein eigenes System für Melodie und Text zu schreiben, können
26 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
27 (und damit das zusätzliche System für die Gesangstimme auslassen).
28 "
29
30
31 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
32   texidocfr = "
33 Lorsque la mélodie est doublée au piano, cela ne nécessite pas forcément
34 une portée spécifique.  Les paroles peuvent s'insérer entre les deux
35 portées de la partition pour piano.
36
37 "
38   doctitlefr = "Piano et paroles entre les portées"
39
40   texidoc = "
41 Instead of having a full staff for the melody and lyrics, lyrics can be
42 centered between the staves of a piano staff.
43
44 "
45   doctitle = "Piano template with centered lyrics"
46 } % begin verbatim
47
48 upper = \relative c'' {
49   \clef treble
50   \key c \major
51   \time 4/4
52
53   a4 b c d
54 }
55
56 lower = \relative c {
57   \clef bass
58   \key c \major
59   \time 4/4
60
61   a2 c
62 }
63
64 text = \lyricmode {
65   Aaa Bee Cee Dee
66 }
67
68 \score {
69   \new GrandStaff <<
70     \new Staff = upper { \new Voice = "singer" \upper }
71     \new Lyrics \lyricsto "singer" \text
72     \new Staff = lower { \lower }
73   >>
74   \layout {
75     \context {
76       \GrandStaff
77       \accepts "Lyrics"
78     }
79     \context {
80       \Lyrics
81       \consists "Bar_engraver"
82     }
83   }
84   \midi { }
85 }
86