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