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