]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
Docs: update snippets locally
[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 %% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
7   texidocfr = "
8 Lorsque la mélodie est doublée au piano, cela ne nécessite pas forcément
9 une portée spécifique.  Les paroles peuvent s'insérer entre les deux
10 portée de la partition pour piano.
11
12 "
13   doctitlefr = "Piano et paroles entre les portées"
14
15   lsrtags = "text, keyboards, template"
16
17 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
18   texidoces = "
19 En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta
20 se puede centrar entre los pentagramas de un sistema de piano.
21
22 "
23   doctitlees = "Plantilla de piano con letra centrada"
24   
25 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
26   texidocde = "
27 Anstatt ein eigenes System für Melodie und Text zu schreiben, können 
28 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
29 (und damit das zusätzliche System für die Gesangstimme auslassen).
30 "
31
32 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
33   texidocja = "
34 旋律と歌詞のための譜表を持つ代わりに、歌詞をピアノ譜の 2 つの譜の間に置くことができます。
35 "
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