]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
8e2b2be9ad77462d29f49b3a36c8b8be6e177da8
[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.14.2"
8
9 \header {
10   lsrtags = "template, keyboards, text, really-simple"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
27   texidocit = "
28 Invece di destinare un rigo a parte alla linea melodica e al suo testo, è
29 possibile collocare il testo al centro di un doppio pentagramma per pianoforte.
30
31 "
32   doctitleit = "Modello per pianoforte con testo al centro"
33
34 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
35   texidocde = "
36 Anstatt ein eigenes System für Melodie und Text zu schreiben, können
37 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
38 (und damit das zusätzliche System für die Gesangstimme auslassen).
39 "
40
41
42 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
43   texidocfr = "
44 Lorsque la mélodie est doublée au piano, cela ne nécessite pas forcément
45 une portée spécifique.  Les paroles peuvent s'insérer entre les deux
46 portées de la partition pour piano.
47
48 "
49   doctitlefr = "Piano et paroles entre les portées"
50
51   texidoc = "
52 Instead of having a full staff for the melody and lyrics, lyrics can be
53 centered between the staves of a piano staff.
54
55 "
56   doctitle = "Piano template with centered lyrics"
57 } % begin verbatim
58
59
60 upper = \relative c'' {
61   \clef treble
62   \key c \major
63   \time 4/4
64
65   a4 b c d
66 }
67
68 lower = \relative c {
69   \clef bass
70   \key c \major
71   \time 4/4
72
73   a2 c
74 }
75
76 text = \lyricmode {
77   Aaa Bee Cee Dee
78 }
79
80 \score {
81   \new GrandStaff <<
82     \new Staff = upper { \new Voice = "singer" \upper }
83     \new Lyrics \lyricsto "singer" \text
84     \new Staff = lower { \lower }
85   >>
86   \layout {
87     \context {
88       \GrandStaff
89       \accepts "Lyrics"
90     }
91     \context {
92       \Lyrics
93       \consists "Bar_engraver"
94     }
95   }
96   \midi { }
97 }
98