]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/piano-template-with-centered-dynamics.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / piano-template-with-centered-dynamics.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.36
5 \version "2.13.46"
6
7 \header {
8 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
9   texidoces = "
10 Muchas partituras de piano tienen las indicaciones dinámicas centradas
11 entre los dos pentagramas.  El contexto @code{Dynamics}, si se sitúa
12 entre pentagramas, coloca los matices dinámicos correctamente de forma
13 automática.
14
15 "
16   doctitlees = "Plantilla de piano con matices centrados"
17
18
19 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
20   texidocja = "
21 多くのピアノ譜は、強弱記号を 2 つの譜の間に置きます。これを実現するにはちょっ@c
22 とした調整が必要ですが、そのテンプレートがここにあるので、あなた自身が調整を行@c
23 う必要はありません。
24 "
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   texidocde = "
28 In der meisten Klaviernotation werden die Dynamikzeichen zwischen
29 den beiden Systemen zentriert. Für LilyPond muss man die Einstellungen
30 etwas anpassen, aber Sie können ja das angepasste Beispiel von hier
31 kopieren.
32 "
33
34
35 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
36   texidocfr = "
37 Nombre d'ouvrages pour piano font apparaître les nuances entre les deux
38 portées.  Bien que cela nécessite quelques subtilités, voici de quoi
39 obtenir un tel résultat.
40
41 "
42   doctitlefr = "Piano et nuances entre les portées"
43
44   lsrtags = "expressive-marks, keyboards, template"
45   texidoc = "
46 Many piano scores have the dynamics centered between the two staves.
47 The @code{Dynamics} context, if placed between staves, will
48 automatically position dynamics correctly.
49
50 "
51   doctitle = "Piano template with centered dynamics"
52 } % begin verbatim
53
54
55 global = {
56   \key c \major
57   \time 4/4
58 }
59
60 upper = \relative c'' {
61   \clef treble
62   a4 b c d
63 }
64
65 lower = \relative c {
66   \clef bass
67   a2 c
68 }
69
70 dynamics = {
71   s2\fff\> s4 s\!\pp
72 }
73
74 pedal = {
75   s2\sustainOn s\sustainOff
76 }
77
78 \score {
79   \new PianoStaff = "PianoStaff_pf" <<
80     \new Staff = "Staff_pfUpper" << \global \upper >>
81     \new Dynamics = "Dynamics_pf" \dynamics
82     \new Staff = "Staff_pfLower" << \global \lower >>
83     \new Dynamics = "pedal" \pedal
84   >>
85   \layout { }
86 }
87
88 \score {
89   \new PianoStaff = "PianoStaff_pf" <<
90     \new Staff = "Staff_pfUpper" << \global \upper \dynamics \pedal >>
91     \new Staff = "Staff_pfLower" << \global \lower \dynamics \pedal >>
92   >>
93   \midi { }
94 }