]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/transposing-pitches-with-minimum-accidentals-smart-transpose.ly
Merge branch 'lilypond/translation' into staging
[lilypond.git] / Documentation / snippets / transposing-pitches-with-minimum-accidentals-smart-transpose.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   lsrtags = "pitches"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13 doctitlees = "Transportar música con el menor número de alteraciones"
14 texidoces = "
15 Este ejemplo utiliza código de Scheme para forzar las
16 modificaciones enarmónicas de las notas, y así tener el menor
17 número de alteraciones accidentales. En este caso se aplican las
18 siguientes reglas:
19
20 @itemize
21 @item
22 Se quitan las dobles alteraciones
23
24 @item
25 Si sostenido -> Do
26
27 @item
28 Mi sistenido -> Fa
29
30 @item
31 Do bemol -> Si
32
33 @item
34 Fa bemol -> Mi
35
36 @end itemize
37
38 De esta forma se selecciona el mayor número de notas enarmónicas
39 naturales.
40
41 "
42
43
44 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
45   doctitlede = "Noten mit minimaler Anzahl an Versetzungszeichen transponieren."
46   texidocde = "Dieses Beispiel benutzt Scheme-Code, um enharmonische
47 Verwechslungen für Noten zu erzwingen, damit nur eine minimale Anzahl
48 an Versetzungszeichen ausgegeben wird.  In diesem Fall gelten die
49 folgenden Regeln:
50
51 @itemize
52 @item
53 Doppelte Versetzungszeichen sollen entfernt werden
54
55 @item
56 His -> C
57
58 @item
59 Eis -> F
60
61 @item
62 Ces -> B
63
64 @item
65 Fes -> E
66
67 @end itemize
68
69 Auf diese Art werden am meisten natürliche Tonhöhen als enharmonische
70 Variante gewählt.
71 "
72
73
74 %% Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
75   texidocfr = "
76 Cet exemple, grâce à un peu de code Scheme, donne la priorité aux
77 enharmoniques afin de limiter le nombre d'altérations supplémentaires.
78 La règle appliquable est@tie{}:
79
80 @itemize
81 @item
82 Les altérations doubles sont supprimées
83
84 @item
85 Si dièse -> Do
86
87 @item
88 Mi dièse -> Fa
89
90 @item
91 Do bémol -> Si
92
93 @item
94 Fa bémol -> Mi
95
96 @end itemize
97
98 Cette façon de procéder aboutit à plus d'enharmoniques naturelles.
99
100 "
101   doctitlefr = "Transposition et réduction du nombre d'altérations accidentelles"
102
103   texidoc = "
104 This example uses some Scheme code to enforce enharmonic modifications
105 for notes in order to have the minimum number of accidentals.  In this
106 case, the following rules apply:
107
108 Double accidentals should be removed
109
110
111 B sharp -> C
112
113
114 E sharp -> F
115
116
117 C flat -> B
118
119
120 F flat -> E
121
122
123 In this manner, the most natural enharmonic notes are chosen.
124
125 "
126   doctitle = "Transposing pitches with minimum accidentals (\"Smart\" transpose)"
127 } % begin verbatim
128
129 #(define (naturalize-pitch p)
130    (let ((o (ly:pitch-octave p))
131          (a (* 4 (ly:pitch-alteration p)))
132          ;; alteration, a, in quarter tone steps,
133          ;; for historical reasons
134          (n (ly:pitch-notename p)))
135      (cond
136       ((and (> a 1) (or (eq? n 6) (eq? n 2)))
137        (set! a (- a 2))
138        (set! n (+ n 1)))
139       ((and (< a -1) (or (eq? n 0) (eq? n 3)))
140        (set! a (+ a 2))
141        (set! n (- n 1))))
142      (cond
143       ((> a 2) (set! a (- a 4)) (set! n (+ n 1)))
144       ((< a -2) (set! a (+ a 4)) (set! n (- n 1))))
145      (if (< n 0) (begin (set! o (- o 1)) (set! n (+ n 7))))
146      (if (> n 6) (begin (set! o (+ o 1)) (set! n (- n 7))))
147      (ly:make-pitch o n (/ a 4))))
148
149 #(define (naturalize music)
150    (let ((es (ly:music-property music 'elements))
151          (e (ly:music-property music 'element))
152          (p (ly:music-property music 'pitch)))
153      (if (pair? es)
154          (ly:music-set-property!
155           music 'elements
156           (map (lambda (x) (naturalize x)) es)))
157      (if (ly:music? e)
158          (ly:music-set-property!
159           music 'element
160           (naturalize e)))
161      (if (ly:pitch? p)
162          (begin
163            (set! p (naturalize-pitch p))
164            (ly:music-set-property! music 'pitch p)))
165      music))
166
167 naturalizeMusic =
168 #(define-music-function (parser location m)
169    (ly:music?)
170    (naturalize m))
171
172 music = \relative c' { c4 d e g }
173
174 \score {
175   \new Staff {
176     \transpose c ais { \music }
177     \naturalizeMusic \transpose c ais { \music }
178     \transpose c deses { \music }
179     \naturalizeMusic \transpose c deses { \music }
180   }
181   \layout { }
182 }
183