]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/world.itely
Reinstate commented-out parts.
[lilypond.git] / Documentation / user / world.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.11.51"
10
11 @node World music
12 @section World music
13
14 FIXME
15
16 @menu
17 * Arabic music::                
18 @end menu
19
20 @node Arabic music
21 @subsection Arabic music
22
23 FIXME
24
25 @menu
26 * Arabic music notation overview::  
27 * Arabic note names ::          
28 * Arabic key signatures::       
29 * Arabic time signatures:: 
30 * References for Arabic music::  
31 @end menu
32
33  
34 @node Arabic music notation overview
35 @unnumberedsubsubsec Arabic music notation overview
36
37 @cindex Arabic music
38 @cindex medium intervals  
39 @cindex maqam 
40 @cindex maqams
41
42 Arabic music so far has been mainly an oral tradition.  When music
43 is transcribed, it is usually in a sketch format, on which
44 performers are expected to improvise significantly.  Increasingly,
45 Western notation, with a few variations, is adopted in order to
46 communicate and preserve Arabic music. 
47
48 Some elements of Western musical notation such as the
49 transcription of chords or independent parts, are not required to
50 typeset the more traditional Arabic pieces.  There are however
51 some different issues, such as the need to indicate medium
52 intervals that are somewhere between a semi-tone and a tone, in
53 addition to the minor and major intervals that are used in Western
54 music.  There is also the need to group and indicate a large
55 number of different maqams (modes) that are part of Arabic music.
56   
57 In general, Arabic music notation does not attempt to precisely
58 indicate microtonal elements that are present in musical practice.
59
60  
61 @node Arabic note names 
62 @unnumberedsubsubsec Arabic note names
63
64 @cindex Arabic note names 
65
66 The more traditional Arabic note names can be quite long and are
67 not suitable for the purpose of music writing, so they are not
68 defined by the inclusion of @code{"arabic.ly"}.  English note
69 names @code{a, b, c, d, e, f, g} are not very familiar in Arabic
70 music education.  Italian or Solfege note names @code{do, re, mi,
71 fa, sol, la, si} are more familiar, and are used when
72 @code{"arabic.ly"} is included.  Modifiers can also be used, as
73 discussed in @ref{Note names in other languages}. 
74
75 For example, this is how the Arabic @notation{rast} scale can be
76 notated:
77
78 @lilypond[quote,verbatim]    
79 \include "arabic.ly"
80 \relative do' { 
81   do re misb fa sol la sisb do sisb la sol fa misb re do 
82 }
83 @end lilypond
84
85
86 @seealso 
87
88 Notation Reference:     
89 @ref{Note names in other languages}.
90
91
92 @node Arabic key signatures
93 @unnumberedsubsubsec Arabic key signatures 
94
95 @cindex Arabic key signatures
96
97 In addition to the minor and major key signatures, the following
98 key signatures are defined in @code{"arabic.ly"}: bayati, rast,
99 sikah, iraq, and kurd. These key signatures define a small number
100 of maqam groups rather than the large number of maqams that are in
101 common use. 
102
103 In general, a maqam uses the key signature of its group, or a 
104 neighbouring group, and varying accidentals are marked throughout 
105 the music.
106
107 For example to indicate the key signature of a maqam muhayer piece:  
108
109   \key re \bayati
110
111 Here re is the default pitch of the muhayer maqam, and bayati is the
112 name of the base maqam in the group. 
113
114 While the key signature indicates the group, it is
115 common for the title to indicate the more  specific maqam, so in this
116 example, the name of maqam muhayer should appear in the title.    
117
118 In Arabic music, the same term such as bayati that is used to indicate 
119 a maqam group, is also a maqam which is usually the most important
120 in the group, and can also be thought of as a base maqam. 
121
122 Here is one suggested grouping that maps the more common maqams to key 
123 signatures: 
124
125 @multitable @columnfractions 0.1 0.1 0.1 0.6
126 @headitem maqam group 
127   @tab key 
128   @tab finalis 
129   @tab Other maqmas in group (finalis)  
130 @item ajam 
131   @tab major 
132   @tab sib 
133   @tab jaharka (fa)
134 @item bayati 
135   @tab bayati
136   @tab re
137   @tab hussaini, muhayer, saba, ushaq, nawa (sol) 
138 @item hijaz 
139   @tab kurd
140   @tab re 
141   @tab shahnaz, shad arban (sol), hijazkar (do)
142 @item iraq 
143   @tab iraq
144   @tab sisb
145   @tab - 
146 @item kurd 
147   @tab kurd
148   @tab re
149   @tab hijazkar kurd (do) 
150 @item nahawand 
151   @tab minor
152   @tab do 
153   @tab busalik (re), farah faza (sol)
154 @item nakriz 
155   @tab minor
156   @tab do 
157   @tab nawa athar, hisar (re)
158 @item rast 
159   @tab rast
160   @tab do
161   @tab mahur, yakah (sol)
162 @item sikah 
163   @tab sikah
164   @tab misb
165   @tab huzam 
166 @end multitable          
167
168
169 You can also set the key signature using Staff.keySignature as discussed
170 in @ref{Key signature}.  This offers more flexibility if you don't wish  
171 to be limited to the key signatures that are defined in "arabic.ly", or if 
172 you don't wish to use the above method of determining a key signature based 
173 on the maqam group. 
174
175 For example, you can set the key signature to do sharp, mi semi-flat, and 
176 sol flat as follows : 
177
178 @lilypond[quote,verbatim]
179 \include "arabic.ly" 
180 \relative re' {
181   \set Staff.keySignature = #`( (0 . ,SHARP) (2 . ,SEMI-FLAT) (4 . ,FLAT) )  
182   re misb fa solb la si dod re sisb la solb fa misb re    
183 }
184 @end lilypond
185
186 @seealso
187
188 Notation Reference:     
189 @ref{Key signature}.
190  
191 Learning Manual:
192 @rlearning{Accidentals and key signatures}.
193
194 Internals Reference:
195 @rinternals{KeySignature}.
196
197 @node Arabic time signatures
198 @unnumberedsubsubsec Arabic time signatures 
199
200 @cindex Arabic time signatures
201 @cindex Semai form 
202 @cindex taqasim 
203
204 Some Arabic and Turkish music classical forms such as Semai use 
205 unusual time signatures such as 10/8. This may lead to an 
206 automatic grouping of notes that is quite different from existing
207 typeset music. You can override this by switching off automatic 
208 beaming, and grouping the notes manually using @code{[ ]} to 
209 surround grouped notes, as described in @ref{Manual beams}. 
210
211 For improvisations or taqasim which are temporarily free, the time
212 signature can be omitted, and @code{\cadenzaOn} can be used.  
213 You might need to adjust the accidental style, since the absence 
214 of bar lines will cause the accidental to be marked only once:
215
216 @example  
217 #(set-accidental-style 'forget)
218 @end example 
219
220 @seealso 
221
222 Notation Reference:
223 @ref{Manual beams},
224 @ref{Automatic beams},
225 @ref{Unmetered music}, 
226 @ref{Automatic accidentals}. 
227
228 @node References for Arabic music
229 @unnumberedsubsubsec References for arabic music
230
231 @enumerate
232
233 @item 
234 The music of the Arabs by Habib Hassan Touma [Amadeus Press, 1996], 
235 contains a discussion of maqams and their method of groupings.
236
237 There are also various web sites that explain maqams and some 
238 provide audio examples such as :
239
240 @itemize @bullet 
241 @item 
242 @uref{http://www.maqamworld.com/}
243 @item 
244 @uref{http://www.turath.org/}
245 @end itemize  
246
247 There are some variations in the details of how maqams are grouped, 
248 despite agreement on the criteria of grouping maqams that are 
249 related through common lower tetra chords, or through modulation.  
250
251 @item 
252 There is not a complete consistency, sometimes even in the same 
253 text on how key signatures for particular maqams should be 
254 specified. It is common, however, to use a key signature per 
255 group, rather than a different key signature for each different 
256 maqam.
257   
258 Oud methods by the following authors, contain examples of 
259 mainly Turkish and Arabic compositions. 
260
261 @itemize @bullet
262 @item 
263 Charbel Rouhana
264 @item 
265 George Farah
266 @item 
267 Ibrahim Ali Darwish Al-masri
268 @end itemize
269 @end enumerate
270
271