]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
Doc: Update LSR.
[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: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: fa1aa6efe68346f465cfdb9565ffe35083797b86
18   texidocja = "
19 旋律と歌詞のための譜表を持つ代わりに、歌詞をピアノ譜の 2 つの譜の間に置くことができます。
20 "
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
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