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