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