]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-lyrics.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / piano-template-with-centered-lyrics.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "text, keyboards, template"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta
12 se puede centrar entre los pentagramas de un sistema de piano.
13
14 "
15   doctitlees = "Plantilla de piano con letra centrada"
16
17
18 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
19   texidocja = "
20 旋律と歌詞のための譜表を持つ代わりに、歌詞をピアノ譜の 2 つの譜の間に置くことができます。
21 "
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24   texidocde = "
25 Anstatt ein eigenes System für Melodie und Text zu schreiben, können
26 Sie den Text auch zwischen die beiden Klaviersysteme schreiben
27 (und damit das zusätzliche System für die Gesangstimme auslassen).
28 "
29
30
31 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
32   texidocfr = "
33 Lorsque la mélodie est doublée au piano, cela ne nécessite pas forcément
34 une portée spécifique.  Les paroles peuvent s'insérer entre les deux
35 portées de la partition pour piano.
36
37 "
38   doctitlefr = "Piano et paroles entre les portées"
39
40   texidoc = "
41 Instead of having a full staff for the melody and lyrics, lyrics can be
42 centered between the staves of a piano staff.
43
44 "
45   doctitle = "Piano template with centered lyrics"
46 } % begin verbatim
47
48 upper = \relative c'' {
49   \clef treble
50   \key c \major
51   \time 4/4
52
53   a4 b c d
54 }
55
56 lower = \relative c {
57   \clef bass
58   \key c \major
59   \time 4/4
60
61   a2 c
62 }
63
64 text = \lyricmode {
65   Aaa Bee Cee Dee
66 }
67
68 \score {
69   \new GrandStaff <<
70     \new Staff = upper { \new Voice = "singer" \upper }
71     \new Lyrics \lyricsto "singer" \text
72     \new Staff = lower { \lower }
73   >>
74   \layout {
75     \context {
76       \GrandStaff
77       \accepts "Lyrics"
78     }
79     \context {
80       \Lyrics
81       \consists "Bar_engraver"
82     }
83   }
84   \midi { }
85 }
86