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