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