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