]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/notation/pitches.itely
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / ja / notation / pitches.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2 @ignore
3     Translation of GIT committish: d5647c5fd1c38d4124d2374725b923f4901f3661
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.16.0"
10
11 @c Translators: Yoshiki Sawada
12 @c Translation status: post-GDP
13
14
15 @node ピッチ
16 @section ピッチ
17 @translationof Pitches
18
19 @lilypondfile[quote]{pitches-headword.ly}
20
21 このセクションでは音符のピッチを指定する方法について議論します。@c
22 このプロセスには 3 つのステップがあります: 入力、変更、出力です。
23
24 @menu
25 * ピッチを記述する::
26 * 複数のピッチを変更する::
27 * ピッチを表示する::
28 * 符頭::
29 @end menu
30
31
32 @node ピッチを記述する
33 @subsection ピッチを記述する
34 @translationof Writing pitches
35
36 このセクションではピッチを入力する方法について議論します。@c
37 音符をオクターブの中に置くには 2 つの方法があります:
38 絶対モードと相対モードです。@c
39 たいていの場合、相対モードの方が便利です。
40
41 @menu
42 * 絶対オクターブ入力::
43 * 相対オクターブ入力::
44 * 臨時記号::
45 * 他の言語での音符名::
46 @end menu
47
48
49 @node 絶対オクターブ入力
50 @unnumberedsubsubsec 絶対オクターブ入力
51 @translationof Absolute octave entry
52
53 @cindex pitch names (ピッチ名)
54 @cindex pitches (ピッチ)
55 @cindex absolute (絶対)
56 @cindex absolute octave specification (絶対オクターブ指定)
57 @cindex octave specification, absolute (絶対オクターブ指定)
58 @cindex absolute octave entry (絶対オクターブ入力)
59 @cindex octave entry, absolute (絶対オクターブ入力)
60
61 ピッチ名は @code{a} から @code{g} までの小文字を使って指定されます。@c
62 @code{c} から @code{b} までの音符名はミドル C の下のオクターブに譜刻されます。
63
64 @c don't use c' here.
65 @lilypond[verbatim,quote]
66 {
67   \clef bass
68   c4 d e f
69   g4 a b c
70   d4 e f g
71 }
72 @end lilypond
73
74 @cindex octave changing mark (オクターブ変更記号)
75
76 @funindex '
77 @funindex ,
78
79 他のオクターブはシングル クォート@tie{}(@code{'}) または@c
80 カンマ@tie{}(@code{,}) 文字で指定されます。@c
81 各@tie{}@code{'} はピッチを 1 オクターブ上げます。@c
82 一方、各@tie{}@code{,} はピッチを 1 オクターブ下げます。
83
84 @lilypond[verbatim,quote]
85 {
86   \clef treble
87   c'4 c'' e' g
88   d''4 d' d c
89   \clef bass
90   c,4 c,, e, g
91   d,,4 d, d c
92 }
93 @end lilypond
94
95 @seealso
96 音楽用語集:
97 @rglos{Pitch names}
98
99 コード断片集:
100 @rlsrnamed{Pitches,ピッチ}
101
102
103 @node 相対オクターブ入力
104 @unnumberedsubsubsec 相対オクターブ入力
105 @translationof Relative octave entry
106
107 @cindex relative (相対)
108 @cindex relative octave entry (相対オクターブ入力)
109 @cindex octave entry, relative (相対オクターブ入力)
110 @cindex relative octave specification (相対オクターブ指定)
111 @cindex ocatve specification, relative (相対オクターブ指定)
112
113 @funindex relative
114 @funindex \relative
115
116 オクターブが絶対モードで指定されている場合、@c
117 ピッチを間違ったオクターブに置くことは容易に起こりえます。@c
118 相対オクターブ モードはそのようなエラーを減らします。@c
119 なぜなら、相対オクターブ モードでは、たいていの場合、@c
120 オクターブを指定する必要が無いからです。@c
121 さらに、絶対モードでは 1 つのミスを見つけることが@c
122 困難であるかもしれないのに対し、@c
123 相対モードでは 1 つのミスが楽曲の残りの部分を 1 オクターブずらします。
124
125 @example
126 \relative @var{startpitch} @var{musicexpr}
127 @end example
128
129 相対モードでは、各音符は可能な限り前の音符の近くに配置されます。@c
130 このことは、@code{@var{musicexp}} の中にある各ピッチのオクターブが@c
131 以下のように算出されるということを意味します:
132
133 @itemize
134 @item
135 音符に対してオクターブ変更記号が使用されていない場合、@c
136 その音符のオクターブは前の音符との音程が
137 5 度よりも小さくなるよう算出されます。@c
138 この音程は臨時記号を考慮せずに決定されます。
139
140 @item
141 オクターブ変更記号@tie{}@code{'} や @code{,} を付け加えることによって、@c
142 オクターブ記号無しの場合のピッチから、@c
143 ピッチを 1 オクターブ上げ下げすることができます。
144
145 @item
146 複数のオクターブ変更記号を使用することができます。@c
147 例えば、@code{''}@tie{}と@tie{}@code{,,} はピッチを 2 オクターブ変えます。
148
149 @item
150 最初の音符のピッチは @code{@var{startpitch}} と相対関係で決定されます。@c
151 @var{startpitch} は絶対オクターブ モードで指定され、@c
152 @code{c} のオクターブにしておくことを推奨します。
153
154 @end itemize
155
156 ここで、実際に相対モードの例を挙げます:
157
158 @lilypond[verbatim,quote]
159 \relative c {
160   \clef bass
161   c d e f
162   g a b c
163   d e f g
164 }
165 @end lilypond
166
167 オクターブ変更記号は 4 度よりも大きな音程に対して使用されます:
168
169 @lilypond[verbatim,quote]
170 \relative c {
171   \clef bass
172   c d e f
173   g a b c
174   d e f g
175 }
176 @end lilypond
177
178 音符の連なりはオクターブ変更記号が無い場合であっても@c
179 大きな音程に広がる可能性があります:
180
181 @lilypond[verbatim,quote]
182 \relative c {
183   c f b e
184   a d g c
185 }
186 @end lilypond
187
188 @code{\relative} ブロックがネストされている場合、@c
189 最も内側の @code{\relative} ブロックが適用されます。
190
191 @lilypond[verbatim,quote]
192 \relative c' {
193   c d e f
194   \relative c'' {
195     c d e f
196   }
197 }
198 @end lilypond
199
200 @code{\relative} は @code{\chordmode} ブロックでは効果を持ちません。
201
202 @lilypond[verbatim,quote]
203 \new Staff {
204   \relative c''' {
205     \chordmode { c1 }
206   }
207   \chordmode { c1 }
208 }
209 @end lilypond
210
211 @code{\relative} を @code{\chordmode} ブロックの中で使用することは@c
212 認められません。
213
214 @code{\transpose} ブロックの中では、@code{\relative} を記述しない限り、@c
215 絶対モードになります。
216
217 @lilypond[verbatim,quote]
218 \relative c' {
219   d e
220   \transpose f g {
221     d e
222     \relative c' {
223       d e
224     }
225   }
226 }
227 @end lilypond
228
229 @cindex chords and relative octave entry (和音と相対オクターブ入力)
230 @cindex relative octave entry and chords (相対オクターブ入力と和音)
231
232 前の要素が和音である場合、@c
233 その和音の最初の音符が後に続く音符または和音の参照ポイントとして使用されます。@c
234 和音の内部では、次の音符は常に 1 つ前の音符との相対関係になります。@c
235 次の例を、@code{c} の音符に気を付けて、注意深く検証してください。
236
237 @lilypond[verbatim,quote]
238 \relative c' {
239   c
240   <c e g>
241   <c' e g'>
242   <c, e, g''>
243 }
244 @end lilypond
245
246 上で説明したように、ピッチのオクターブは音符名のみを使って算出され、@c
247 いかなる変更にも影響を受けません。@c
248 そのため、B の後の E ダブル シャープは B よりも上に配置され、@c
249 B の後の F ダブル フラットは B よりも下に配置されます。@c
250 言い換えると、4 度の 2 重増音の音程は 5 度の 2 重減音の音程よりも小さい
251 -- それぞれの音程に含まれる半音の数に関係無く -- と見なされます。
252
253 @lilypond[verbatim,quote]
254 \relative c'' {
255   c2 fis
256   c2 ges
257   b2 eisis
258   b2 feses
259 }
260 @end lilypond
261
262 これらの規則から導き出される結論の 1 つは、@c
263 @code{@w{\relative f}} ブロックの中の最初の音符は絶対ピッチ モードで記述された@c
264 音符と全く同様に解釈されるということです。
265
266 @seealso
267 音楽用語集:
268 @rglos{fifth},
269 @rglos{interval},
270 @rglos{Pitch names}
271
272 記譜法リファレンス:
273 @ref{Octave checks}
274
275 コード断片集:
276 @rlsrnamed{Pitches,ピッチ}
277
278 内部リファレンス:
279 @rinternals{RelativeOctaveMusic}
280
281
282 @cindex relative octave entry and transposition (相対オクターブ入力と移調)
283 @cindex transposition and relative octave entry (移調と相対オクターブ入力)
284
285 @funindex \transpose
286 @funindex transpose
287 @funindex \chordmode
288 @funindex chordmode
289 @funindex \relative
290 @funindex relative
291
292 @c DEPRECATED
293 @code{\relative} に対して @code{@var{startpitch}} が指定されていない場合、@c
294 @code{c'} であると見なされます。@c
295 しかしながら、これは使用を推奨されなくなったオプションであり、@c
296 将来のバージョンでは無くなるかもしれないので、@c
297 @code{@var{startpitch}} を指定しないことはお勧めできません。
298
299
300 @node 臨時記号
301 @unnumberedsubsubsec 臨時記号
302 @translationof Accidentals
303
304 @cindex accidental (臨時記号)
305 @cindex key signature (調号)
306 @cindex clef (音部記号)
307
308 @c duplicated in Key signature and Accidentals
309 @warning{LilyPond を始めたばかりのユーザは@c
310 しばしば臨時記号と調号のことで混乱します。@c
311 LilyPond では、音符名は未加工の入力です
312 -- 調号と音部記号がこの未加工の入力をどのように表示するかを決定します。@c
313 @code{c} のような変更を加えられていない音符は、調号や音部記号とは無関係に、@c
314 @q{C ナチュラル} を意味します。@c
315 更なる情報は、@rlearning{Accidentals and key signatures} を参照してください。}
316
317 @cindex note names, Dutch (オランダ語での音符名)
318 @cindex note names, default (デフォルトの音符名)
319 @cindex default note names (デフォルトの音符名)
320 @cindex sharp (シャープ)
321 @cindex flat (フラット)
322 @cindex double sharp (ダブル シャープ)
323 @cindex sharp, double (ダブル シャープ)
324 @cindex double flat (ダブル フラット)
325 @cindex flat, double (ダブル フラット)
326 @cindex natural sign (ナチュラル記号)
327 @cindex natural pitch (ナチュラル ピッチ)
328
329 @notation{シャープ}のピッチは音符名に @code{is} を付け加えることによって@c
330 作られ、@notation{フラット}のピッチは @code{es} を付け加えることによって@c
331 作られます。@c
332 予想しているかもしれませんが、@notation{ダブル シャープ}や@c
333 @notation{ダブル フラット}は @code{isis} または @code{eses} を@c
334 付け加えることによって作られます。@c
335 この構文はオランダ語の音符命名規約から派生しました。@c
336 臨時記号に他の名前を使うには、@c
337 @ref{Note names in other languages} を参照してください。
338
339 @lilypond[verbatim,quote,relative=2]
340 ais1 aes aisis aeses
341 @end lilypond
342
343 ナチュラルは臨時記号や調号の効果をキャンセルします。@c
344 しかしながら、ナチュラルは接尾辞として音符名構文にエンコードされてはいません。@c
345 そのため、ナチュラルのピッチは単に音符名で入力されます:
346
347 @lilypond[verbatim,quote,relative=2]
348 a4 aes a2
349 @end lilypond
350
351 @cindex quarter tones (4 分音)
352 @cindex semi-flats (半フラット)
353 @cindex semi-sharps (半シャープ)
354
355 4 分音が付け加えられるかもしれません。@c
356 以下の一連の C は左から順にピッチが増えていっています:
357
358 @lilypond[verbatim,quote,relative=2]
359 ceseh1 ces ceh c cih cis cisih
360 @end lilypond
361
362
363 @cindex accidental, reminder (親切の臨時記号)
364 @cindex accidental, cautionary (忠告の臨時記号)
365 @cindex accidental, parenthesized (括弧に囲まれた臨時記号)
366 @cindex reminder accidental (親切の臨時記号)
367 @cindex cautionary accidental (忠告の臨時記号)
368 @cindex parenthesized accidental (括弧に囲まれた臨時記号)
369
370 @funindex ?
371 @funindex !
372
373 通常、臨時記号は自動的に譜刻されますが、@c
374 手動で譜刻する場合もあるかもしれません。@c
375 親切の臨時記号はピッチの後にエクスクラメーション記号@tie{}@code{!} を@c
376 付け加えることによって譜刻することができます。@c
377 忠告の臨時記号 (つまり、括弧で囲まれた臨時記号) は@c
378 ピッチの後にクエスチョン記号@tie{}@code{?} を付け加えることによって@c
379 譜刻することができます。@c
380 これら追加の臨時記号を使ってナチュラル記号を作り出すこともできます。
381
382 @lilypond[verbatim,quote,relative=2]
383 cis cis cis! cis? c c c! c?
384 @end lilypond
385
386 @cindex accidental on tied note (タイで結ばれた音符への臨時記号)
387 @cindex tied note, accidental (タイで結ばれた音符への臨時記号)
388
389 タイで結ばれた音符に付ける臨時記号は@c
390 新しいシステム (訳者: 譜 1 行分のこと) の開始点でのみ譜刻されます:
391
392 @lilypond[verbatim,quote,relative=2]
393 cis1 ~ cis ~
394 \break
395 cis
396 @end lilypond
397
398
399 @snippets
400
401 @lilypondfile[verbatim,quote,texidoc,doctitle,ragged-right]
402 {hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly}
403
404 @lilypondfile[verbatim,quote,texidoc,doctitle]
405 {preventing-extra-naturals-from-being-automatically-added.ly}
406
407 @seealso
408 音楽用語集:
409 @rglos{sharp},
410 @rglos{flat},
411 @rglos{double sharp},
412 @rglos{double flat},
413 @rglos{Pitch names},
414 @rglos{quarter tone}
415
416 学習マニュアル:
417 @rlearning{Accidentals and key signatures}
418
419 記譜法リファレンス:
420 @ref{Automatic accidentals},
421 @ref{Annotational accidentals (musica ficta)},
422 @ref{Note names in other languages}
423
424 コード断片集:
425 @rlsrnamed{Pitches,ピッチ}.
426
427 内部リファレンス:
428 @rinternals{Accidental_engraver},
429 @rinternals{Accidental},
430 @rinternals{AccidentalCautionary},
431 @rinternals{accidental-interface}
432
433 @cindex accidental, quarter-tone (4 分音臨時記号)
434 @cindex quarter-tone accidental (4 分音臨時記号)
435
436 @knownissues
437 4 分音臨時記号の表記の仕方で広く認められた標準はないため、@c
438 LilyPond の記号はいかなる標準にも準拠しません。
439
440
441 @node 他の言語での音符名
442 @unnumberedsubsubsec 他の言語での音符名
443 @translationof Note names in other languages
444
445 @cindex note names, other languages (他の言語での音符名)
446 @cindex pitch names, other languages (他の言語でのピッチ名)
447 @cindex language, note names in other (他の言語での音符名)
448 @cindex language, pitch names in other (他の言語でのピッチ名)
449
450 他のさまざまな言語での音符名と臨時記号名のセットが定義されています。@c
451 通常、音符名の言語の選択はファイルの先頭で行います。
452 以下の例はイタリア語の音符名を使用します:
453
454 @lilypond[quote,verbatim]
455 \language "italiano"
456
457 \relative do' {
458   do re mi sib
459 }
460 @end lilypond
461
462 利用可能な言語ファイルとそれらが定義している音符名を挙げます:
463
464 @quotation
465 @multitable {@code{nederlands}} {do re mi fa sol la sib si}
466 @headitem 言語
467   @tab 音符名
468 @item @code{nederlands}
469   @tab c d e f g a bes b
470 @item @code{catalan}
471   @tab do re mi fa sol la sib si
472 @item @code{deutsch}
473   @tab c d e f g a b h
474 @item @code{english}
475   @tab c d e f g a bf b
476 @item @code{espanol}
477   @tab do re mi fa sol la sib si
478 @item @code{italiano}
479   @tab do re mi fa sol la sib si
480 @item @code{norsk}
481   @tab c d e f g a b h
482 @item @code{portugues}
483   @tab do re mi fa sol la sib si
484 @item @code{suomi}
485   @tab c d e f g a b h
486 @item @code{svenska}
487   @tab c d e f g a b h
488 @item @code{vlaams}
489   @tab do re mi fa sol la sib si
490 @end multitable
491 @end quotation
492
493 音符名に加えて、臨時記号の接尾辞も言語によって異なる場合があります:
494
495 @quotation
496 @multitable {@code{nederlands}} {-s/-sharp} {-ess/-es} {-ss/-x/-sharpsharp} {-essess/-eses}
497 @headitem 言語
498   @tab シャープ @tab フラット @tab ダブル シャープ @tab ダブル フラット
499 @item @code{nederlands}
500   @tab -is @tab -es @tab -isis @tab -eses
501 @item @code{catalan}
502   @tab -d/-s @tab -b @tab -dd/-ss @tab -bb
503 @item @code{deutsch}
504   @tab -is @tab -es @tab -isis @tab -eses
505 @item @code{english}
506   @tab -s/-sharp @tab -f/-flat @tab -ss/-x/-sharpsharp
507     @tab -ff/-flatflat
508 @item @code{espanol}
509   @tab -s @tab -b @tab -ss/-x @tab -bb
510 @item @code{italiano}
511   @tab -d @tab -b @tab -dd @tab -bb
512 @item @code{norsk}
513   @tab -iss/-is @tab -ess/-es @tab -ississ/-isis
514     @tab -essess/-eses
515 @item @code{portugues}
516   @tab -s @tab -b @tab -ss @tab -bb
517 @item @code{suomi}
518   @tab -is @tab -es @tab -isis @tab -eses
519 @item @code{svenska}
520   @tab -iss @tab -ess @tab -ississ @tab -essess
521 @item @code{vlaams}
522   @tab -k @tab -b @tab -kk @tab -bb
523 @end multitable
524 @end quotation
525
526 オランダ語では、@code{aes} は縮めて @code{as} となりますが、@c
527 LilyPond ではどちらの形式も認められます。@c
528 同様に、@code{es} と @code{ees} の両方が認められます。@c
529 これはさらに、@code{aeses}@tie{}/@tie{}@code{ases} と
530 @code{eeses}@tie{}/@tie{}@code{eses} にも適用されます。@c
531 他の言語ファイルでは短縮名だけが定義されている場合があります。
532
533 @lilypond[verbatim,quote,relative=2]
534 a2 as e es a ases e eses
535 @end lilypond
536
537
538 @cindex microtones (微分音)
539 @cindex semi-sharp (半シャープ)
540 @cindex semi-flat (半フラット)
541 @cindex sesqui-sharp (1.5 シャープ)
542 @cindex sesqui-flat (1.5 フラット)
543
544 音楽の中には @q{通常の} シャープやフラットの音の変化をさらに細かく分けた@c
545 微分音を使用するものがあります。@c
546 さまざまな言語 (ファイル) での 4 分音
547 (訳者: シャープやフラットの半分の音の変化。4 分音符ではありません)
548 の音符名を以下の表で挙げます。@c
549 接頭辞 @notation{半-} と @notation{1.5-} はそれぞれ
550 @q{半分} と @q{1 つ半} を意味します。@c
551 表に無い言語では、まだ微分音の名前は定義されていません。
552
553 @quotation
554 @multitable {@code{nederlands}} {@b{半-シャープ}} {@b{半-フラット}} {@b{1.5-シャープ}} {@b{1.5-フラット}}
555 @headitem 元号
556   @tab 半-シャープ @tab 半-フラット @tab 1.5-シャープ @tab 1.5-フラット
557
558 @item @code{nederlands}
559   @tab -ih @tab -eh @tab -isih @tab -eseh
560 @item @code{deutsch}
561   @tab -ih @tab -eh @tab -isih @tab -eseh
562 @item @code{english}
563   @tab -qs @tab -qf @tab -tqs @tab -tqf
564 @item @code{espanol}
565   @tab -cs @tab -cb @tab -tcs @tab -tcb
566 @item @code{italiano}
567   @tab -sd @tab -sb @tab -dsd @tab -bsb
568 @item @code{portugues}
569   @tab -sqt @tab -bqt @tab -stqt @tab -btqt
570 @end multitable
571 @end quotation
572
573 ここに示されている大半の言語は西洋クラシック音楽
574 -- @notation{Common Practice Period}: 西暦1600年から1900年頃の@c
575 バロック音楽、クラシック音楽、ロマン派音楽とも言えます --
576 に関係があります。@c
577 しかしながら、他のピッチやチューニング方法もサポートされています:
578 @ref{Common notation for non-Western music} を参照してください。
579
580 @seealso
581 音楽用語集:
582 @rglos{Pitch names},
583 @rglos{Common Practice Period}.
584
585 記譜法リファレンス:
586 @ref{Common notation for non-Western music}
587
588 あらかじめイストールされているファイル:
589 @file{scm/define-note-names.scm}
590
591 コード断片集:
592 @rlsrnamed{Pitches,ピッチ}
593
594
595 @node 複数のピッチを変更する
596 @subsection 複数のピッチを変更する
597 @translationof Changing multiple pitches
598
599 このセクションではピッチを変更する方法について議論します。
600
601 @menu
602 * オクターブ チェック::
603 * 移調::
604 * 反転::
605 * 逆行::
606 * 様式的な変形::
607 @end menu
608
609
610 @node オクターブ チェック
611 @unnumberedsubsubsec オクターブ チェック
612 @translationof Octave checks
613
614 @cindex octave correction (オクターブ修正)
615 @cindex octave check (オクターブ チェック)
616 @cindex control pitch (ピッチの制御)
617
618 @funindex =
619 @funindex \octaveCheck
620 @funindex octaveCheck
621 @funindex controlpitch
622
623 相対モードでは、オクターブ変更記号を付け忘れることが容易に起こり得ます。@c
624 オクターブ チェックは、予期しないオクターブの音符を見つけた場合に@c
625 警告を表示してオクターブを修正することによって、@c
626 そのようなエラーを見つけ出すことをより容易にします。
627
628 音符のオクターブをチェックするには、@c
629 @code{=}@tie{}の後に絶対オクターブを指定します。@c
630 以下の例は、2 番目の音符の絶対オクターブがオクターブ チェックによって@c
631 示される @code{d'} ではなく @code{d''} であるため、@c
632 警告を発し (そしてピッチを変更し) ます。
633
634 @lilypond[verbatim,quote]
635 \relative c'' {
636   c2 d='4 d
637   e2 f
638 }
639 @end lilypond
640
641 音符のオクターブは
642 @code{\octaveCheck@tie{}@var{controlpitch}} コマンドでも@c
643 チェックすることができます。@c
644 @code{@var{controlpitch}} は絶対モードで指定されます。@c
645 これは前の音符と @code{@var{controlpitch}} との間の音程が
646 4 度以内であるかどうかをチェックします
647 (つまり、通常の相対モードでの算出方法と同じです)。@c
648 このチェックが失敗した場合、警告が表示されますが、@c
649 このチェックの前にある音符は変更されません。@c
650 その後に続く音符は @code{@var{controlpitch}} から算出されます。
651
652 @lilypond[verbatim,quote]
653 \relative c'' {
654   c2 d
655   \octaveCheck c'
656   e2 f
657 }
658 @end lilypond
659
660 以下の 2 小節を見てください。@c
661 1 番目と 3 番目の @code{\octaveCheck} は失敗していますが、@c
662 2 番目のチェックは失敗していません。
663
664 @lilypond[verbatim,quote]
665 \relative c'' {
666   c4 f g f
667
668   c4
669   \octaveCheck c'
670   f
671   \octaveCheck c'
672   g
673   \octaveCheck c'
674   f
675 }
676 @end lilypond
677
678 @seealso
679 コード断片集:
680 @rlsrnamed{Pitches,ピッチ}
681
682 内部リファレンス:
683 @rinternals{RelativeOctaveCheck}.
684
685
686 @node 移調
687 @unnumberedsubsubsec 移調
688 @translationof Transpose
689
690 @cindex transpose (移調)
691 @cindex transposing (移調)
692 @cindex transposition (移調)
693 @cindex transposition of pitches (ピッチの移調)
694 @cindex transposition of notes (音符の移調)
695 @cindex pitches, transposition of (ピッチの移調)
696 @cindex notes, transposition of (音符の移調)
697
698 @funindex \transpose
699 @funindex transpose
700
701 音楽表記は @code{\transpose} で移調させることができます。@c
702 構文は以下の通りです:
703
704 @example
705 \transpose @var{frompitch} @var{topitch} @var{musicexpr}
706 @end example
707
708 @noindent
709 これは @code{@var{musicexpr}} が @code{@var{frompitch}} から
710 @code{@var{topitch}} に移調されるということを意味します:
711 @code{@var{frompitch}} のピッチの音符はすべて @code{@var{topitch}}
712 に変更され、@c
713 他の音符もすべて同じ音程で移調されます。@c
714 @code{@var{frompitch}} と @code{@var{topitch}} のピッチはどちらも@c
715 絶対モードで指定されます。
716
717 @warning{@code{@bs{}transpose} ブロックの中にある音符は、@c
718 そのブロックの中に @code{@bs{}relative} が無い限り、絶対モードになります。}
719
720 D-メジャーの調で書かれた楽曲を思い浮かべてください。@c
721 この楽曲を E-メジャーに移調することができます。@c
722 調号も自動的に移調されることに注意してください。
723
724 @lilypond[verbatim,quote]
725 \transpose d e {
726   \relative c' {
727     \key d \major
728     d4 fis a d
729   }
730 }
731 @end lilypond
732
733 @cindex transposing instruments (移調楽器)
734 @cindex instruments, transposing (移調楽器)
735
736 C (通常の @notation{コンサート ピッチ}) で書かれたパートを
737 A のクラリネットで演奏する
738 (そのため、A は C として表記され、演奏は表記されたものよりも 3 度低くなります)
739 場合、そのパート譜は以下のように作り出されます:
740
741 @lilypond[verbatim,quote]
742 \transpose a c' {
743   \relative c' {
744     \key c \major
745     c4 d e g
746   }
747 }
748 @end lilypond
749
750 @noindent
751 @w{@code{\key c \major}} を明示的に指定しているということに@c
752 注意してください。@c
753 調号を指定しなかった場合、音符は移調されますが、調号は譜刻されません。
754
755 @code{\transpose} は同音異名のピッチを区別します:
756 @w{@code{\transpose c cis}} と @w{@code{\transpose c des}} は@c
757 どちらも半音上に移調します。@c
758 1 番目の移調はシャープを譜刻し、音符の五線譜上での位置は変わりません。@c
759 2 番目の移調はフラットを譜刻し、音符の五線譜上での位置は上に上がります。
760
761 @lilypond[verbatim,quote]
762 music = \relative c' { c d e f }
763 \new Staff {
764   \transpose c cis { \music }
765   \transpose c des { \music }
766 }
767 @end lilypond
768
769 @code{\transpose} は上記とは異なる方法で用いることもでき、@c
770 それによって移調楽器のために書かれた音符を入力することができます。@c
771 前の例では C (またはコンサート ピッチ) でピッチを入力して、@c
772 それらを移調楽器のために譜刻する方法を示しましたが、@c
773 それとは正反対のことも可能です
774 -- 例えば、移調楽器のパート譜から指揮譜を譜刻することです。@c
775 例えば、E で始まる B-フラットのトランペットの音楽
776 (コンサート ピッチでは D で始まる音楽) を入力している場合に、@c
777 指揮譜を作り出すには以下のように記述します:
778
779 @example
780 musicInBflat = @{ e4 @dots{} @}
781 \transpose c bes, \musicInBflat
782 @end example
783
784 @noindent
785 この音楽を F で譜刻する (例えば、フレンチ ホルンの楽譜にアレンジし直すために)
786 には、既存の音楽をもう 1 つの @code{\transpose} で包み込みます:
787
788 @example
789 musicInBflat = @{ e4 @dots{} @}
790 \transpose f c' @{ \transpose c bes, \musicInBflat @}
791 @end example
792
793 @noindent
794 移調楽器についての更なる情報は、@c
795 @ref{Instrument transpositions} を参照してください。
796
797
798 @snippets
799
800 @lilypondfile[verbatim,quote,texidoc,doctitle]
801 {transposing-pitches-with-minimum-accidentals-smart-transpose.ly}
802
803 @seealso
804 記譜法リファレンス:
805 @ref{Instrument transpositions},
806 @ref{Inversion},
807 @ref{Modal transformations},
808 @ref{Relative octave entry},
809 @ref{Retrograde}
810
811 コード断片集:
812 @rlsrnamed{Pitches,ピッチ}
813
814 内部リファレンス:
815 @rinternals{TransposedMusic}
816
817 @funindex \transpose
818 @funindex transpose
819 @funindex \chordmode
820 @funindex chordmode
821 @funindex \relative
822 @funindex relative
823
824 @knownissues
825 相対変換コマンドはその引数の中にある @code{\transpose}, @code{\chordmode},
826 あるいは @code{\relative} セクションには影響を及ぼしません。@c
827 移調された音楽の中で相対モードを使用するには、@c
828 @code{\transpose} の中に @code{\relative} を置く必要があります。
829
830 @code{\transpose} を使用している場合、3 重の臨時記号は表示されません。@c
831 代わりに @q{異名等価の} ピッチが表示されます
832 (例えば e の 3 重フラットの代わりに d フラットが表示されます)。
833
834
835 @node 反転
836 @unnumberedsubsubsec 反転
837 @translationof Inversion
838
839 @cindex inversion (反転)
840 @cindex operation, inversion (反転操作)
841 @funindex \inversion
842
843 単一の操作で音楽表記を反転して、移調することができます:
844
845 @example
846 \inversion @var{around-pitch} @var{to-pitch} @var{musicexpr}
847 @end example
848
849 The @code{@var{musicexpr}} の音程は @code{@var{around-pitch}} を中心に@c
850 反転され、さらに @code{@var{around-pitch}} が @code{@var{to-pitch}} に@c
851 マッピングされるように移調されます。
852
853 @lilypond[verbatim,quote]
854 music = \relative c' { c d e f }
855 \new Staff {
856   \music
857   \inversion d' d' \music
858   \inversion d' ees' \music
859 }
860 @end lilypond
861
862 @warning{反転されるモチーフは絶対オクターブ形式で記述するか、@c
863 最初に絶対オクターブ形式に変換されるよう @code{\relative} ブロックで囲む@c
864 必要があります。}
865
866 @seealso
867 記譜法リファレンス:
868 @ref{Modal transformations},
869 @ref{Retrograde},
870 @ref{Transpose}
871
872
873 @node 逆行
874 @unnumberedsubsubsec 逆行
875 @translationof Retrograde
876
877 @cindex retrograde transformation (逆行変換)
878 @cindex transformation, retrograde (逆行変換)
879 @cindex operation, retrograde (逆行操作)
880 @funindex \retrograde
881 @funindex retrograde
882
883 音楽表記を後ろから前に演奏する逆行を作り出すことができます:
884
885 @lilypond[verbatim,quote]
886 music = \relative c' { c8. ees16( fis8. a16 b8.) gis16 f8. d16 }
887
888 \new Staff {
889   \music
890   \retrograde \music
891 }
892 @end lilypond
893
894 @knownissues
895 @code{\retrograde} の中にある手動のタイは壊れて警告を発します。@c
896 @ref{Automatic note splitting} を有効にすることによって@c
897 自動的に生成させられるタイもあります。
898
899 @seealso
900 記譜法リファレンス:
901 @ref{Inversion},
902 @ref{Modal transformations},
903 @ref{Transpose}
904
905
906 @node 様式的な変形
907 @unnumberedsubsubsec 様式的な変形
908 @translationof Modal transformations
909
910 @cindex modal transformations (様式的な変形)
911 @cindex transformations, modal (様式的な変形)
912 @cindex operations, modal (様式的な操作)
913
914 音階に基づく作曲では、モチーフはさまざまなやり方で頻繁に移調されます。@c
915 これは、モチーフの開始の音程を変えるために @notation{移調} する場合や、@c
916 旋回点で @notation{反転} する場合があります。
917 @notation{逆行} するために後戻りする場合もあります@c
918 -- @ref{Retrograde} を参照してください。
919
920 @warning{与えられた音階の中に無い音符は、移調されません。}
921
922 @subsubheading 様式的な移調
923
924 @cindex modal transposition (様式的な移調)
925 @cindex transposition, modal (様式的な移調)
926 @cindex operation, transposition (移調操作)
927 @funindex \modalTranspose
928 @funindex modalTranspose
929
930 以下により、与えられた音階でモチーフを移調させることができます:
931
932 @example
933 \modalTranspose @var{from-pitch} @var{to-pitch} @var{scale} @var{motif}
934 @end example
935
936 @var{motif} の音符は @var{scale} 内を @var{to-pitch} と @var{from-pitch}
937 間の音程の度数の分だけシフトされます:
938
939 @lilypond[verbatim,quote]
940 diatonicScale = \relative c' { c d e f g a b }
941 motif = \relative c' { c8 d e f g a b c }
942
943 \new Staff {
944   \motif
945   \modalTranspose c f \diatonicScale \motif
946   \modalTranspose c b, \diatonicScale \motif
947 }
948 @end lilypond
949
950 上昇する音階の長さは任意であり、指定する音程も任意です:
951
952 @lilypond[verbatim,quote]
953 pentatonicScale = \relative c' { ges aes bes des ees }
954 motif = \relative c' { ees8 des ges,4 <ges' bes,> <ges bes,> }
955
956 \new Staff {
957   \motif
958   \modalTranspose ges ees' \pentatonicScale \motif
959 }
960 @end lilypond
961
962 半音階の音階を持つ @code{\modalTranspose} を使った時の効果は
963 @code{\transpose} と同じですが、使われる音符の名前を特定することが
964 できます:
965
966 @lilypond[verbatim,quote]
967 chromaticScale = \relative c' { c cis d dis e f fis g gis a ais b }
968 motif = \relative c' { c8 d e f g a b c }
969
970 \new Staff {
971   \motif
972   \transpose c f \motif
973   \modalTranspose c f \chromaticScale \motif
974 }
975 @end lilypond
976
977 @subsubheading 様式的な反転
978
979 @cindex modal inversion (様式的な反転)
980 @cindex inversion, modal (様式的な反転)
981 @cindex operation, modal inversion (様式的な反転操作)
982 @funindex \modalInversion
983 @funindex modalInversion
984
985 モチーフを与えられた音階に従って与えられた旋回点 (音符) で反転させて、
986 移調させることを 1 つの操作でできます:
987
988 @example
989 \modalInversion @var{around-pitch} @var{to-pitch} @var{scale} @var{motif}
990 @end example
991
992 @var{motif} の音符は @var{scale} 内を @var{to-pitch} と @var{from-pitch}
993 間の音程の度数の分だけシフトされます:
994
995 @var{motif} の音符は @var{scale} 内を @var{around-pitch} から元の音符までと@c
996 同じ度数の分だけ逆向きに進んだ位置に配置され、それからその結果は
997 @var{scale} 内を @var{to-pitch} と @var{around-pitch} 間の音程の度数分だけ@c
998 シフトされます。
999
1000 そのため、単純に音階をある音符で反転させる場合は、@var{around-pitch} と
1001 @var{to-pitch} で同じ値を使用します:
1002
1003 @lilypond[verbatim,quote]
1004 octatonicScale = \relative c' { ees f fis gis a b c d }
1005 motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
1006
1007 \new Staff {
1008   \motif
1009   \modalInversion fis' fis' \octatonicScale \motif
1010 }
1011 @end lilypond
1012
1013 音階の中にある 2 つの音符の中間にある旋回点で反転させるには、@c
1014 2 つの音符の 1 つを旋回点として反転させて、音階の 1 度数分だけ移調させます。@c
1015 指定された 2 つの音符が旋回点を囲んでいると解釈することができます:
1016
1017 @lilypond[verbatim,quote]
1018 scale = \relative c' { c g' }
1019 motive = \relative c' { c c g' c, }
1020
1021 \new Staff {
1022   \motive
1023   \modalInversion c' g' \scale \motive
1024 }
1025 @end lilypond
1026
1027 反転と逆行の操作を組み合わせると逆行-反転になります:
1028
1029 @lilypond[verbatim,quote]
1030 octatonicScale = \relative c' { ees f fis gis a b c d }
1031 motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
1032
1033 \new Staff {
1034   \motif
1035   \retrograde \modalInversion c' c' \octatonicScale \motif
1036 }
1037 @end lilypond
1038
1039 @seealso
1040 記譜法リファレンス:
1041 @ref{Inversion},
1042 @ref{Retrograde},
1043 @ref{Transpose}
1044
1045
1046 @node ピッチを表示する
1047 @subsection ピッチを表示する
1048 @translationof Displaying pitches
1049
1050 このセクションではピッチの出力を変更する方法について議論します。
1051
1052 @menu
1053 * 音部記号::
1054 * 調号::
1055 * オッターバ囲み::
1056 * 楽器の移調::
1057 * 自動臨時記号::
1058 * 音域::
1059 @end menu
1060
1061
1062 @node 音部記号
1063 @unnumberedsubsubsec 音部記号
1064 @translationof Clef
1065
1066 @cindex G clef (G 音部記号)
1067 @cindex C clef (C 音部記号)
1068 @cindex F clef (F 音部記号)
1069 @cindex treble clef (ト音記号、高音部記号)
1070 @cindex violin clef (バイオリン音部記号)
1071 @cindex alto clef (アルト音部記号)
1072 @cindex tenor clef (テノール音部記号)
1073 @cindex bass clef (ヘ音記号、バス音部記号)
1074 @cindex french clef (フレンチ (バイオリン) 音部記号)
1075 @cindex soprano clef (ソプラノ音部記号)
1076 @cindex mezzosoprano clef (メゾソプラノ音部記号)
1077 @cindex baritone clef (バリトン音部記号)
1078 @cindex varbaritone clef (変形バリトン音部記号)
1079 @cindex subbass clef (低バス音部記号)
1080 @cindex clef (音部記号)
1081 @cindex ancient clef (古代音部記号)
1082 @cindex clef, ancient (古代音部記号)
1083 @cindex clef, G (G 音部記号)
1084 @cindex clef, C (C 音部記号)
1085 @cindex clef, F (F 音部記号)
1086 @cindex clef, treble (高音部記号)
1087 @cindex clef, violin (バイオリン音部記号)
1088 @cindex clef, alto (アルト音部記号)
1089 @cindex clef, tenor (テノール音部記号)
1090 @cindex clef, bass (ヘ音記号、バス音部記号)
1091 @cindex clef, french (フレンチ (バイオリン) 音部記号)
1092 @cindex clef, soprano (ソプラノ音部記号)
1093 @cindex clef, mezzosoprano (メゾソプラノ音部記号)
1094 @cindex clef, baritone (バリトン音部記号)
1095 @cindex clef, varbaritone (変形バリトン音部記号)
1096 @cindex clef, subbass (低バス音部記号)
1097
1098 @funindex \clef
1099 @funindex clef
1100
1101 音部記号を変えることができます。@c
1102 以下のそれぞれの例の中にある音符はすべてミドル C です。@c
1103 例の中にある音部名をダブル クォートで囲むことができます (必須ではありません)。
1104
1105 @lilypond[verbatim,quote,relative=1]
1106 \clef treble
1107 c2 c
1108 \clef alto
1109 c2 c
1110 \clef tenor
1111 c2 c
1112 \clef bass
1113 c2 c
1114 @end lilypond
1115
1116 他の音部記号もあります:
1117
1118 @c KEEP LY
1119 @lilypond[verbatim,quote,relative=1]
1120 \clef french
1121 c2 c
1122 \clef soprano
1123 c2 c
1124 \clef mezzosoprano
1125 c2 c
1126 \clef baritone
1127 c2 c
1128
1129 \break
1130
1131 \clef varbaritone
1132 c2 c
1133 \clef subbass
1134 c2 c
1135 \clef percussion
1136 c2 c
1137
1138 \break
1139
1140 \clef G   % treble と同義です
1141 c2 c
1142 \clef F   % bass と同義です
1143 c2 c
1144 \clef C   % alto と同義です
1145 c2 c
1146 @end lilypond
1147
1148 @cindex transposing clefs (音部を移調する)
1149 @cindex clef, transposing (音部を移調する)
1150 @cindex オクターブ移調 (octave transposition)
1151 @c 未訳
1152 @cindex choral tenor clef
1153 @cindex tenor clef, choral
1154
1155 音部名に @code{_8} または @code{^8} を付け加えることによって、@c
1156 音部はそれぞれ 1 オクターブ下/上に移調され、@c
1157 @code{_15} または @code{^15} によって 2 オクターブ移調されます。@c
1158 音部名にアルファベット以外の文字が含まれる場合、@c
1159 音部名をダブル クォートで囲む必要があります。
1160
1161 @lilypond[verbatim,quote,relative=1]
1162 \clef treble
1163 c2 c
1164 \clef "treble_8"
1165 c2 c
1166 \clef "bass^15"
1167 c2 c
1168 \clef "alto_2"
1169 c2 c
1170 \clef "G_8"
1171 c2 c
1172 \clef "F^5"
1173 c2 c
1174 @end lilypond
1175
1176 特殊な音部記号については @ref{Mensural clefs},
1177 @ref{Gregorian clefs}, @ref{Default tablatures}, それに
1178 @ref{Custom tablatures} で説明します。@c
1179 楽譜の中で合図音符を使用するときに音部記号を変更する場合は、@c
1180 @ref{Formatting cue notes} の @code{\cueClef} 関数と
1181 @code{\cueDuringWithClef} 関数を参照してください。
1182
1183 @snippets
1184
1185 @lilypondfile[verbatim,quote,texidoc,doctitle]
1186 {tweaking-clef-properties.ly}
1187
1188 @seealso
1189 記譜法リファレンス:
1190 @ref{Mensural clefs},
1191 @ref{Gregorian clefs},
1192 @ref{Default tablatures},
1193 @ref{Custom tablatures},
1194 @ref{Formatting cue notes}
1195
1196 コード断片集:
1197 @rlsrnamed{Pitches,ピッチ}
1198
1199 内部リファレンス:
1200 @rinternals{Clef_engraver},
1201 @rinternals{Clef},
1202 @rinternals{OctavateEight},
1203 @rinternals{clef-interface}
1204
1205
1206 @node 調号
1207 @unnumberedsubsubsec 調号
1208 @translationof Key signature
1209
1210 @cindex key signature (調号)
1211
1212 @funindex \key
1213 @funindex key
1214
1215 @c duplicated in Key signature and Accidentals
1216 @warning{LilyPond を始めたばかりのユーザは@c
1217 しばしば臨時記号と調号のことで混乱します。@c
1218 LilyPond では、音符名は未加工の入力です。@c
1219 調号と音部記号がこの未加工の入力をどのように表示するかを決定します。@c
1220 @code{c} のような変更を加えられていない音符は、調号や音部記号とは無関係に、@c
1221 @q{C ナチュラル} を意味します。@c
1222 更なる情報は、@rlearning{Accidentals and key signatures} を参照してください。}
1223
1224 調号は楽曲を演奏すべき調性を示します。@c
1225 調号は譜の先頭で変更記号 (フラットやシャープ) のセットによって示されます。@c
1226 調号は変更されることがあります:
1227
1228 @example
1229 \key @var{pitch} @var{mode}
1230 @end example
1231
1232 @funindex \major
1233 @funindex major
1234 @funindex \minor
1235 @funindex minor
1236 @funindex \ionian
1237 @funindex ionian
1238 @funindex \locrian
1239 @funindex locrian
1240 @funindex \aeolian
1241 @funindex aeolian
1242 @funindex \mixolydian
1243 @funindex mixolydian
1244 @funindex \lydian
1245 @funindex lydian
1246 @funindex \phrygian
1247 @funindex phrygian
1248 @funindex \dorian
1249 @funindex dorian
1250
1251 @cindex church modes (チャーチ モード)
1252 @cindex modes (モード)
1253 @cindex major (メジャー)
1254 @cindex minor (マイナー)
1255 @cindex ionian (アイオニアン)
1256 @cindex locrian (ロクリアン)
1257 @cindex aeolian (エオリアン)
1258 @cindex mixolydian (ミクソリディアン)
1259 @cindex lydian (リディアン)
1260 @cindex phrygian (フリジアン)
1261 @cindex dorian (ドリアン)
1262
1263 @noindent
1264
1265 調号を @code{@var{pitch}}-メジャーや @code{@var{pitch}}-マイナーにするには、@c
1266 @code{@var{mode}} をそれぞれ @code{\major} または @code{\minor} にします。@c
1267 さらに標準のモード名
1268  -- @notation{チャーチ モード} とも呼ばれます --
1269 を使うこともできます:
1270 @code{\ionian}, @code{\dorian}, @code{\phrygian}, @code{\lydian},
1271 @code{\mixolydian}, @code{\aeolian} それに @code{\locrian} です。
1272
1273 @lilypond[verbatim,quote,relative=2]
1274 \key g \major
1275 fis1
1276 f
1277 fis
1278 @end lilypond
1279
1280
1281 @snippets
1282
1283 @lilypondfile[verbatim,quote,texidoc,doctitle]
1284 {preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly}
1285
1286 @lilypondfile[verbatim,quote,texidoc,doctitle]
1287 {non-traditional-key-signatures.ly}
1288
1289 @seealso
1290 音楽用語集:
1291 @rglos{church mode},
1292 @rglos{scordatura}
1293
1294 学習マニュアル:
1295 @rlearning{Accidentals and key signatures}
1296
1297 コード断片集:
1298 @rlsrnamed{Pitches,ピッチ}
1299
1300 内部リファレンス:
1301 @rinternals{KeyChangeEvent},
1302 @rinternals{Key_engraver},
1303 @rinternals{Key_performer},
1304 @rinternals{KeyCancellation},
1305 @rinternals{KeySignature},
1306 @rinternals{key-cancellation-interface},
1307 @rinternals{key-signature-interface}
1308
1309
1310 @node オッターバ囲み
1311 @unnumberedsubsubsec オッターバ囲み
1312 @translationof Ottava brackets
1313
1314 @cindex ottava (オッターバ)
1315 @cindex 15ma
1316 @cindex 8va
1317 @cindex 8ve
1318 @cindex octavation (オクタベーション)
1319
1320 @funindex set-octavation
1321 @funindex \ottava
1322 @funindex ottava
1323
1324 @notation{オッターバ囲み} は譜をオクターブ単位で移調します:
1325
1326 @lilypond[verbatim,quote,relative=2]
1327 a2 b
1328 \ottava #-2
1329 a2 b
1330 \ottava #-1
1331 a2 b
1332 \ottava #0
1333 a2 b
1334 \ottava #1
1335 a2 b
1336 \ottava #2
1337 a2 b
1338 @end lilypond
1339
1340 @snippets
1341
1342 @lilypondfile[verbatim,quote,texidoc,doctitle]
1343 {ottava-text.ly}
1344
1345 @seealso
1346 音楽用語集:
1347 @rglos{octavation}
1348
1349 コード断片集:
1350 @rlsrnamed{Pitches,ピッチ}
1351
1352 内部リファレンス:
1353 @rinternals{Ottava_spanner_engraver},
1354 @rinternals{OttavaBracket},
1355 @rinternals{ottava-bracket-interface}
1356
1357
1358 @node 楽器の移調
1359 @unnumberedsubsubsec 楽器の移調
1360 @translationof Instrument transpositions
1361
1362 @cindex transposition, MIDI (MIDI の移調)
1363 @cindex transposition, instrument (楽器の移調)
1364 @cindex transposing instrument (移調楽器)
1365 @cindex MIDI
1366 @cindex MIDI transposition (MIDI の移調)
1367
1368 @funindex \transposition
1369 @funindex transposition
1370
1371 楽器の移調を含む楽器を譜刻するとき、いくつかのパートは@c
1372 @notation{コンサート ピッチ} とは異なるピッチで譜刻される可能性があります。@c
1373 このような場合、@notation{移調楽器} の調を指定すべきです。@c
1374 指定しなければ MIDI 出力や他のパートの出だしのピッチは誤ったものになります。@c
1375 引用についての更なる情報は @ref{Quoting other voices} を参照してください。
1376
1377 @example
1378 \transposition @var{pitch}
1379 @end example
1380
1381 @code{\transposition} で使用するピッチは、@c
1382 譜に書かれた @code{c'} をその移調楽器で演奏したときに聴こえる@c
1383 実際の音に対応したものであるべきです。@c
1384 このピッチは絶対モードで入力します。@c
1385 ですから、楽譜よりも 1 度高い音を出す楽器は
1386 @w{@code{\transposition d'}} を使うべきです。@c
1387 @code{\transposition} は、ピッチがコンサート ピッチでは @emph{ない} ピッチで@c
1388 入力されている場合に @emph{のみ} 使用すべきです。
1389
1390 バイオリンと B-フラットのクラリネットのための音符をいくつか挙げます。@c
1391 それぞれのパートは、それぞれが指揮譜に刻譜されるときに使用される@c
1392 音符と調を使って入力されています。@c
1393 2 つの楽器は斉奏で演奏しています。
1394
1395 @lilypond[verbatim,quote]
1396 \new GrandStaff <<
1397   \new Staff = "violin" {
1398     \relative c'' {
1399       \set Staff.instrumentName = #"Vln"
1400       \set Staff.midiInstrument = #"violin"
1401       % not strictly necessary, but a good reminder
1402       \transposition c'
1403
1404       \key c \major
1405       g4( c8) r c r c4
1406     }
1407   }
1408   \new Staff = "clarinet" {
1409     \relative c'' {
1410       \set Staff.instrumentName = \markup { Cl (B\flat) }
1411       \set Staff.midiInstrument = #"clarinet"
1412       \transposition bes
1413
1414       \key d \major
1415       a4( d8) r d r d4
1416     }
1417   }
1418 >>
1419 @end lilypond
1420
1421 @code{\transposition} は楽曲の途中で変更されることもあります。@c
1422 例えば、クラリネット奏者は A のクラリネットから B-フラットのクラリネットに@c
1423 持ち替えることがあります。
1424
1425 @lilypond[verbatim,quote,relative=2]
1426 \set Staff.instrumentName = #"Cl (A)"
1427 \key a \major
1428 \transposition a
1429 c d e f
1430 \textLengthOn
1431 <>^\markup { Switch to B\flat clarinet }
1432 R1
1433
1434 \key bes \major
1435 \transposition bes
1436 c2 g
1437 @end lilypond
1438
1439 @seealso
1440 音楽用語集:
1441 @rglos{concert pitch},
1442 @rglos{transposing instrument}
1443
1444 記譜法リファレンス:
1445 @ref{Quoting other voices},
1446 @ref{Transpose}
1447
1448 コード断片集:
1449 @rlsrnamed{Pitches,ピッチ}
1450
1451
1452 @node 自動臨時記号
1453 @unnumberedsubsubsec 自動臨時記号
1454 @translationof Automatic accidentals
1455
1456 @cindex accidental style (臨時記号スタイル)
1457 @cindex accidental style, default (デフォルトの臨時記号スタイル)
1458 @cindex accidentals (臨時記号)
1459 @cindex accidentals, automatic (自動臨時記号)
1460 @cindex automatic accidentals (自動臨時記号)
1461 @cindex default accidental style (デフォルトの臨時記号スタイル)
1462
1463 @funindex \accidentalStyle
1464 @funindex voice
1465 @funindex default
1466
1467 臨時記号の譜刻の仕方には多くの異なる規約があります。@c
1468 LilyPond はどの臨時記号スタイルを使用するのかを指定するための関数を@c
1469 提供します。@c
1470 この関数は以下のように呼び出されます:
1471
1472 @example
1473 \new Staff <<
1474   \accidentalStyle "voice"
1475   @{ @dots{} @}
1476 >>
1477 @end example
1478
1479 指定された臨時記号スタイルは、デフォルトでは、カレントの @code{Staff} に@c
1480 適用されます
1481 (スタイル @code{piano} と @code{piano-cautionary} は例外です。@c
1482 これらは以下で説明します)。@c
1483 オプションとして、この関数は 2 つ目の引数をとることができ、@c
1484 それによってスタイルを変更すべき範囲 (スコープ) を指定できます。@c
1485 例えば、カレントの @code{StaffGroup} のすべての譜で同じスタイルを使うには、@c
1486 以下のようにします:
1487
1488 @example
1489 \accidentalStyle #'StaffGroup "voice"
1490 @end example
1491
1492 サポートされる臨時記号スタイルを以下で示します。@c
1493 それぞれのスタイルを実際に示すために、以下の例を使用します:
1494
1495 @lilypond[verbatim,quote]
1496 musicA = {
1497   <<
1498     \relative c' {
1499       cis'8 fis, bes4 <a cis>8 f bis4 |
1500       cis2. <c, g'>4 |
1501     }
1502     \\
1503     \relative c' {
1504       ais'2 cis, |
1505       fis8 b a4 cis2 |
1506     }
1507   >>
1508 }
1509
1510 musicB = {
1511   \clef bass
1512   \new Voice {
1513     \voiceTwo \relative c' {
1514       <fis, a cis>8[ <fis a cis>
1515       \change Staff = up
1516       cis' cis
1517       \change Staff = down
1518       <fis, a> <fis a>]
1519       \showStaffSwitch
1520       \change Staff = up
1521       dis'4 |
1522       \change Staff = down
1523       <fis, a cis>4 gis <f a d>2 |
1524     }
1525   }
1526 }
1527
1528 \new PianoStaff {
1529   <<
1530     \context Staff = "up" {
1531       \accidentalStyle "default"
1532       \musicA
1533     }
1534     \context Staff = "down" {
1535       \accidentalStyle "default"
1536       \musicB
1537     }
1538   >>
1539 }
1540 @end lilypond
1541
1542 両方の譜で同じ臨時記号スタイルを使うのなら、@c
1543 この例の最後のブロックを以下で置き換えられます:
1544
1545 @example
1546 \new PianoStaff @{
1547   <<
1548     \context Staff = "up" @{
1549       %%% 次の行を変更したいスタイルに合わせて変更してください:
1550       \accidentalStyle #'Score "default"
1551       \musicA
1552     @}
1553     \context Staff = "down" @{
1554       \musicB
1555     @}
1556   >>
1557 @}
1558 @end example
1559
1560
1561 @c don't use verbatim in this table.
1562 @table @code
1563 @item default
1564
1565 @cindex default accidental style (default 臨時記号スタイル)
1566 @cindex accidental style, default (default 臨時記号スタイル)
1567
1568 @funindex default
1569
1570 これはデフォルトの譜刻の仕方です。@c
1571 これは 18 世紀の一般的な習慣と一致します:
1572 臨時記号が有効なのは、その臨時記号が発生した小節の終わりまでで、@c
1573 かつ、その臨時記号が発生したオクターブの中だけです。@c
1574 そのため以下の例の中では、第 2 小節の @code{b} や最後の @code{c} の前には@c
1575 ナチュラル記号は譜刻されていません:
1576
1577 @lilypond[quote]
1578 musicA = {
1579   <<
1580     \relative c' {
1581       cis'8 fis, bes4 <a cis>8 f bis4 |
1582       cis2. <c, g'>4 |
1583     }
1584     \\
1585     \relative c' {
1586       ais'2 cis, |
1587       fis8 b a4 cis2 |
1588     }
1589   >>
1590 }
1591
1592 musicB = {
1593   \clef bass
1594   \new Voice {
1595     \voiceTwo \relative c' {
1596       <fis, a cis>8[ <fis a cis>
1597       \change Staff = up
1598       cis' cis
1599       \change Staff = down
1600       <fis, a> <fis a>]
1601       \showStaffSwitch
1602       \change Staff = up
1603       dis'4 |
1604       \change Staff = down
1605       <fis, a cis>4 gis <f a d>2 |
1606     }
1607   }
1608 }
1609
1610 \new PianoStaff {
1611   <<
1612     \context Staff = "up" {
1613       \accidentalStyle "default"
1614       \musicA
1615     }
1616     \context Staff = "down" {
1617       \accidentalStyle "default"
1618       \musicB
1619     }
1620   >>
1621 }
1622 @end lilypond
1623
1624 @item voice
1625
1626 @cindex accidental style, voice (voice 臨時記号スタイル)
1627 @cindex voice accidental style (voice 臨時記号スタイル)
1628 @cindex accidental style, modern (modern 臨時記号スタイル)
1629 @cindex modern accidental style (modern 臨時記号スタイル)
1630 @cindex accidental style, modern-cautionary (modern-cautionary 臨時記号スタイル)
1631 @cindex modern-cautionary accidental style (modern-cautionary 臨時記号スタイル)
1632
1633 @funindex voice
1634
1635 通常の臨時記号の付け方では、臨時記号は @code{Staff} レベルで保持されます。@c
1636 しかしながらこのスタイルでは、臨時記号はそれぞれのボイスで別々に譜刻されます。@c
1637 それを除けば、このスタイルの規則は @code{default} と同じです。
1638
1639 結果として、あるボイスからの臨時記号は他のボイスでキャンセルされず、@c
1640 これはしばしば望まない結果となります:
1641 以下の例では、2 番目の @code{a} をナチュラルで演奏するか、@c
1642 シャープで演奏するかを決定するのは困難です。@c
1643 そのため、@code{voice} オプションは、それぞれのボイスが別々の演奏者によって@c
1644 個々に読まれる場合にのみ使用すべきです。@c
1645 譜が 1 人の演奏者によって使用される場合 (例えば、指揮者やピアノ譜の場合)、@c
1646 このスタイルの代わりに @code{modern} や @code{modern-cautionary} を@c
1647 使用すべきです。
1648
1649 @lilypond[quote]
1650 musicA = {
1651   <<
1652     \relative c' {
1653       cis'8 fis, bes4 <a cis>8 f bis4 |
1654       cis2. <c, g'>4 |
1655     }
1656     \\
1657     \relative c' {
1658       ais'2 cis, |
1659       fis8 b a4 cis2 |
1660     }
1661   >>
1662 }
1663
1664 musicB = {
1665   \clef bass
1666   \new Voice {
1667     \voiceTwo \relative c' {
1668       <fis, a cis>8[ <fis a cis>
1669       \change Staff = up
1670       cis' cis
1671       \change Staff = down
1672       <fis, a> <fis a>]
1673       \showStaffSwitch
1674       \change Staff = up
1675       dis'4 |
1676       \change Staff = down
1677       <fis, a cis>4 gis <f a d>2 |
1678     }
1679   }
1680 }
1681
1682 \new PianoStaff {
1683   <<
1684     \context Staff = "up" {
1685       \accidentalStyle "voice"
1686       \musicA
1687     }
1688     \context Staff = "down" {
1689       \accidentalStyle "voice"
1690       \musicB
1691     }
1692   >>
1693 }
1694 @end lilypond
1695
1696 @item modern
1697
1698 @cindex accidentals, modern style (modern 臨時記号スタイル)
1699 @cindex modern style accidentals (modern 臨時記号スタイル)
1700
1701 @funindex modern
1702
1703 @c ここから L221
1704 この規則は 20 世紀の一般的な臨時記号の付け方と一致します:
1705 この規則はいくつかの余分なナチュラル記号を省略します
1706 -- 伝統的にダブル シャープの後のシャープに前置されるナチュラル記号と、@c
1707 ダブル フラットの後のフラットに前置されるナチュラル記号を省略します。@c
1708
1709 @code{modern} 規則の臨時記号の付け方は @code{default} とほぼ同じですが、@c
1710 あいまいさを避けるための 2 つの規則が追加されます
1711  -- 一時的な臨時記号が使われると、
1712 その後の小節で (同じオクターブにある音符に対して) キャンセル記号が@c
1713 譜刻され、@c
1714 臨時記号が使われた小節では他のオクターブにある音符にもキャンセル記号が@c
1715 譜刻されます。@c
1716 そのため、上部譜の第 2 小節の中にある @code{b} と @code{c} の前には@c
1717 ナチュラルが付けられています:
1718
1719 @lilypond[quote]
1720 musicA = {
1721   <<
1722     \relative c' {
1723       cis'8 fis, bes4 <a cis>8 f bis4 |
1724       cis2. <c, g'>4 |
1725     }
1726     \\
1727     \relative c' {
1728       ais'2 cis, |
1729       fis8 b a4 cis2 |
1730     }
1731   >>
1732 }
1733
1734 musicB = {
1735   \clef bass
1736   \new Voice {
1737     \voiceTwo \relative c' {
1738       <fis, a cis>8[ <fis a cis>
1739       \change Staff = up
1740       cis' cis
1741       \change Staff = down
1742       <fis, a> <fis a>]
1743       \showStaffSwitch
1744       \change Staff = up
1745       dis'4 |
1746       \change Staff = down
1747       <fis, a cis>4 gis <f a d>2 |
1748     }
1749   }
1750 }
1751
1752 \new PianoStaff {
1753   <<
1754     \context Staff = "up" {
1755       \accidentalStyle "modern"
1756       \musicA
1757     }
1758     \context Staff = "down" {
1759       \accidentalStyle "modern"
1760       \musicB
1761     }
1762   >>
1763 }
1764 @end lilypond
1765
1766 @item modern-cautionary
1767
1768 @cindex accidentals, modern cautionary style (modern-cautionary 臨時記号スタイル)
1769 @cindex modern accidental style (modern 臨時記号スタイル)
1770 @cindex modern cautionary accidental style (modern-cautionary 臨時記号スタイル)
1771 @cindex modern style accidentals (modern 臨時記号スタイル)
1772 @cindex modern style cautionary accidentals (modern-cautionary 臨時記号スタイル)
1773
1774 @funindex modern-cautionary
1775
1776 この規則は @code{modern} と似ていますが、@c
1777 忠告的臨時記号として @q{追加の} 臨時記号が譜刻されます
1778 (これは @code{default} では譜刻されません)。@c
1779 デフォルトでは、この臨時記号は括弧で囲まれて譜刻されますが、@c
1780 @code{AccidentalSuggestion} の @code{cautionary-style} プロパティを@c
1781 定義することによって小さなサイズで譜刻されることもあり得ます。
1782
1783 @lilypond[quote]
1784 musicA = {
1785   <<
1786     \relative c' {
1787       cis'8 fis, bes4 <a cis>8 f bis4 |
1788       cis2. <c, g'>4 |
1789     }
1790     \\
1791     \relative c' {
1792       ais'2 cis, |
1793       fis8 b a4 cis2 |
1794     }
1795   >>
1796 }
1797
1798 musicB = {
1799   \clef bass
1800   \new Voice {
1801     \voiceTwo \relative c' {
1802       <fis, a cis>8[ <fis a cis>
1803       \change Staff = up
1804       cis' cis
1805       \change Staff = down
1806       <fis, a> <fis a>]
1807       \showStaffSwitch
1808       \change Staff = up
1809       dis'4 |
1810       \change Staff = down
1811       <fis, a cis>4 gis <f a d>2 |
1812     }
1813   }
1814 }
1815
1816 \new PianoStaff {
1817   <<
1818     \context Staff = "up" {
1819       \accidentalStyle "modern-cautionary"
1820       \musicA
1821     }
1822     \context Staff = "down" {
1823       \accidentalStyle "modern-cautionary"
1824       \musicB
1825     }
1826   >>
1827 }
1828 @end lilypond
1829
1830 @item modern-voice
1831
1832 @cindex accidental style, modern (modern 臨時記号スタイル)
1833 @cindex accidentals, modern (modern 臨時記号)
1834 @cindex accidentals, multivoice (マルチボイス臨時記号)
1835 @cindex modern accidental style (modern 臨時記号スタイル)
1836 @cindex modern accidentals (modern 臨時記号)
1837 @cindex multivoice accidentals (マルチボイス)
1838
1839 @funindex modern-voice
1840
1841 この規則はマルチボイス臨時記号として使用されます。@c
1842 演奏家が複数のボイスの中の 1 つのボイスを演奏する場合にも、@c
1843 すべてのボイスを演奏する場合にも使用されます。@c
1844 臨時記号はそれぞれのボイスに対して譜刻されますが、@c
1845 同じ @code{Staff} の中であってもボイスをまたいで@emph{キャンセルされます}。@c
1846 そのため、最後の小節で @code{a} がキャンセルされています
1847  -- なぜなら、前のキャンセルは異なるボイスで行われたからです。@c
1848 さらに下部譜では @code{d} がキャンセルされています
1849  -- その臨時記号は前の小節の異なるボイスで付けられたものだからです:
1850
1851 @lilypond[quote]
1852 musicA = {
1853   <<
1854     \relative c' {
1855       cis'8 fis, bes4 <a cis>8 f bis4 |
1856       cis2. <c, g'>4 |
1857     }
1858     \\
1859     \relative c' {
1860       ais'2 cis, |
1861       fis8 b a4 cis2 |
1862     }
1863   >>
1864 }
1865
1866 musicB = {
1867   \clef bass
1868   \new Voice {
1869     \voiceTwo \relative c' {
1870       <fis, a cis>8[ <fis a cis>
1871       \change Staff = up
1872       cis' cis
1873       \change Staff = down
1874       <fis, a> <fis a>]
1875       \showStaffSwitch
1876       \change Staff = up
1877       dis'4 |
1878       \change Staff = down
1879       <fis, a cis>4 gis <f a d>2 |
1880     }
1881   }
1882 }
1883
1884 \new PianoStaff {
1885   <<
1886     \context Staff = "up" {
1887       \accidentalStyle "modern-voice"
1888       \musicA
1889     }
1890     \context Staff = "down" {
1891       \accidentalStyle "modern-voice"
1892       \musicB
1893     }
1894   >>
1895 }
1896 @end lilypond
1897
1898 @cindex accidental style, cautionary, modern voice (modern-voice-cautionary 臨時記号スタイル)
1899 @cindex accidental style, modern voice cautionary (modern-voice-cautionary 臨時記号スタイル)
1900 @cindex accidental style, voice, modern cautionary (modern-voice-cautionary 臨時記号スタイル)
1901
1902 @funindex modern-voice-cautionary
1903
1904 @item modern-voice-cautionary
1905
1906 この規則は @code{modern-voice} と同じですが、追加の臨時記号
1907 (これは @code{voice} では譜刻されません)
1908 は忠告として譜刻されます。@c
1909 たとえ @code{default} で譜刻されるすべての臨時記号が@c
1910 この規則でも譜刻されたとしても、@c
1911 それらの臨時記号のいくつかは忠告として譜刻されます。
1912
1913 @lilypond[quote]
1914 musicA = {
1915   <<
1916     \relative c' {
1917       cis'8 fis, bes4 <a cis>8 f bis4 |
1918       cis2. <c, g'>4 |
1919     }
1920     \\
1921     \relative c' {
1922       ais'2 cis, |
1923       fis8 b a4 cis2 |
1924     }
1925   >>
1926 }
1927
1928 musicB = {
1929   \clef bass
1930   \new Voice {
1931     \voiceTwo \relative c' {
1932       <fis, a cis>8[ <fis a cis>
1933       \change Staff = up
1934       cis' cis
1935       \change Staff = down
1936       <fis, a> <fis a>]
1937       \showStaffSwitch
1938       \change Staff = up
1939       dis'4 |
1940       \change Staff = down
1941       <fis, a cis>4 gis <f a d>2 |
1942     }
1943   }
1944 }
1945
1946 \new PianoStaff {
1947   <<
1948     \context Staff = "up" {
1949       \accidentalStyle "modern-voice-cautionary"
1950       \musicA
1951     }
1952     \context Staff = "down" {
1953       \accidentalStyle "modern-voice-cautionary"
1954       \musicB
1955     }
1956   >>
1957 }
1958 @end lilypond
1959
1960 @item piano
1961
1962 @cindex accidental style, piano (ピアノ臨時記号スタイル)
1963 @cindex accidentals, piano (ピアノ臨時記号)
1964 @cindex piano accidental style (ピアノ臨時記号スタイル)
1965 @cindex piano accidentals (ピアノ臨時記号)
1966
1967 @funindex piano
1968
1969 この規則は 20 世紀のピアノ譜の臨時記号のつけ方を反映しています。@c
1970 このスタイルは @code{modern} スタイルと非常によく似ています。@c
1971 しかしながらこのスタイルでは、@c
1972 同じ @code{GrandStaff} または @code{PianoStaff} の中にある譜をまたがって@c
1973 臨時記号はキャンセルされます。@c
1974 そのため、最後の和音ではすべての音符でキャンセルが行われています。
1975
1976 この臨時記号スタイルは、@c
1977 デフォルトで、@code{GrandStaff} や @code{PianoStaff} に適用されます。
1978
1979 @lilypond[quote]
1980 musicA = {
1981   <<
1982     \relative c' {
1983       cis'8 fis, bes4 <a cis>8 f bis4 |
1984       cis2. <c, g'>4 |
1985     }
1986     \\
1987     \relative c' {
1988       ais'2 cis, |
1989       fis8 b a4 cis2 |
1990     }
1991   >>
1992 }
1993
1994 musicB = {
1995   \clef bass
1996   \new Voice {
1997     \voiceTwo \relative c' {
1998       <fis, a cis>8[ <fis a cis>
1999       \change Staff = up
2000       cis' cis
2001       \change Staff = down
2002       <fis, a> <fis a>]
2003       \showStaffSwitch
2004       \change Staff = up
2005       dis'4 |
2006       \change Staff = down
2007       <fis, a cis>4 gis <f a d>2 |
2008     }
2009   }
2010 }
2011
2012 \new PianoStaff {
2013   <<
2014     \context Staff = "up" {
2015       \accidentalStyle "piano"
2016       \musicA
2017     }
2018     \context Staff = "down" {
2019       \musicB
2020     }
2021   >>
2022 }
2023 @end lilypond
2024
2025 @item piano-cautionary
2026
2027 @cindex accidentals, piano cautionary (piano-cautionary 臨時記号)
2028 @cindex cautionary accidentals, piano (piano-cautionary 臨時記号)
2029 @cindex piano cautionary accidentals (piano-cautionary 臨時記号)
2030 @cindex accidental style, piano cautionary (piano-cautionary 臨時記号スタイル)
2031 @cindex cautionary accidental style, piano (piano-cautionary 臨時記号スタイル)
2032 @cindex piano cautionary accidental style (piano-cautionary 臨時記号スタイル)
2033
2034 @funindex piano-cautionary
2035
2036 この規則は @code{piano} と同じですが、追加の臨時記号は忠告として譜刻されます。
2037
2038 @lilypond[quote]
2039 musicA = {
2040   <<
2041     \relative c' {
2042       cis'8 fis, bes4 <a cis>8 f bis4 |
2043       cis2. <c, g'>4 |
2044     }
2045     \\
2046     \relative c' {
2047       ais'2 cis, |
2048       fis8 b a4 cis2 |
2049     }
2050   >>
2051 }
2052
2053 musicB = {
2054   \clef bass
2055   \new Voice {
2056     \voiceTwo \relative c' {
2057       <fis, a cis>8[ <fis a cis>
2058       \change Staff = up
2059       cis' cis
2060       \change Staff = down
2061       <fis, a> <fis a>]
2062       \showStaffSwitch
2063       \change Staff = up
2064       dis'4 |
2065       \change Staff = down
2066       <fis, a cis>4 gis <f a d>2 |
2067     }
2068   }
2069 }
2070
2071 \new PianoStaff {
2072   <<
2073     \context Staff = "up" {
2074       \accidentalStyle "piano-cautionary"
2075       \musicA
2076     }
2077     \context Staff = "down" {
2078       \musicB
2079     }
2080   >>
2081 }
2082 @end lilypond
2083
2084 @item neo-modern
2085
2086 @cindex neo-modern accidental style (neo-modern 臨時記号スタイル)
2087 @cindex accidental style, neo-modern (neo-modern 臨時記号スタイル)
2088
2089 @funindex neo-modern
2090
2091 この規則は現代音楽での一般的な臨時記号の付け方を再現します:
2092 臨時記号は @code{modern} と同じように譜刻されますが、@c
2093 同じ小節の中で臨時記号を付けられた音符と同じ音符が再び現れた場合、@c
2094 その音符にも臨時記号が譜刻されます
2095  -- ただし、臨時記号を付けられた音符の直後に同じ音符が現れる場合は除きます
2096 (訳者: 第 1 小節の下部譜にある 2 つの @code{f} には@c
2097 両方とも臨時記号が譜刻されていますが、@c
2098 第 1 小節の上部譜にある 2 つのミドル C は連続しているため、@c
2099 後のミドル C には臨時記号が譜刻されません)。
2100
2101 @lilypond[quote]
2102 musicA = {
2103   <<
2104     \relative c' {
2105       cis'8 fis, bes4 <a cis>8 f bis4 |
2106       cis2. <c, g'>4 |
2107     }
2108     \\
2109     \relative c' {
2110       ais'2 cis, |
2111       fis8 b a4 cis2 |
2112     }
2113   >>
2114 }
2115
2116 musicB = {
2117   \clef bass
2118   \new Voice {
2119     \voiceTwo \relative c' {
2120       <fis, a cis>8[ <fis a cis>
2121       \change Staff = up
2122       cis' cis
2123       \change Staff = down
2124       <fis, a> <fis a>]
2125       \showStaffSwitch
2126       \change Staff = up
2127       dis'4 |
2128       \change Staff = down
2129       <fis, a cis>4 gis <f a d>2 |
2130     }
2131   }
2132 }
2133
2134 \new PianoStaff {
2135   <<
2136     \context Staff = "up" {
2137       \accidentalStyle "neo-modern"
2138       \musicA
2139     }
2140     \context Staff = "down" {
2141       \accidentalStyle "neo-modern"
2142       \musicB
2143     }
2144   >>
2145 }
2146 @end lilypond
2147
2148 @item neo-modern-cautionary
2149
2150 @cindex neo-modern-cautionary accidental style (neo-modern-cautionary 臨時記号スタイル)
2151 @cindex accidental style, neo-modern-cautionary (neo-modern-cautionary 臨時記号スタイル)
2152
2153 @funindex neo-modern-cautionary
2154
2155 この規則は @code{neo-modern} と似ていますが、@c
2156 追加の臨時記号は忠告の臨時記号として譜刻されます。
2157
2158 @lilypond[quote]
2159 musicA = {
2160   <<
2161     \relative c' {
2162       cis'8 fis, bes4 <a cis>8 f bis4 |
2163       cis2. <c, g'>4 |
2164     }
2165     \\
2166     \relative c' {
2167       ais'2 cis, |
2168       fis8 b a4 cis2 |
2169     }
2170   >>
2171 }
2172
2173 musicB = {
2174   \clef bass
2175   \new Voice {
2176     \voiceTwo \relative c' {
2177       <fis, a cis>8[ <fis a cis>
2178       \change Staff = up
2179       cis' cis
2180       \change Staff = down
2181       <fis, a> <fis a>]
2182       \showStaffSwitch
2183       \change Staff = up
2184       dis'4 |
2185       \change Staff = down
2186       <fis, a cis>4 gis <f a d>2 |
2187     }
2188   }
2189 }
2190
2191 \new PianoStaff {
2192   <<
2193     \context Staff = "up" {
2194       \accidentalStyle "neo-modern-cautionary"
2195       \musicA
2196     }
2197     \context Staff = "down" {
2198       \accidentalStyle "neo-modern-cautionary"
2199       \musicB
2200     }
2201   >>
2202 }
2203 @end lilypond
2204
2205 @item neo-modern-voice
2206
2207 @cindex neo-modern-voice accidental style (neo-modern-voice 臨時記号スタイル)
2208 @cindex accidental style, neo-modern-voice (neo-modern-voice 臨時記号スタイル)
2209
2210 @funindex neo-modern-voice
2211
2212 この規則は、1 つのボイスを演奏する音楽家とすべてのボイスを演奏する音楽家@c
2213 両方のための複数ボイスの臨時記号に使用されます。@c
2214 @code{neo-modern} と同様に、臨時記号は各ボイスに譜刻されますが、@c
2215 同じ @code{Staff} にあるボイスをまたがるとキャンセルされます。
2216
2217 @lilypond[quote]
2218 musicA = {
2219   <<
2220     \relative c' {
2221       cis'8 fis, bes4 <a cis>8 f bis4 |
2222       cis2. <c, g'>4 |
2223     }
2224     \\
2225     \relative c' {
2226       ais'2 cis, |
2227       fis8 b a4 cis2 |
2228     }
2229   >>
2230 }
2231
2232 musicB = {
2233   \clef bass
2234   \new Voice {
2235     \voiceTwo \relative c' {
2236       <fis, a cis>8[ <fis a cis>
2237       \change Staff = up
2238       cis' cis
2239       \change Staff = down
2240       <fis, a> <fis a>]
2241       \showStaffSwitch
2242       \change Staff = up
2243       dis'4 |
2244       \change Staff = down
2245       <fis, a cis>4 gis <f a d>2 |
2246     }
2247   }
2248 }
2249
2250 \new PianoStaff {
2251   <<
2252     \context Staff = "up" {
2253       \accidentalStyle "neo-modern-voice"
2254       \musicA
2255     }
2256     \context Staff = "down" {
2257       \accidentalStyle "neo-modern-voice"
2258       \musicB
2259     }
2260   >>
2261 }
2262 @end lilypond
2263
2264 @item neo-modern-voice-cautionary
2265
2266 @cindex neo-modern-voice-cautionary accidental style (neo-modern-voice-cautionary 臨時記号スタイル)
2267 @cindex accidental style, neo-modern-voice-cautionary (neo-modern-voice-cautionary 臨時記号スタイル)
2268
2269 @funindex neo-modern-voice-cautionary
2270
2271 この規則は @code{neo-modern-voice} と似ていますが、@c
2272 追加の臨時記号が忠告の臨時記号として譜刻されます。
2273
2274 @lilypond[quote]
2275 musicA = {
2276   <<
2277     \relative c' {
2278       cis'8 fis, bes4 <a cis>8 f bis4 |
2279       cis2. <c, g'>4 |
2280     }
2281     \\
2282     \relative c' {
2283       ais'2 cis, |
2284       fis8 b a4 cis2 |
2285     }
2286   >>
2287 }
2288
2289 musicB = {
2290   \clef bass
2291   \new Voice {
2292     \voiceTwo \relative c' {
2293       <fis, a cis>8[ <fis a cis>
2294       \change Staff = up
2295       cis' cis
2296       \change Staff = down
2297       <fis, a> <fis a>]
2298       \showStaffSwitch
2299       \change Staff = up
2300       dis'4 |
2301       \change Staff = down
2302       <fis, a cis>4 gis <f a d>2 |
2303     }
2304   }
2305 }
2306
2307 \new PianoStaff {
2308   <<
2309     \context Staff = "up" {
2310       \accidentalStyle "neo-modern-voice-cautionary"
2311       \musicA
2312     }
2313     \context Staff = "down" {
2314       \accidentalStyle "neo-modern-voice-cautionary"
2315       \musicB
2316     }
2317   >>
2318 }
2319 @end lilypond
2320
2321 @item dodecaphonic
2322
2323 @cindex dodecaphonic accidental style (dodecaphonic 臨時記号スタイル)
2324 @cindex dodecaphonic style, neo-modern (neo-modern 12 音スタイル)
2325
2326 @funindex dodecaphonic
2327
2328 この規則は 20 世紀初頭の作曲家たちによって導入された臨時記号の付け方を@c
2329 反映しています
2330  -- ナチュラルの音符と非ナチュラルの音符
2331 (訳者: ピアノの白鍵に対応する音符と黒鍵に対応する音符)
2332 間にある上下関係を無効にしようとする試みです。@c
2333 このスタイルでは、@emph{すべて} の音符にナチュラル記号を含む臨時記号が@c
2334 付けられます。
2335
2336 @lilypond[quote]
2337 musicA = {
2338   <<
2339     \relative c' {
2340       cis'8 fis, bes4 <a cis>8 f bis4 |
2341       cis2. <c, g'>4 |
2342     }
2343     \\
2344     \relative c' {
2345       ais'2 cis, |
2346       fis8 b a4 cis2 |
2347     }
2348   >>
2349 }
2350
2351 musicB = {
2352   \clef bass
2353   \new Voice {
2354     \voiceTwo \relative c' {
2355       <fis, a cis>8[ <fis a cis>
2356       \change Staff = up
2357       cis' cis
2358       \change Staff = down
2359       <fis, a> <fis a>]
2360       \showStaffSwitch
2361       \change Staff = up
2362       dis'4 |
2363       \change Staff = down
2364       <fis, a cis>4 gis <f a d>2 |
2365     }
2366   }
2367 }
2368
2369 \new PianoStaff {
2370   <<
2371     \context Staff = "up" {
2372       \accidentalStyle "dodecaphonic"
2373       \musicA
2374     }
2375     \context Staff = "down" {
2376       \accidentalStyle "dodecaphonic"
2377       \musicB
2378     }
2379   >>
2380 }
2381 @end lilypond
2382
2383 @item teaching
2384
2385 @cindex teaching accidental style (teaching 臨時記号スタイル)
2386 @cindex accidental style, teaching (teaching 臨時記号スタイル)
2387
2388 @funindex teaching
2389
2390 この規則は学生向けを意図したものであり、@c
2391 自動的に譜刻される忠告の臨時記号によって容易にスケール譜を作ることを@c
2392 容易にします。@c
2393 臨時記号は @code{modern} と同じように譜刻されます。@c
2394 しかしながら、調号によって指定されたすべてのシャープ音、@c
2395 フラット音に対して忠告の臨時記号が譜刻されます
2396  -- ただし、前の音符の直後にある同じピッチの音符は例外です。
2397
2398 @lilypond[quote,staffsize=18]
2399 musicA = {
2400   <<
2401     \relative c' {
2402       cis'8 fis, bes4 <a cis>8 f bis4 |
2403       cis2. <c, g'>4 |
2404     }
2405     \\
2406     \relative c' {
2407       ais'2 cis, |
2408       fis8 b a4 cis2 |
2409     }
2410   >>
2411 }
2412
2413 musicB = {
2414   \clef bass
2415   \new Voice {
2416     \voiceTwo \relative c' {
2417       <fis, a cis>8[ <fis a cis>
2418       \change Staff = up
2419       cis' cis
2420       \change Staff = down
2421       <fis, a> <fis a>]
2422       \showStaffSwitch
2423       \change Staff = up
2424       dis'4 |
2425       \change Staff = down
2426       <fis, a cis>4 gis <f a d>2 |
2427     }
2428   }
2429 }
2430
2431 \new PianoStaff {
2432   <<
2433     \context Staff = "up" {
2434       \key fis \minor
2435       \accidentalStyle "teaching"
2436       \musicA
2437     }
2438     \context Staff = "down" {
2439       \key fis \minor
2440       \accidentalStyle "teaching"
2441       \musicB
2442     }
2443   >>
2444 }
2445 @end lilypond
2446
2447
2448
2449 @item no-reset
2450
2451 @cindex accidental style, no reset (no-reset 臨時記号スタイル)
2452 @cindex no reset accidental style (no-reset 臨時記号スタイル)
2453
2454 @funindex no-reset
2455
2456 この規則は @code{default} と同じですが、臨時記号の保持は小節内に限定されず、@c
2457 @q{最後まで} 保持されます:
2458
2459 @lilypond[quote]
2460 musicA = {
2461   <<
2462     \relative c' {
2463       cis'8 fis, bes4 <a cis>8 f bis4 |
2464       cis2. <c, g'>4 |
2465     }
2466     \\
2467     \relative c' {
2468       ais'2 cis, |
2469       fis8 b a4 cis2 |
2470     }
2471   >>
2472 }
2473
2474 musicB = {
2475   \clef bass
2476   \new Voice {
2477     \voiceTwo \relative c' {
2478       <fis, a cis>8[ <fis a cis>
2479       \change Staff = up
2480       cis' cis
2481       \change Staff = down
2482       <fis, a> <fis a>]
2483       \showStaffSwitch
2484       \change Staff = up
2485       dis'4 |
2486       \change Staff = down
2487       <fis, a cis>4 gis <f a d>2 |
2488     }
2489   }
2490 }
2491
2492 \new PianoStaff {
2493   <<
2494     \context Staff = "up" {
2495       \accidentalStyle "no-reset"
2496       \musicA
2497     }
2498     \context Staff = "down" {
2499       \accidentalStyle "no-reset"
2500       \musicB
2501     }
2502   >>
2503 }
2504 @end lilypond
2505
2506 @item forget
2507
2508 @cindex forget accidental style (forget 臨時記号スタイル)
2509 @cindex accidental style, forget (forget 臨時記号スタイル)
2510
2511 @funindex forget
2512
2513 この規則は @code{no-reset} と正反対です:
2514 臨時記号はまったく保持されません
2515 -- そのため、調号に対応しながら、前にある音楽とは無関係に@c
2516 すべての臨時記号が譜刻されます。@c
2517
2518 @lilypond[quote]
2519 musicA = {
2520   <<
2521     \relative c' {
2522       cis'8 fis, bes4 <a cis>8 f bis4 |
2523       cis2. <c, g'>4 |
2524     }
2525     \\
2526     \relative c' {
2527       ais'2 cis, |
2528       fis8 b a4 cis2 |
2529     }
2530   >>
2531 }
2532
2533 musicB = {
2534   \clef bass
2535   \new Voice {
2536     \voiceTwo \relative c' {
2537       <fis, a cis>8[ <fis a cis>
2538       \change Staff = up
2539       cis' cis
2540       \change Staff = down
2541       <fis, a> <fis a>]
2542       \showStaffSwitch
2543       \change Staff = up
2544       dis'4 |
2545       \change Staff = down
2546       <fis, a cis>4 gis <f a d>2 |
2547     }
2548   }
2549 }
2550
2551 \new PianoStaff {
2552   <<
2553     \context Staff = "up" {
2554       \accidentalStyle "forget"
2555       \musicA
2556     }
2557     \context Staff = "down" {
2558       \accidentalStyle "forget"
2559       \musicB
2560     }
2561   >>
2562 }
2563 @end lilypond
2564 @end table
2565
2566 @seealso
2567 コード断片集:
2568 @rlsrnamed{Pitches,ピッチ}
2569
2570 内部リファレンス:
2571 @rinternals{Accidental},
2572 @rinternals{Accidental_engraver},
2573 @rinternals{GrandStaff} and
2574 @rinternals{PianoStaff},
2575 @rinternals{Staff},
2576 @rinternals{AccidentalSuggestion},
2577 @rinternals{AccidentalPlacement},
2578 @rinternals{accidental-suggestion-interface}
2579
2580 @cindex accidentals and simultaneous notes (臨時記号と同時発生する音符)
2581 @cindex simultaneous notes and accidentals (同時発生する音符と臨時記号)
2582 @cindex accidentals in chords (和音の中の臨時記号)
2583 @cindex chords, accidentals in (和音の中の臨時記号)
2584
2585 @knownissues
2586 同時発生する音符はシーケンシャル モードで入力されたものと見なされます。@c
2587 このことが意味するのは、和音の各音符は入力ファイルの中で記述された順に
2588 1 つずつ発生するものとして、和音の臨時記号は譜刻されるということです。@c
2589 これは和音の中の臨時記号が互いに依存関係にある場合に問題となります
2590 -- この問題はデフォルトの臨時記号スタイルでは発生しません。@c
2591 この問題は、問題となる音符に @code{!} や @code{?} を@c
2592 手動で付け加えることによって解決できます。
2593
2594 臨時記号の忠告的なキャンセルは 1 つ前の小節を見て行われます。@c
2595 しかしながら、@code{\repeat volta N} セクションの後にくる
2596 @code{\alternative} ブロックでは、@c
2597 キャンセルの算出はその前に @emph{譜刻された} 小節ではなく、@c
2598 その前に @emph{演奏された} 小節を見て行われると演奏者は予想します。@c
2599 以下の例では、2 番目の差し替え小節の中にあるナチュラル @code{c}
2600 にナチュラル記号は必要ありません。
2601
2602 @lilypond[quote]
2603 {
2604   \accidentalStyle "modern"
2605   \time 2/4
2606   \repeat volta 2 {
2607     c'2
2608   }
2609   \alternative {
2610      cis'
2611      c'
2612   }
2613 }
2614 @end lilypond
2615
2616 以下の方法で解決できます:
2617 局部的に臨時記号スタイルを @code{forget} に変更する関数を定義します:
2618
2619 @lilypond[verbatim,quote]
2620 forget = #(define-music-function (parser location music) (ly:music?) #{
2621   \accidentalStyle "forget"
2622   #music
2623   \accidentalStyle "modern"
2624 #})
2625 {
2626   \accidentalStyle "modern"
2627   \time 2/4
2628   \repeat volta 2 {
2629     c'2
2630   }
2631   \alternative {
2632      cis'
2633      \forget c'
2634   }
2635 }
2636 @end lilypond
2637
2638
2639 @node 音域
2640 @unnumberedsubsubsec 音域
2641 @translationof Ambitus
2642
2643 @cindex ambitus (音域)
2644 @cindex range of pitches (ピッチの範囲)
2645 @cindex pitch range (ピッチ範囲)
2646
2647 用語 @notation{音域} (ambitus) は、@c
2648 音楽のある部分の中にあるボイスがとるピッチの範囲を示します。@c
2649 さらに、ある楽器が演奏することができるピッチ範囲を@c
2650 示すこともあるかもしれません。@c
2651 音域をボーカル パートに譜刻することによって、@c
2652 歌い手はそのパートの音域が歌い手の能力と一致するかどうかを@c
2653 容易に見極めることができます。
2654
2655 音域は、楽曲の開始点で、最初の音部記号の近くに記されます。@c
2656 範囲は最低ピッチと最高ピッチを表す 2 つの音符によって@c
2657 グラフィカルに示されます。@c
2658 臨時記号は、その臨時記号が調号の一部でない場合にのみ譜刻されます。
2659
2660 @lilypond[verbatim,quote]
2661 \layout {
2662   \context {
2663     \Voice
2664     \consists "Ambitus_engraver"
2665   }
2666 }
2667
2668 \relative c'' {
2669   aes c e2
2670   cis,1
2671 }
2672 @end lilypond
2673
2674
2675 @snippets
2676
2677 @lilypondfile[verbatim,quote,texidoc,doctitle]
2678 {adding-ambitus-per-voice.ly}
2679
2680 @lilypondfile[verbatim,quote,texidoc,doctitle]
2681 {ambitus-with-multiple-voices.ly}
2682
2683 @lilypondfile[verbatim,quote,texidoc,doctitle]
2684 {changing-the-ambitus-gap.ly}
2685
2686 @seealso
2687 音楽用語集:
2688 @rglos{ambitus}
2689
2690 コード断片集:
2691 @rlsrnamed{Pitches,ピッチ}
2692
2693 内部リファレンス:
2694 @rinternals{Ambitus_engraver},
2695 @rinternals{Voice},
2696 @rinternals{Staff},
2697 @rinternals{Ambitus},
2698 @rinternals{AmbitusAccidental},
2699 @rinternals{AmbitusLine},
2700 @rinternals{AmbitusNoteHead},
2701 @rinternals{ambitus-interface}
2702
2703 @knownissues
2704 複数のボイスがある場合にボイスごとに音域をとることによって生じる@c
2705 音域の衝突を処理するシステムはありません。
2706
2707
2708 @node 符頭
2709 @subsection 符頭
2710 @translationof Note heads
2711
2712 このセクションでは符頭を変更する方法について説明します。
2713
2714 @menu
2715 * 特殊な符頭::
2716 * 演奏を容易にする記譜法の符頭::
2717 * シェイプ符頭::
2718 * 即興::
2719 @end menu
2720
2721 @node 特殊な符頭
2722 @unnumberedsubsubsec 特殊な符頭
2723 @translationof Special note heads
2724
2725 @cindex note heads, special (特別な符頭)
2726 @cindex note heads, cross (×の符頭)
2727 @cindex note heads, diamond (ダイアモンド形の符頭)
2728 @cindex note heads, parlato (語りの符頭)
2729 @cindex note heads, harmonic (和音の符頭)
2730 @cindex note heads, guitar (ギターの符頭)
2731 @cindex special note heads (特別な符頭)
2732 @cindex cross note heads (×の符頭)
2733 @cindex diamond note heads (ダイアモンド形の符頭)
2734 @cindex parlato note heads (語りの符頭)
2735 @cindex harmonic note heads (和音の符頭)
2736 @cindex guitar note heads (ギターの符頭)
2737 @cindex note head styles (符頭のスタイル)
2738 @cindex styles, note heads (符頭のスタイル)
2739
2740 @funindex cross
2741
2742 符頭を変更することができます:
2743
2744 @lilypond[verbatim,quote,relative=2]
2745 c4 b
2746 \override NoteHead #'style = #'cross
2747 c4 b
2748 \revert NoteHead #'style
2749 a b
2750 \override NoteHead #'style = #'harmonic
2751 a b
2752 \revert NoteHead #'style
2753 c4 d e f
2754 @end lilypond
2755
2756 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。
2757
2758 @code{cross} スタイルはさまざまな音楽的意図を表すために使用されます。@c
2759 以下の定義済みコマンドは符頭を譜コンテキストとタブ譜コンテキストで変更し、@c
2760 何らかの音楽的意味を表すために使用することができます:
2761
2762 @lilypond[verbatim,quote,relative=2]
2763 c4 b
2764 \xNotesOn
2765  a b c4 b
2766 \xNotesOff
2767 c4 d
2768 @end lilypond
2769
2770 この定義済みコマンドの音楽関数は、譜コンテキストやタブ譜コンテキストの@c
2771 和音の内外で使用して、符頭を×の形にすることができます:
2772
2773 @lilypond[verbatim,quote,relative=2]
2774 c4 b
2775 \xNote { e f }
2776 c b < g \xNote c f > b
2777 @end lilypond
2778
2779 @code{\xNote}, @code{\xNotesOn} それに @code{\xNotesOff} の同義語として
2780 @code{\deadNote}, @code{\deadNotesOn} それに @code{\deadNotesOff} を@c
2781 使用することができます。@c
2782 @notation{dead note} という用語はギタリストが一般的に使用します。
2783
2784 また、和音の中でのみ使用できるダイアモンド形のための短縮記法があります:
2785
2786 @lilypond[verbatim,quote,relative=2]
2787 <c f\harmonic>2 <d a'\harmonic>4 <c g'\harmonic>
2788 @end lilypond
2789
2790 @predefined
2791 @code{\harmonic},
2792 @code{\xNotesOn},
2793 @code{\xNotesOff},
2794 @code{\xNote}.
2795 @endpredefined
2796
2797 @seealso
2798 コード断片集:
2799 @rlsrnamed{Pitches,ピッチ}
2800
2801 記譜法リファレンス:
2802 @ref{Note head styles},
2803 @ref{Chorded notes},
2804 @ref{Indicating harmonics and dampened notes}
2805
2806 内部リファレンス:
2807 @rinternals{note-event},
2808 @rinternals{Note_heads_engraver},
2809 @rinternals{Ledger_line_engraver},
2810 @rinternals{NoteHead},
2811 @rinternals{LedgerLineSpanner},
2812 @rinternals{note-head-interface},
2813 @rinternals{ledger-line-spanner-interface}
2814
2815
2816 @node 演奏を容易にする記譜法の符頭
2817 @unnumberedsubsubsec 演奏を容易にする記譜法の符頭
2818 @translationof Easy notation note heads
2819
2820 @cindex note heads, practice (練習のための符頭)
2821 @cindex practice note heads (練習のための符頭)
2822 @cindex note heads, easy notation (演奏を容易にする記譜法の符頭)
2823 @cindex easy notation (演奏を容易にする記譜法)
2824 @cindex Hal Leonard
2825 @cindex beginners' music (初心者のための楽譜)
2826 @cindex music, beginners' (初心者のための楽譜)
2827 @cindex easy play note heads (演奏を容易にする符頭)
2828 @cindex note heads, easy play (演奏を容易にする符頭)
2829
2830 @funindex \easyHeadsOn
2831 @funindex easyHeadsOn
2832 @funindex \easyHeadsOff
2833 @funindex easyHeadsOff
2834
2835 @q{演奏を容易にする} 符頭は、符頭の中に音符名を含みます。@c
2836 これは、初心者のための楽譜で使用されます。@c
2837 文字を読みやすくするために、大きなフォント サイズで譜刻すべきです。@c
2838 大きなフォントで譜刻する方法は、@c
2839 @ref{Setting the staff size} を参照してください。
2840
2841 @lilypond[verbatim,quote]
2842 #(set-global-staff-size 26)
2843 \relative c' {
2844   \easyHeadsOn
2845   c2 e4 f
2846   g1
2847   \easyHeadsOff
2848   c,1
2849 }
2850 @end lilypond
2851
2852
2853 @predefined
2854 @code{\easyHeadsOn},
2855 @code{\easyHeadsOff}
2856 @endpredefined
2857
2858
2859 @snippets
2860
2861 @lilypondfile[verbatim,quote,texidoc,doctitle]
2862 {numbers-as-easy-note-heads.ly}
2863
2864 @seealso
2865 記譜法リファレンス:
2866 @ref{Setting the staff size}
2867
2868 コード断片集:
2869 @rlsrnamed{Pitches,ピッチ}
2870
2871 内部リファレンス:
2872 @rinternals{note-event},
2873 @rinternals{Note_heads_engraver},
2874 @rinternals{NoteHead},
2875 @rinternals{note-head-interface}
2876
2877
2878 @node シェイプ符頭
2879 @unnumberedsubsubsec シェイプ符頭
2880 @translationof Shape note heads
2881
2882 @cindex note heads, shape (シェイプ符頭)
2883 @cindex note heads, Aiken (Aiken の符頭)
2884 @cindex note heads, sacred harp (セイクリッド ハープの符頭)
2885 @cindex shape notes (シェイプ ノート)
2886 @cindex Aiken shape note heads (Aiken のシェイプ符頭)
2887 @cindex sacred harp note heads (セイクリッド ハープの符頭)
2888 @cindex note heads, Southern Harmony
2889 @cindex Southern Harmony note heads
2890 @cindex Funk shape note heads
2891 @cindex note heads, Funk
2892 @cindex note heads, Harmonica Sacra
2893 @cindex Harmonica Sacra note heads
2894 @cindex Christian Harmony note heads
2895 @cindex note heads, Christian Harmony
2896 @cindex Walker shape note heads
2897 @cindex note heads, Walker
2898
2899 @funindex \aikenHeads
2900 @funindex aikenHeads
2901 @funindex \sacredHarpHeads
2902 @funindex sacredHarpHeads
2903 @funindex \southernHarmonyHeads
2904 @funindex southernHarmonyHeads
2905 @funindex \funkHeads
2906 @funindex funkHeads
2907 @funindex \walkerHeads
2908 @funindex walkerHeads
2909
2910 シェイプ ノート記譜法では、@c
2911 符頭の形状は音階の中での音符の位置付けに対応します。@c
2912 この表記は 19 世紀のアメリカの歌集で一般的なものです。@c
2913 シェイプ符頭はセイクリッド ハープ、Southern Harmony、@c
2914 Funk (Harmonica Sacra)、Walker、それに Aiken (Christian Harmony) スタイルで@c
2915 使用されます:
2916
2917 @lilypond[verbatim,quote,relative=2]
2918 \aikenHeads
2919 c, d e f g2 a b1 c \break
2920 \sacredHarpHeads
2921 c,4 d e f g2 a b1 c \break
2922 \southernHarmonyHeads
2923 c,4 d e f g2 a b1 c \break
2924 \funkHeads
2925 c,4 d e f g2 a b1 c \break
2926 \walkerHeads
2927 c,4 d e f g2 a b1 c \break
2928 @end lilypond
2929
2930 @funindex \key
2931 @funindex key
2932 @funindex \aikenHeadsMinor
2933 @funindex aikenHeadsMinor
2934 @funindex \sacredHarpHeadsMinor
2935 @funindex sacredHarpHeadsMinor
2936 @funindex \southernHarmonyHeadsMinor
2937 @funindex southernHarmonyHeadsMinor
2938 @funindex \funkHeadsMinor
2939 @funindex funkHeadsMinor
2940 @funindex \walkerHeadsMinor
2941 @funindex walkerHeadsMinor
2942
2943 符頭の形状は音階の中での位置に対応し、@c
2944 音階のベースは @code{\key} コマンドによって決まります。@c
2945 マイナーで記述している場合、@c
2946 符頭の形状を決定する音階ステップはメジャーの場合との相対関係になります:
2947
2948 @lilypond[verbatim,quote,relative=2]
2949 \key a \minor
2950 \aikenHeads
2951 a b c d e2 f g1 a \break
2952 \aikenHeadsMinor
2953 a,4 b c d e2 f g1 a \break
2954 \sacredHarpHeadsMinor
2955 a,2 b c d \break
2956 \southernHarmonyHeadsMinor
2957 a2 b c d \break
2958 \funkHeadsMinor
2959 a2 b c d \break
2960 \walkerHeadsMinor
2961 a2 b c d \break
2962
2963 @end lilypond
2964
2965 @predefined
2966 @code{\aikenHeads},
2967 @code{\aikenHeadsMinor},
2968 @code{\funkHeads},
2969 @code{\funkHeadsMinor},
2970 @code{\sacredHarpHeads},
2971 @code{\sacredHarpHeadsMinor},
2972 @code{\southernHarmonyHeads},
2973 @code{\southernHarmonyHeadsMinor},
2974 @code{\walkerHeads},
2975 @code{\walkerHeadsMinor}
2976 @endpredefined
2977
2978 @snippets
2979
2980 @lilypondfile[verbatim,quote,texidoc,doctitle]
2981 {applying-note-head-styles-depending-on-the-step-of-the-scale.ly}
2982
2983 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。
2984
2985 @seealso
2986 コード断片集:
2987 @rlsrnamed{Pitches,ピッチ}
2988
2989 記譜法リファレンス:
2990 @ref{Note head styles}
2991
2992 内部リファレンス:
2993 @rinternals{note-event},
2994 @rinternals{Note_heads_engraver},
2995 @rinternals{NoteHead},
2996 @rinternals{note-head-interface}
2997
2998
2999 @node 即興
3000 @unnumberedsubsubsec 即興
3001 @translationof Improvisation
3002
3003 @cindex improvisation (即興)
3004 @cindex slashed note heads (スラッシュ形の符頭)
3005 @cindex note heads, improvisation (即興の符頭)
3006 @cindex note heads, slashed (スラッシュ形の符頭)
3007
3008 @funindex \improvisationOn
3009 @funindex improvisationOn
3010 @funindex \improvisationOff
3011 @funindex improvisationOff
3012
3013 即興はしばしばスラッシュ形の符頭で記されます。@c
3014 そのような表記では、演奏者は好みのピッチを選ぶことができますが、@c
3015 指定されたリズムに従って演奏する必要があります。@c
3016 このような符頭は以下のようにして作成することができます:
3017
3018 @lilypond[verbatim,quote,relative=2]
3019 \new Voice \with {
3020   \consists "Pitch_squash_engraver"
3021 } {
3022   e8 e g a a16( bes) a8 g
3023   \improvisationOn
3024   e8 ~
3025   e2 ~ e8 f4 f8 ~
3026   f2
3027   \improvisationOff
3028   a16( bes) a8 g e
3029 }
3030 @end lilypond
3031
3032 @predefined
3033 @code{\improvisationOn},
3034 @code{\improvisationOff}
3035 @endpredefined
3036
3037 @seealso
3038 コード断片集:
3039 @rlsrnamed{Pitches,ピッチ}
3040
3041 内部リファレンス:
3042 @rinternals{Pitch_squash_engraver},
3043 @rinternals{Voice},
3044 @rinternals{RhythmicStaff}