]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-centered-lyrics.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / lsr / piano-template-with-centered-lyrics.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.0"
4
5 \header {
6   lsrtags = "text, keyboards, template"
7
8   texidoces = "
9 En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta
10 se puede centrar entre los pentagramas de un sistema de piano.
11
12 "
13   doctitlees = "Plantilla de piano con letra centrada"
14   
15   texidocde = "
16 Anstatt ein eigenes System für Melodie und Text zu schreiben, können 
17 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
18 (und damit das zusätzliche System für die Gesangstimme auslassen).
19 "
20
21   texidocja = "
22 旋律と歌詞のための譜表を持つ代わりに、歌詞をピアノ譜の 2 つの譜の間に置くことができます。
23 "
24
25   texidoc = "
26 Instead of having a full staff for the melody and lyrics, lyrics can be
27 centered between the staves of a piano staff.
28
29 "
30   doctitle = "Piano template with centered lyrics"
31 } % begin verbatim
32
33 upper = \relative c'' {
34   \clef treble
35   \key c \major
36   \time 4/4
37   
38   a4 b c d  
39 }
40
41 lower = \relative c {
42   \clef bass
43   \key c \major
44   \time 4/4
45   
46   a2 c  
47 }
48
49 text = \lyricmode {
50   Aaa Bee Cee Dee
51 }
52
53 \score {
54   \new GrandStaff <<
55     \new Staff = upper { \new Voice = "singer" \upper }
56     \new Lyrics \lyricsto "singer" \text
57     \new Staff = lower { \lower }
58   >>
59   \layout {
60     \context {
61       \GrandStaff
62       \accepts "Lyrics"
63     }
64     \context {
65       \Lyrics
66       \consists "Bar_engraver"
67     }
68   }
69   \midi { }
70 }