]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/notation/pitches.itely
Fixed errors in Catalan translation
[lilypond.git] / Documentation / ja / notation / pitches.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2 @ignore
3     Translation of GIT committish: fabcd22c8f88ea9a87241597f1e48c0a9adbfc6e
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.17.18"
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} または @code{español}
477   @tab do re mi fa sol la sib si
478 @item @code{italiano} または @code{français}
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} または @code{español}
509   @tab -s @tab -b @tab -ss/-x @tab -bb
510 @item @code{italiano} または @code{français}
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} または @code{español}
565   @tab -cs @tab -cb @tab -tcs @tab -tcb
566 @item @code{italiano} または @code{français}
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 @subsubsubheading 様式的な移調
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 @subsubsubheading 様式的な反転
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 optional octave transposition
1153 @cindex octave transposition, optional
1154 @cindex choral tenor clef
1155 @cindex tenor clef, choral
1156
1157 音部名に @code{_8} または @code{^8} を付け加えることによって、@c
1158 音部はそれぞれ 1 オクターブ下/上に移調され、@c
1159 @code{_15} または @code{^15} によって 2 オクターブ移調されます。@c
1160 音部名にアルファベット以外の文字が含まれる場合、@c
1161 音部名をダブル クォートで囲む必要があります。
1162
1163 @lilypond[verbatim,quote,relative=1]
1164 \clef treble
1165 c2 c
1166 \clef "treble_8"
1167 c2 c
1168 \clef "bass^15"
1169 c2 c
1170 \clef "alto_2"
1171 c2 c
1172 \clef "G_8"
1173 c2 c
1174 \clef "F^5"
1175 c2 c
1176 @end lilypond
1177
1178 数字の引数を括弧や角括弧で囲むことで、オプションのオクターブを@c
1179 表示させることができます:
1180
1181 @lilypond[verbatim,quote,relative=1]
1182 \clef "treble_(8)"
1183 c2 c
1184 \clef "bass^[15]"
1185 c2 c
1186 @end lilypond
1187
1188 ピッチは数字の引数が括弧で囲まれていない場合と同じです。
1189
1190 特殊な音部記号については @ref{Mensural clefs},
1191 @ref{Gregorian clefs}, @ref{Default tablatures}, それに
1192 @ref{Custom tablatures} で説明します。@c
1193 楽譜の中で合図音符を使用するときに音部記号を変更する場合は、@c
1194 @ref{Formatting cue notes} の @code{\cueClef} 関数と
1195 @code{\cueDuringWithClef} 関数を参照してください。
1196
1197 @snippets
1198
1199 @lilypondfile[verbatim,quote,texidoc,doctitle]
1200 {tweaking-clef-properties.ly}
1201
1202 @seealso
1203 記譜法リファレンス:
1204 @ref{Mensural clefs},
1205 @ref{Gregorian clefs},
1206 @ref{Default tablatures},
1207 @ref{Custom tablatures},
1208 @ref{Formatting cue notes}
1209
1210 コード断片集:
1211 @rlsrnamed{Pitches,ピッチ}
1212
1213 内部リファレンス:
1214 @rinternals{Clef_engraver},
1215 @rinternals{Clef},
1216 @rinternals{ClefModifier},
1217 @rinternals{clef-interface}
1218
1219 @knownissues
1220 音部記号に付けるオクターブ移動の数字は、個別のグラフィカル オブジェクト@c
1221 として扱われます。@c
1222 このため、@var{Clef} に適用される @code{\override} は、@c
1223 別の @code{\override} で @var{ClefModifier} グラフィカル オブジェクトに@c
1224 適用する必要があります。
1225
1226 @lilypond[fragment,quote,relative=1]
1227 \new Staff \with {
1228   \override ClefModifier.color = #red
1229   \override Clef.color = #blue
1230 }
1231
1232 \clef "treble_8" c4
1233 @end lilypond
1234
1235
1236 @node 調号
1237 @unnumberedsubsubsec 調号
1238 @translationof Key signature
1239
1240 @cindex key signature (調号)
1241
1242 @funindex \key
1243 @funindex key
1244
1245 @c duplicated in Key signature and Accidentals
1246 @warning{LilyPond を始めたばかりのユーザは@c
1247 しばしば臨時記号と調号のことで混乱します。@c
1248 LilyPond では、音符名は未加工の入力です。@c
1249 調号と音部記号がこの未加工の入力をどのように表示するかを決定します。@c
1250 @code{c} のような変更を加えられていない音符は、調号や音部記号とは無関係に、@c
1251 @q{C ナチュラル} を意味します。@c
1252 更なる情報は、@rlearning{Accidentals and key signatures} を参照してください。}
1253
1254 調号は楽曲を演奏すべき調性を示します。@c
1255 調号は譜の先頭で変更記号 (フラットやシャープ) のセットによって示されます。@c
1256 調号は変更されることがあります:
1257
1258 @example
1259 \key @var{pitch} @var{mode}
1260 @end example
1261
1262 @funindex \major
1263 @funindex major
1264 @funindex \minor
1265 @funindex minor
1266 @funindex \ionian
1267 @funindex ionian
1268 @funindex \locrian
1269 @funindex locrian
1270 @funindex \aeolian
1271 @funindex aeolian
1272 @funindex \mixolydian
1273 @funindex mixolydian
1274 @funindex \lydian
1275 @funindex lydian
1276 @funindex \phrygian
1277 @funindex phrygian
1278 @funindex \dorian
1279 @funindex dorian
1280
1281 @cindex church modes (チャーチ モード)
1282 @cindex modes (モード)
1283 @cindex major (メジャー)
1284 @cindex minor (マイナー)
1285 @cindex ionian (アイオニアン)
1286 @cindex locrian (ロクリアン)
1287 @cindex aeolian (エオリアン)
1288 @cindex mixolydian (ミクソリディアン)
1289 @cindex lydian (リディアン)
1290 @cindex phrygian (フリジアン)
1291 @cindex dorian (ドリアン)
1292
1293 @noindent
1294
1295 調号を @code{@var{pitch}}-メジャーや @code{@var{pitch}}-マイナーにするには、@c
1296 @code{@var{mode}} をそれぞれ @code{\major} または @code{\minor} にします。@c
1297 さらに標準のモード名
1298  -- @notation{チャーチ モード} とも呼ばれます --
1299 を使うこともできます:
1300 @code{\ionian}, @code{\dorian}, @code{\phrygian}, @code{\lydian},
1301 @code{\mixolydian}, @code{\aeolian} それに @code{\locrian} です。
1302
1303 @lilypond[verbatim,quote,relative=2]
1304 \key g \major
1305 fis1
1306 f
1307 fis
1308 @end lilypond
1309
1310 新たにモードを定義することができます
1311 -- モードが C で始まる場合、C で始まる音階の各ステップに対する@c
1312 変更記号をリスト アップします。
1313
1314 @lilypond[verbatim,quote]
1315 freygish = #`((0 . ,NATURAL) (1 . ,FLAT) (2 . ,NATURAL)
1316     (3 . ,NATURAL) (4 . ,NATURAL) (5 . ,FLAT) (6 . ,FLAT))
1317
1318 \relative c' {
1319   \key c\freygish c4 des e f
1320   \bar "||" \key d\freygish d es fis g
1321 }
1322 @end lilypond
1323
1324 @code{KeySignature} のプロパティ @code{flat-positions} と
1325 @code{sharp-positions} を用いて、調号の臨時記号を通常とは異なる@c
1326 オクターブに表示させたり、複数のオクターブに表示させることができます。@c
1327 これらのプロパティに渡される値は、臨時記号を表示させる譜ポジションの@c
1328 範囲を指定します。@c
1329 1 つの値だけを渡した場合、その譜ポジションで終了するオクターブの範囲@c
1330 に臨時記号が配置されます。
1331
1332 @lilypond[verbatim, quote,relative=0]
1333 \override Staff.KeySignature.flat-positions = #'((-5 . 5))
1334 \override Staff.KeyCancellation.flat-positions = #'((-5 . 5))
1335 \clef bass \key es\major es g bes d
1336 \clef treble \bar "||" \key es\major es g bes d
1337
1338 \override Staff.KeySignature.sharp-positions = #'(2)
1339 \bar "||" \key b\major b fis b2
1340 @end lilypond
1341
1342 @snippets
1343
1344 @lilypondfile[verbatim,quote,texidoc,doctitle]
1345 {preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly}
1346
1347 @lilypondfile[verbatim,quote,texidoc,doctitle]
1348 {non-traditional-key-signatures.ly}
1349
1350 @seealso
1351 音楽用語集:
1352 @rglos{church mode},
1353 @rglos{scordatura}
1354
1355 学習マニュアル:
1356 @rlearning{Accidentals and key signatures}
1357
1358 コード断片集:
1359 @rlsrnamed{Pitches,ピッチ}
1360
1361 内部リファレンス:
1362 @rinternals{KeyChangeEvent},
1363 @rinternals{Key_engraver},
1364 @rinternals{Key_performer},
1365 @rinternals{KeyCancellation},
1366 @rinternals{KeySignature},
1367 @rinternals{key-signature-interface}
1368
1369
1370 @node オッターバ囲み
1371 @unnumberedsubsubsec オッターバ囲み
1372 @translationof Ottava brackets
1373
1374 @cindex ottava (オッターバ)
1375 @cindex 15ma
1376 @cindex 8va
1377 @cindex 8ve
1378 @cindex octavation (オクタベーション)
1379
1380 @funindex set-octavation
1381 @funindex \ottava
1382 @funindex ottava
1383
1384 @notation{オッターバ囲み} は譜をオクターブ単位で移調します:
1385
1386 @lilypond[verbatim,quote,relative=2]
1387 a2 b
1388 \ottava #-2
1389 a2 b
1390 \ottava #-1
1391 a2 b
1392 \ottava #0
1393 a2 b
1394 \ottava #1
1395 a2 b
1396 \ottava #2
1397 a2 b
1398 @end lilypond
1399
1400 @snippets
1401
1402 @lilypondfile[verbatim,quote,texidoc,doctitle]
1403 {ottava-text.ly}
1404
1405 @seealso
1406 音楽用語集:
1407 @rglos{octavation}
1408
1409 コード断片集:
1410 @rlsrnamed{Pitches,ピッチ}
1411
1412 内部リファレンス:
1413 @rinternals{Ottava_spanner_engraver},
1414 @rinternals{OttavaBracket},
1415 @rinternals{ottava-bracket-interface}
1416
1417
1418 @node 楽器の移調
1419 @unnumberedsubsubsec 楽器の移調
1420 @translationof Instrument transpositions
1421
1422 @cindex transposition, MIDI (MIDI の移調)
1423 @cindex transposition, instrument (楽器の移調)
1424 @cindex transposing instrument (移調楽器)
1425 @cindex MIDI
1426 @cindex MIDI transposition (MIDI の移調)
1427
1428 @funindex \transposition
1429 @funindex transposition
1430
1431 楽器の移調を含む楽器を譜刻するとき、いくつかのパートは@c
1432 @notation{コンサート ピッチ} とは異なるピッチで譜刻される可能性があります。@c
1433 このような場合、@notation{移調楽器} の調を指定すべきです。@c
1434 指定しなければ MIDI 出力や他のパートの出だしのピッチは誤ったものになります。@c
1435 引用についての更なる情報は @ref{Quoting other voices} を参照してください。
1436
1437 @example
1438 \transposition @var{pitch}
1439 @end example
1440
1441 @code{\transposition} で使用するピッチは、@c
1442 譜に書かれた @code{c'} をその移調楽器で演奏したときに聴こえる@c
1443 実際の音に対応したものであるべきです。@c
1444 このピッチは絶対モードで入力します。@c
1445 ですから、楽譜よりも 1 度高い音を出す楽器は
1446 @w{@code{\transposition d'}} を使うべきです。@c
1447 @code{\transposition} は、ピッチがコンサート ピッチでは @emph{ない} ピッチで@c
1448 入力されている場合に @emph{のみ} 使用すべきです。
1449
1450 バイオリンと B-フラットのクラリネットのための音符をいくつか挙げます。@c
1451 それぞれのパートは、それぞれが指揮譜に刻譜されるときに使用される@c
1452 音符と調を使って入力されています。@c
1453 2 つの楽器は斉奏で演奏しています。
1454
1455 @lilypond[verbatim,quote]
1456 \new GrandStaff <<
1457   \new Staff = "violin" {
1458     \relative c'' {
1459       \set Staff.instrumentName = #"Vln"
1460       \set Staff.midiInstrument = #"violin"
1461       % not strictly necessary, but a good reminder
1462       \transposition c'
1463
1464       \key c \major
1465       g4( c8) r c r c4
1466     }
1467   }
1468   \new Staff = "clarinet" {
1469     \relative c'' {
1470       \set Staff.instrumentName = \markup { Cl (B\flat) }
1471       \set Staff.midiInstrument = #"clarinet"
1472       \transposition bes
1473
1474       \key d \major
1475       a4( d8) r d r d4
1476     }
1477   }
1478 >>
1479 @end lilypond
1480
1481 @code{\transposition} は楽曲の途中で変更されることもあります。@c
1482 例えば、クラリネット奏者は A のクラリネットから B-フラットのクラリネットに@c
1483 持ち替えることがあります。
1484
1485 @lilypond[verbatim,quote,relative=2]
1486 \set Staff.instrumentName = #"Cl (A)"
1487 \key a \major
1488 \transposition a
1489 c d e f
1490 \textLengthOn
1491 <>^\markup { Switch to B\flat clarinet }
1492 R1
1493
1494 \key bes \major
1495 \transposition bes
1496 c2 g
1497 @end lilypond
1498
1499 @seealso
1500 音楽用語集:
1501 @rglos{concert pitch},
1502 @rglos{transposing instrument}
1503
1504 記譜法リファレンス:
1505 @ref{Quoting other voices},
1506 @ref{Transpose}
1507
1508 コード断片集:
1509 @rlsrnamed{Pitches,ピッチ}
1510
1511
1512 @node 自動臨時記号
1513 @unnumberedsubsubsec 自動臨時記号
1514 @translationof Automatic accidentals
1515
1516 @cindex accidental style (臨時記号スタイル)
1517 @cindex accidental style, default (デフォルトの臨時記号スタイル)
1518 @cindex accidentals (臨時記号)
1519 @cindex accidentals, automatic (自動臨時記号)
1520 @cindex automatic accidentals (自動臨時記号)
1521 @cindex default accidental style (デフォルトの臨時記号スタイル)
1522
1523 @funindex \accidentalStyle
1524 @funindex voice
1525 @funindex default
1526
1527 臨時記号の譜刻の仕方には多くの異なる規約があります。@c
1528 LilyPond はどの臨時記号スタイルを使用するのかを指定するための関数を@c
1529 提供します。@c
1530 この関数は以下のように呼び出されます:
1531
1532 @example
1533 \new Staff <<
1534   \accidentalStyle voice
1535   @{ @dots{} @}
1536 >>
1537 @end example
1538
1539 指定された臨時記号スタイルは、デフォルトでは、カレントの @code{Staff} に@c
1540 適用されます
1541 (スタイル @code{piano} と @code{piano-cautionary} は例外です。@c
1542 これらは以下で説明します)。@c
1543 オプションとして、この関数は 2 つ目の引数をとることができ、@c
1544 それによってスタイルを変更すべき範囲 (スコープ) を指定できます。@c
1545 例えば、カレントの @code{StaffGroup} のすべての譜で同じスタイルを使うには、@c
1546 以下のようにします:
1547
1548 @example
1549 \accidentalStyle StaffGroup.voice
1550 @end example
1551
1552 サポートされる臨時記号スタイルを以下で示します。@c
1553 それぞれのスタイルを実際に示すために、以下の例を使用します:
1554
1555 @lilypond[verbatim,quote]
1556 musicA = {
1557   <<
1558     \relative c' {
1559       cis'8 fis, bes4 <a cis>8 f bis4 |
1560       cis2. <c, g'>4 |
1561     }
1562     \\
1563     \relative c' {
1564       ais'2 cis, |
1565       fis8 b a4 cis2 |
1566     }
1567   >>
1568 }
1569
1570 musicB = {
1571   \clef bass
1572   \new Voice {
1573     \voiceTwo \relative c' {
1574       <fis, a cis>8[ <fis a cis>
1575       \change Staff = up
1576       cis' cis
1577       \change Staff = down
1578       <fis, a> <fis a>]
1579       \showStaffSwitch
1580       \change Staff = up
1581       dis'4 |
1582       \change Staff = down
1583       <fis, a cis>4 gis <f a d>2 |
1584     }
1585   }
1586 }
1587
1588 \new PianoStaff {
1589   <<
1590     \context Staff = "up" {
1591       \accidentalStyle default
1592       \musicA
1593     }
1594     \context Staff = "down" {
1595       \accidentalStyle default
1596       \musicB
1597     }
1598   >>
1599 }
1600 @end lilypond
1601
1602 両方の譜で同じ臨時記号スタイルを使うのなら、@c
1603 この例の最後のブロックを以下で置き換えられます:
1604
1605 @example
1606 \new PianoStaff @{
1607   <<
1608     \context Staff = "up" @{
1609       %%% 次の行を変更したいスタイルに合わせて変更してください:
1610       \accidentalStyle Score.default
1611       \musicA
1612     @}
1613     \context Staff = "down" @{
1614       \musicB
1615     @}
1616   >>
1617 @}
1618 @end example
1619
1620
1621 @c don't use verbatim in this table.
1622 @table @code
1623 @item default
1624
1625 @cindex default accidental style (default 臨時記号スタイル)
1626 @cindex accidental style, default (default 臨時記号スタイル)
1627
1628 @funindex default
1629
1630 これはデフォルトの譜刻の仕方です。@c
1631 これは 18 世紀の一般的な習慣と一致します:
1632 臨時記号が有効なのは、その臨時記号が発生した小節の終わりまでで、@c
1633 かつ、その臨時記号が発生したオクターブの中だけです。@c
1634 そのため以下の例の中では、第 2 小節の @code{b} や最後の @code{c} の前には@c
1635 ナチュラル記号は譜刻されていません:
1636
1637 @lilypond[quote]
1638 musicA = {
1639   <<
1640     \relative c' {
1641       cis'8 fis, bes4 <a cis>8 f bis4 |
1642       cis2. <c, g'>4 |
1643     }
1644     \\
1645     \relative c' {
1646       ais'2 cis, |
1647       fis8 b a4 cis2 |
1648     }
1649   >>
1650 }
1651
1652 musicB = {
1653   \clef bass
1654   \new Voice {
1655     \voiceTwo \relative c' {
1656       <fis, a cis>8[ <fis a cis>
1657       \change Staff = up
1658       cis' cis
1659       \change Staff = down
1660       <fis, a> <fis a>]
1661       \showStaffSwitch
1662       \change Staff = up
1663       dis'4 |
1664       \change Staff = down
1665       <fis, a cis>4 gis <f a d>2 |
1666     }
1667   }
1668 }
1669
1670 \new PianoStaff {
1671   <<
1672     \context Staff = "up" {
1673       \accidentalStyle default
1674       \musicA
1675     }
1676     \context Staff = "down" {
1677       \accidentalStyle default
1678       \musicB
1679     }
1680   >>
1681 }
1682 @end lilypond
1683
1684 @item voice
1685
1686 @cindex accidental style, voice (voice 臨時記号スタイル)
1687 @cindex voice accidental style (voice 臨時記号スタイル)
1688 @cindex accidental style, modern (modern 臨時記号スタイル)
1689 @cindex modern accidental style (modern 臨時記号スタイル)
1690 @cindex accidental style, modern-cautionary (modern-cautionary 臨時記号スタイル)
1691 @cindex modern-cautionary accidental style (modern-cautionary 臨時記号スタイル)
1692
1693 @funindex voice
1694
1695 通常の臨時記号の付け方では、臨時記号は @code{Staff} レベルで保持されます。@c
1696 しかしながらこのスタイルでは、臨時記号はそれぞれのボイスで別々に譜刻されます。@c
1697 それを除けば、このスタイルの規則は @code{default} と同じです。
1698
1699 結果として、あるボイスからの臨時記号は他のボイスでキャンセルされず、@c
1700 これはしばしば望まない結果となります:
1701 以下の例では、2 番目の @code{a} をナチュラルで演奏するか、@c
1702 シャープで演奏するかを決定するのは困難です。@c
1703 そのため、@code{voice} オプションは、それぞれのボイスが別々の演奏者によって@c
1704 個々に読まれる場合にのみ使用すべきです。@c
1705 譜が 1 人の演奏者によって使用される場合 (例えば、指揮者やピアノ譜の場合)、@c
1706 このスタイルの代わりに @code{modern} や @code{modern-cautionary} を@c
1707 使用すべきです。
1708
1709 @lilypond[quote]
1710 musicA = {
1711   <<
1712     \relative c' {
1713       cis'8 fis, bes4 <a cis>8 f bis4 |
1714       cis2. <c, g'>4 |
1715     }
1716     \\
1717     \relative c' {
1718       ais'2 cis, |
1719       fis8 b a4 cis2 |
1720     }
1721   >>
1722 }
1723
1724 musicB = {
1725   \clef bass
1726   \new Voice {
1727     \voiceTwo \relative c' {
1728       <fis, a cis>8[ <fis a cis>
1729       \change Staff = up
1730       cis' cis
1731       \change Staff = down
1732       <fis, a> <fis a>]
1733       \showStaffSwitch
1734       \change Staff = up
1735       dis'4 |
1736       \change Staff = down
1737       <fis, a cis>4 gis <f a d>2 |
1738     }
1739   }
1740 }
1741
1742 \new PianoStaff {
1743   <<
1744     \context Staff = "up" {
1745       \accidentalStyle voice
1746       \musicA
1747     }
1748     \context Staff = "down" {
1749       \accidentalStyle voice
1750       \musicB
1751     }
1752   >>
1753 }
1754 @end lilypond
1755
1756 @item modern
1757
1758 @cindex accidentals, modern style (modern 臨時記号スタイル)
1759 @cindex modern style accidentals (modern 臨時記号スタイル)
1760
1761 @funindex modern
1762
1763 この規則は 20 世紀の一般的な臨時記号の付け方と一致します:
1764 この規則はいくつかの余分なナチュラル記号を省略します
1765 -- 伝統的にダブル シャープの後のシャープに前置されるナチュラル記号と、@c
1766 ダブル フラットの後のフラットに前置されるナチュラル記号を省略します。@c
1767
1768 @code{modern} 規則の臨時記号の付け方は @code{default} とほぼ同じですが、@c
1769 あいまいさを避けるための 2 つの規則が追加されます
1770  -- 一時的な臨時記号が使われると、
1771 その後の小節で (同じオクターブにある音符に対して) キャンセル記号が@c
1772 譜刻され、@c
1773 臨時記号が使われた小節では他のオクターブにある音符にもキャンセル記号が@c
1774 譜刻されます。@c
1775 そのため、上部譜の第 2 小節の中にある @code{b} と @code{c} の前には@c
1776 ナチュラルが付けられています:
1777
1778 @lilypond[quote]
1779 musicA = {
1780   <<
1781     \relative c' {
1782       cis'8 fis, bes4 <a cis>8 f bis4 |
1783       cis2. <c, g'>4 |
1784     }
1785     \\
1786     \relative c' {
1787       ais'2 cis, |
1788       fis8 b a4 cis2 |
1789     }
1790   >>
1791 }
1792
1793 musicB = {
1794   \clef bass
1795   \new Voice {
1796     \voiceTwo \relative c' {
1797       <fis, a cis>8[ <fis a cis>
1798       \change Staff = up
1799       cis' cis
1800       \change Staff = down
1801       <fis, a> <fis a>]
1802       \showStaffSwitch
1803       \change Staff = up
1804       dis'4 |
1805       \change Staff = down
1806       <fis, a cis>4 gis <f a d>2 |
1807     }
1808   }
1809 }
1810
1811 \new PianoStaff {
1812   <<
1813     \context Staff = "up" {
1814       \accidentalStyle modern
1815       \musicA
1816     }
1817     \context Staff = "down" {
1818       \accidentalStyle modern
1819       \musicB
1820     }
1821   >>
1822 }
1823 @end lilypond
1824
1825 @item modern-cautionary
1826
1827 @cindex accidentals, modern cautionary style (modern-cautionary 臨時記号スタイル)
1828 @cindex modern accidental style (modern 臨時記号スタイル)
1829 @cindex modern cautionary accidental style (modern-cautionary 臨時記号スタイル)
1830 @cindex modern style accidentals (modern 臨時記号スタイル)
1831 @cindex modern style cautionary accidentals (modern-cautionary 臨時記号スタイル)
1832
1833 @funindex modern-cautionary
1834
1835 この規則は @code{modern} と似ていますが、@c
1836 忠告的臨時記号として @q{追加の} 臨時記号が譜刻されます
1837 (これは @code{default} では譜刻されません)。@c
1838 デフォルトでは、この臨時記号は括弧で囲まれて譜刻されますが、@c
1839 @code{AccidentalSuggestion} の @code{cautionary-style} プロパティを@c
1840 定義することによって小さなサイズで譜刻されることもあり得ます。
1841
1842 @lilypond[quote]
1843 musicA = {
1844   <<
1845     \relative c' {
1846       cis'8 fis, bes4 <a cis>8 f bis4 |
1847       cis2. <c, g'>4 |
1848     }
1849     \\
1850     \relative c' {
1851       ais'2 cis, |
1852       fis8 b a4 cis2 |
1853     }
1854   >>
1855 }
1856
1857 musicB = {
1858   \clef bass
1859   \new Voice {
1860     \voiceTwo \relative c' {
1861       <fis, a cis>8[ <fis a cis>
1862       \change Staff = up
1863       cis' cis
1864       \change Staff = down
1865       <fis, a> <fis a>]
1866       \showStaffSwitch
1867       \change Staff = up
1868       dis'4 |
1869       \change Staff = down
1870       <fis, a cis>4 gis <f a d>2 |
1871     }
1872   }
1873 }
1874
1875 \new PianoStaff {
1876   <<
1877     \context Staff = "up" {
1878       \accidentalStyle modern-cautionary
1879       \musicA
1880     }
1881     \context Staff = "down" {
1882       \accidentalStyle modern-cautionary
1883       \musicB
1884     }
1885   >>
1886 }
1887 @end lilypond
1888
1889 @item modern-voice
1890
1891 @cindex accidental style, modern (modern 臨時記号スタイル)
1892 @cindex accidentals, modern (modern 臨時記号)
1893 @cindex accidentals, multivoice (マルチボイス臨時記号)
1894 @cindex modern accidental style (modern 臨時記号スタイル)
1895 @cindex modern accidentals (modern 臨時記号)
1896 @cindex multivoice accidentals (マルチボイス)
1897
1898 @funindex modern-voice
1899
1900 この規則はマルチボイス臨時記号として使用されます。@c
1901 演奏家が複数のボイスの中の 1 つのボイスを演奏する場合にも、@c
1902 すべてのボイスを演奏する場合にも使用されます。@c
1903 臨時記号はそれぞれのボイスに対して譜刻されますが、@c
1904 同じ @code{Staff} の中であってもボイスをまたいで@emph{キャンセルされます}。@c
1905 そのため、最後の小節で @code{a} がキャンセルされています
1906  -- なぜなら、前のキャンセルは異なるボイスで行われたからです。@c
1907 さらに下部譜では @code{d} がキャンセルされています
1908  -- その臨時記号は前の小節の異なるボイスで付けられたものだからです:
1909
1910 @lilypond[quote]
1911 musicA = {
1912   <<
1913     \relative c' {
1914       cis'8 fis, bes4 <a cis>8 f bis4 |
1915       cis2. <c, g'>4 |
1916     }
1917     \\
1918     \relative c' {
1919       ais'2 cis, |
1920       fis8 b a4 cis2 |
1921     }
1922   >>
1923 }
1924
1925 musicB = {
1926   \clef bass
1927   \new Voice {
1928     \voiceTwo \relative c' {
1929       <fis, a cis>8[ <fis a cis>
1930       \change Staff = up
1931       cis' cis
1932       \change Staff = down
1933       <fis, a> <fis a>]
1934       \showStaffSwitch
1935       \change Staff = up
1936       dis'4 |
1937       \change Staff = down
1938       <fis, a cis>4 gis <f a d>2 |
1939     }
1940   }
1941 }
1942
1943 \new PianoStaff {
1944   <<
1945     \context Staff = "up" {
1946       \accidentalStyle modern-voice
1947       \musicA
1948     }
1949     \context Staff = "down" {
1950       \accidentalStyle modern-voice
1951       \musicB
1952     }
1953   >>
1954 }
1955 @end lilypond
1956
1957 @cindex accidental style, cautionary, modern voice (modern-voice-cautionary 臨時記号スタイル)
1958 @cindex accidental style, modern voice cautionary (modern-voice-cautionary 臨時記号スタイル)
1959 @cindex accidental style, voice, modern cautionary (modern-voice-cautionary 臨時記号スタイル)
1960
1961 @funindex modern-voice-cautionary
1962
1963 @item modern-voice-cautionary
1964
1965 この規則は @code{modern-voice} と同じですが、追加の臨時記号
1966 (これは @code{voice} では譜刻されません)
1967 は忠告として譜刻されます。@c
1968 たとえ @code{default} で譜刻されるすべての臨時記号が@c
1969 この規則でも譜刻されたとしても、@c
1970 それらの臨時記号のいくつかは忠告として譜刻されます。
1971
1972 @lilypond[quote]
1973 musicA = {
1974   <<
1975     \relative c' {
1976       cis'8 fis, bes4 <a cis>8 f bis4 |
1977       cis2. <c, g'>4 |
1978     }
1979     \\
1980     \relative c' {
1981       ais'2 cis, |
1982       fis8 b a4 cis2 |
1983     }
1984   >>
1985 }
1986
1987 musicB = {
1988   \clef bass
1989   \new Voice {
1990     \voiceTwo \relative c' {
1991       <fis, a cis>8[ <fis a cis>
1992       \change Staff = up
1993       cis' cis
1994       \change Staff = down
1995       <fis, a> <fis a>]
1996       \showStaffSwitch
1997       \change Staff = up
1998       dis'4 |
1999       \change Staff = down
2000       <fis, a cis>4 gis <f a d>2 |
2001     }
2002   }
2003 }
2004
2005 \new PianoStaff {
2006   <<
2007     \context Staff = "up" {
2008       \accidentalStyle modern-voice-cautionary
2009       \musicA
2010     }
2011     \context Staff = "down" {
2012       \accidentalStyle modern-voice-cautionary
2013       \musicB
2014     }
2015   >>
2016 }
2017 @end lilypond
2018
2019 @item piano
2020
2021 @cindex accidental style, piano (ピアノ臨時記号スタイル)
2022 @cindex accidentals, piano (ピアノ臨時記号)
2023 @cindex piano accidental style (ピアノ臨時記号スタイル)
2024 @cindex piano accidentals (ピアノ臨時記号)
2025
2026 @funindex piano
2027
2028 この規則は 20 世紀のピアノ譜の臨時記号のつけ方を反映しています。@c
2029 このスタイルは @code{modern} スタイルと非常によく似ています。@c
2030 しかしながらこのスタイルでは、@c
2031 同じ @code{GrandStaff} または @code{PianoStaff} の中にある譜をまたがって@c
2032 臨時記号はキャンセルされます。@c
2033 そのため、最後の和音ではすべての音符でキャンセルが行われています。
2034
2035 この臨時記号スタイルは、@c
2036 デフォルトで、@code{GrandStaff} や @code{PianoStaff} に適用されます。
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
2075       \musicA
2076     }
2077     \context Staff = "down" {
2078       \musicB
2079     }
2080   >>
2081 }
2082 @end lilypond
2083
2084 @item piano-cautionary
2085
2086 @cindex accidentals, piano cautionary (piano-cautionary 臨時記号)
2087 @cindex cautionary accidentals, piano (piano-cautionary 臨時記号)
2088 @cindex piano cautionary accidentals (piano-cautionary 臨時記号)
2089 @cindex accidental style, piano cautionary (piano-cautionary 臨時記号スタイル)
2090 @cindex cautionary accidental style, piano (piano-cautionary 臨時記号スタイル)
2091 @cindex piano cautionary accidental style (piano-cautionary 臨時記号スタイル)
2092
2093 @funindex piano-cautionary
2094
2095 この規則は @code{piano} と同じですが、追加の臨時記号は忠告として譜刻されます。
2096
2097 @lilypond[quote]
2098 musicA = {
2099   <<
2100     \relative c' {
2101       cis'8 fis, bes4 <a cis>8 f bis4 |
2102       cis2. <c, g'>4 |
2103     }
2104     \\
2105     \relative c' {
2106       ais'2 cis, |
2107       fis8 b a4 cis2 |
2108     }
2109   >>
2110 }
2111
2112 musicB = {
2113   \clef bass
2114   \new Voice {
2115     \voiceTwo \relative c' {
2116       <fis, a cis>8[ <fis a cis>
2117       \change Staff = up
2118       cis' cis
2119       \change Staff = down
2120       <fis, a> <fis a>]
2121       \showStaffSwitch
2122       \change Staff = up
2123       dis'4 |
2124       \change Staff = down
2125       <fis, a cis>4 gis <f a d>2 |
2126     }
2127   }
2128 }
2129
2130 \new PianoStaff {
2131   <<
2132     \context Staff = "up" {
2133       \accidentalStyle piano-cautionary
2134       \musicA
2135     }
2136     \context Staff = "down" {
2137       \musicB
2138     }
2139   >>
2140 }
2141 @end lilypond
2142
2143 @item neo-modern
2144
2145 @cindex neo-modern accidental style (neo-modern 臨時記号スタイル)
2146 @cindex accidental style, neo-modern (neo-modern 臨時記号スタイル)
2147
2148 @funindex neo-modern
2149
2150 この規則は現代音楽での一般的な臨時記号の付け方を再現します:
2151 臨時記号は @code{modern} と同じように譜刻されますが、@c
2152 同じ小節の中で臨時記号を付けられた音符と同じ音符が再び現れた場合、@c
2153 その音符にも臨時記号が譜刻されます
2154  -- ただし、臨時記号を付けられた音符の直後に同じ音符が現れる場合は除きます
2155 (訳者: 第 1 小節の下部譜にある 2 つの @code{f} には@c
2156 両方とも臨時記号が譜刻されていますが、@c
2157 第 1 小節の上部譜にある 2 つのミドル C は連続しているため、@c
2158 後のミドル C には臨時記号が譜刻されません)。
2159
2160 @lilypond[quote]
2161 musicA = {
2162   <<
2163     \relative c' {
2164       cis'8 fis, bes4 <a cis>8 f bis4 |
2165       cis2. <c, g'>4 |
2166     }
2167     \\
2168     \relative c' {
2169       ais'2 cis, |
2170       fis8 b a4 cis2 |
2171     }
2172   >>
2173 }
2174
2175 musicB = {
2176   \clef bass
2177   \new Voice {
2178     \voiceTwo \relative c' {
2179       <fis, a cis>8[ <fis a cis>
2180       \change Staff = up
2181       cis' cis
2182       \change Staff = down
2183       <fis, a> <fis a>]
2184       \showStaffSwitch
2185       \change Staff = up
2186       dis'4 |
2187       \change Staff = down
2188       <fis, a cis>4 gis <f a d>2 |
2189     }
2190   }
2191 }
2192
2193 \new PianoStaff {
2194   <<
2195     \context Staff = "up" {
2196       \accidentalStyle neo-modern
2197       \musicA
2198     }
2199     \context Staff = "down" {
2200       \accidentalStyle neo-modern
2201       \musicB
2202     }
2203   >>
2204 }
2205 @end lilypond
2206
2207 @item neo-modern-cautionary
2208
2209 @cindex neo-modern-cautionary accidental style (neo-modern-cautionary 臨時記号スタイル)
2210 @cindex accidental style, neo-modern-cautionary (neo-modern-cautionary 臨時記号スタイル)
2211
2212 @funindex neo-modern-cautionary
2213
2214 この規則は @code{neo-modern} と似ていますが、@c
2215 追加の臨時記号は忠告の臨時記号として譜刻されます。
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-cautionary
2254       \musicA
2255     }
2256     \context Staff = "down" {
2257       \accidentalStyle neo-modern-cautionary
2258       \musicB
2259     }
2260   >>
2261 }
2262 @end lilypond
2263
2264 @item neo-modern-voice
2265
2266 @cindex neo-modern-voice accidental style (neo-modern-voice 臨時記号スタイル)
2267 @cindex accidental style, neo-modern-voice (neo-modern-voice 臨時記号スタイル)
2268
2269 @funindex neo-modern-voice
2270
2271 この規則は、1 つのボイスを演奏する音楽家とすべてのボイスを演奏する音楽家@c
2272 両方のための複数ボイスの臨時記号に使用されます。@c
2273 @code{neo-modern} と同様に、臨時記号は各ボイスに譜刻されますが、@c
2274 同じ @code{Staff} にあるボイスをまたがるとキャンセルされます。
2275
2276 @lilypond[quote]
2277 musicA = {
2278   <<
2279     \relative c' {
2280       cis'8 fis, bes4 <a cis>8 f bis4 |
2281       cis2. <c, g'>4 |
2282     }
2283     \\
2284     \relative c' {
2285       ais'2 cis, |
2286       fis8 b a4 cis2 |
2287     }
2288   >>
2289 }
2290
2291 musicB = {
2292   \clef bass
2293   \new Voice {
2294     \voiceTwo \relative c' {
2295       <fis, a cis>8[ <fis a cis>
2296       \change Staff = up
2297       cis' cis
2298       \change Staff = down
2299       <fis, a> <fis a>]
2300       \showStaffSwitch
2301       \change Staff = up
2302       dis'4 |
2303       \change Staff = down
2304       <fis, a cis>4 gis <f a d>2 |
2305     }
2306   }
2307 }
2308
2309 \new PianoStaff {
2310   <<
2311     \context Staff = "up" {
2312       \accidentalStyle neo-modern-voice
2313       \musicA
2314     }
2315     \context Staff = "down" {
2316       \accidentalStyle neo-modern-voice
2317       \musicB
2318     }
2319   >>
2320 }
2321 @end lilypond
2322
2323 @item neo-modern-voice-cautionary
2324
2325 @cindex neo-modern-voice-cautionary accidental style (neo-modern-voice-cautionary 臨時記号スタイル)
2326 @cindex accidental style, neo-modern-voice-cautionary (neo-modern-voice-cautionary 臨時記号スタイル)
2327
2328 @funindex neo-modern-voice-cautionary
2329
2330 この規則は @code{neo-modern-voice} と似ていますが、@c
2331 追加の臨時記号が忠告の臨時記号として譜刻されます。
2332
2333 @lilypond[quote]
2334 musicA = {
2335   <<
2336     \relative c' {
2337       cis'8 fis, bes4 <a cis>8 f bis4 |
2338       cis2. <c, g'>4 |
2339     }
2340     \\
2341     \relative c' {
2342       ais'2 cis, |
2343       fis8 b a4 cis2 |
2344     }
2345   >>
2346 }
2347
2348 musicB = {
2349   \clef bass
2350   \new Voice {
2351     \voiceTwo \relative c' {
2352       <fis, a cis>8[ <fis a cis>
2353       \change Staff = up
2354       cis' cis
2355       \change Staff = down
2356       <fis, a> <fis a>]
2357       \showStaffSwitch
2358       \change Staff = up
2359       dis'4 |
2360       \change Staff = down
2361       <fis, a cis>4 gis <f a d>2 |
2362     }
2363   }
2364 }
2365
2366 \new PianoStaff {
2367   <<
2368     \context Staff = "up" {
2369       \accidentalStyle neo-modern-voice-cautionary
2370       \musicA
2371     }
2372     \context Staff = "down" {
2373       \accidentalStyle neo-modern-voice-cautionary
2374       \musicB
2375     }
2376   >>
2377 }
2378 @end lilypond
2379
2380 @item dodecaphonic
2381
2382 @cindex dodecaphonic accidental style (dodecaphonic 臨時記号スタイル)
2383 @cindex dodecaphonic style, neo-modern (neo-modern 12 音スタイル)
2384
2385 @funindex dodecaphonic
2386
2387 この規則は 20 世紀初頭の作曲家たちによって導入された臨時記号の付け方を@c
2388 反映しています
2389  -- ナチュラルの音符と非ナチュラルの音符
2390 (訳者: ピアノの白鍵に対応する音符と黒鍵に対応する音符)
2391 間にある上下関係を無効にしようとする試みです。@c
2392 このスタイルでは、@emph{すべて} の音符にナチュラル記号を含む臨時記号が@c
2393 付けられます。
2394
2395 @lilypond[quote]
2396 musicA = {
2397   <<
2398     \relative c' {
2399       cis'8 fis, bes4 <a cis>8 f bis4 |
2400       cis2. <c, g'>4 |
2401     }
2402     \\
2403     \relative c' {
2404       ais'2 cis, |
2405       fis8 b a4 cis2 |
2406     }
2407   >>
2408 }
2409
2410 musicB = {
2411   \clef bass
2412   \new Voice {
2413     \voiceTwo \relative c' {
2414       <fis, a cis>8[ <fis a cis>
2415       \change Staff = up
2416       cis' cis
2417       \change Staff = down
2418       <fis, a> <fis a>]
2419       \showStaffSwitch
2420       \change Staff = up
2421       dis'4 |
2422       \change Staff = down
2423       <fis, a cis>4 gis <f a d>2 |
2424     }
2425   }
2426 }
2427
2428 \new PianoStaff {
2429   <<
2430     \context Staff = "up" {
2431       \accidentalStyle dodecaphonic
2432       \musicA
2433     }
2434     \context Staff = "down" {
2435       \accidentalStyle dodecaphonic
2436       \musicB
2437     }
2438   >>
2439 }
2440 @end lilypond
2441
2442 @item teaching
2443
2444 @cindex teaching accidental style (teaching 臨時記号スタイル)
2445 @cindex accidental style, teaching (teaching 臨時記号スタイル)
2446
2447 @funindex teaching
2448
2449 この規則は学生向けを意図したものであり、@c
2450 自動的に譜刻される忠告の臨時記号によって容易にスケール譜を作ることを@c
2451 容易にします。@c
2452 臨時記号は @code{modern} と同じように譜刻されます。@c
2453 しかしながら、調号によって指定されたすべてのシャープ音、@c
2454 フラット音に対して忠告の臨時記号が譜刻されます
2455  -- ただし、前の音符の直後にある同じピッチの音符は例外です。
2456
2457 @lilypond[quote,staffsize=18]
2458 musicA = {
2459   <<
2460     \relative c' {
2461       cis'8 fis, bes4 <a cis>8 f bis4 |
2462       cis2. <c, g'>4 |
2463     }
2464     \\
2465     \relative c' {
2466       ais'2 cis, |
2467       fis8 b a4 cis2 |
2468     }
2469   >>
2470 }
2471
2472 musicB = {
2473   \clef bass
2474   \new Voice {
2475     \voiceTwo \relative c' {
2476       <fis, a cis>8[ <fis a cis>
2477       \change Staff = up
2478       cis' cis
2479       \change Staff = down
2480       <fis, a> <fis a>]
2481       \showStaffSwitch
2482       \change Staff = up
2483       dis'4 |
2484       \change Staff = down
2485       <fis, a cis>4 gis <f a d>2 |
2486     }
2487   }
2488 }
2489
2490 \new PianoStaff {
2491   <<
2492     \context Staff = "up" {
2493       \key fis \minor
2494       \accidentalStyle teaching
2495       \musicA
2496     }
2497     \context Staff = "down" {
2498       \key fis \minor
2499       \accidentalStyle teaching
2500       \musicB
2501     }
2502   >>
2503 }
2504 @end lilypond
2505
2506
2507
2508 @item no-reset
2509
2510 @cindex accidental style, no reset (no-reset 臨時記号スタイル)
2511 @cindex no reset accidental style (no-reset 臨時記号スタイル)
2512
2513 @funindex no-reset
2514
2515 この規則は @code{default} と同じですが、臨時記号の保持は小節内に限定されず、@c
2516 @q{最後まで} 保持されます:
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 no-reset
2555       \musicA
2556     }
2557     \context Staff = "down" {
2558       \accidentalStyle no-reset
2559       \musicB
2560     }
2561   >>
2562 }
2563 @end lilypond
2564
2565 @item forget
2566
2567 @cindex forget accidental style (forget 臨時記号スタイル)
2568 @cindex accidental style, forget (forget 臨時記号スタイル)
2569
2570 @funindex forget
2571
2572 この規則は @code{no-reset} と正反対です:
2573 臨時記号はまったく保持されません
2574 -- そのため、調号に対応しながら、前にある音楽とは無関係に@c
2575 すべての臨時記号が譜刻されます。@c
2576
2577 @lilypond[quote]
2578 musicA = {
2579   <<
2580     \relative c' {
2581       cis'8 fis, bes4 <a cis>8 f bis4 |
2582       cis2. <c, g'>4 |
2583     }
2584     \\
2585     \relative c' {
2586       ais'2 cis, |
2587       fis8 b a4 cis2 |
2588     }
2589   >>
2590 }
2591
2592 musicB = {
2593   \clef bass
2594   \new Voice {
2595     \voiceTwo \relative c' {
2596       <fis, a cis>8[ <fis a cis>
2597       \change Staff = up
2598       cis' cis
2599       \change Staff = down
2600       <fis, a> <fis a>]
2601       \showStaffSwitch
2602       \change Staff = up
2603       dis'4 |
2604       \change Staff = down
2605       <fis, a cis>4 gis <f a d>2 |
2606     }
2607   }
2608 }
2609
2610 \new PianoStaff {
2611   <<
2612     \context Staff = "up" {
2613       \accidentalStyle forget
2614       \musicA
2615     }
2616     \context Staff = "down" {
2617       \accidentalStyle forget
2618       \musicB
2619     }
2620   >>
2621 }
2622 @end lilypond
2623 @end table
2624
2625 @seealso
2626 コード断片集:
2627 @rlsrnamed{Pitches,ピッチ}
2628
2629 内部リファレンス:
2630 @rinternals{Accidental},
2631 @rinternals{Accidental_engraver},
2632 @rinternals{GrandStaff} and
2633 @rinternals{PianoStaff},
2634 @rinternals{Staff},
2635 @rinternals{AccidentalSuggestion},
2636 @rinternals{AccidentalPlacement},
2637 @rinternals{accidental-suggestion-interface}
2638
2639 @cindex accidentals and simultaneous notes (臨時記号と同時発生する音符)
2640 @cindex simultaneous notes and accidentals (同時発生する音符と臨時記号)
2641 @cindex accidentals in chords (和音の中の臨時記号)
2642 @cindex chords, accidentals in (和音の中の臨時記号)
2643
2644 @knownissues
2645 同時発生する音符はシーケンシャル モードで入力されたものと見なされます。@c
2646 このことが意味するのは、和音の各音符は入力ファイルの中で記述された順に
2647 1 つずつ発生するものとして、和音の臨時記号は譜刻されるということです。@c
2648 これは和音の中の臨時記号が互いに依存関係にある場合に問題となります
2649 -- この問題はデフォルトの臨時記号スタイルでは発生しません。@c
2650 この問題は、問題となる音符に @code{!} や @code{?} を@c
2651 手動で付け加えることによって解決できます。
2652
2653 臨時記号の忠告的なキャンセルは 1 つ前の小節を見て行われます。@c
2654 しかしながら、@code{\repeat volta N} セクションの後にくる
2655 @code{\alternative} ブロックでは、@c
2656 キャンセルの算出はその前に @emph{譜刻された} 小節ではなく、@c
2657 その前に @emph{演奏された} 小節を見て行われると演奏者は予想します。@c
2658 以下の例では、2 番目の差し替え小節の中にあるナチュラル @code{c}
2659 にナチュラル記号は必要ありません。
2660
2661 @lilypond[quote]
2662 {
2663   \accidentalStyle modern
2664   \time 2/4
2665   \repeat volta 2 {
2666     c'2
2667   }
2668   \alternative {
2669      cis'
2670      c'
2671   }
2672 }
2673 @end lilypond
2674
2675 以下の方法で解決できます:
2676 局部的に臨時記号スタイルを @code{forget} に変更する関数を定義します:
2677
2678 @lilypond[verbatim,quote]
2679 forget = #(define-music-function (parser location music) (ly:music?) #{
2680   \accidentalStyle forget
2681   #music
2682   \accidentalStyle modern
2683 #})
2684 {
2685   \accidentalStyle modern
2686   \time 2/4
2687   \repeat volta 2 {
2688     c'2
2689   }
2690   \alternative {
2691      cis'
2692      \forget c'
2693   }
2694 }
2695 @end lilypond
2696
2697
2698 @node 音域
2699 @unnumberedsubsubsec 音域
2700 @translationof Ambitus
2701
2702 @cindex ambitus (音域)
2703 @cindex range of pitches (ピッチの範囲)
2704 @cindex pitch range (ピッチ範囲)
2705
2706 用語 @notation{音域} (ambitus) は、@c
2707 音楽のある部分の中にあるボイスがとるピッチの範囲を示します。@c
2708 さらに、ある楽器が演奏することができるピッチ範囲を@c
2709 示すこともあるかもしれません。@c
2710 音域をボーカル パートに譜刻することによって、@c
2711 歌い手はそのパートの音域が歌い手の能力と一致するかどうかを@c
2712 容易に見極めることができます。
2713
2714 音域は、楽曲の開始点で、最初の音部記号の近くに記されます。@c
2715 範囲は最低ピッチと最高ピッチを表す 2 つの音符によって@c
2716 グラフィカルに示されます。@c
2717 臨時記号は、その臨時記号が調号の一部でない場合にのみ譜刻されます。
2718
2719 @lilypond[verbatim,quote]
2720 \layout {
2721   \context {
2722     \Voice
2723     \consists "Ambitus_engraver"
2724   }
2725 }
2726
2727 \relative c'' {
2728   aes c e2
2729   cis,1
2730 }
2731 @end lilypond
2732
2733
2734 @snippets
2735
2736 @lilypondfile[verbatim,quote,texidoc,doctitle]
2737 {adding-ambitus-per-voice.ly}
2738
2739 @lilypondfile[verbatim,quote,texidoc,doctitle]
2740 {ambitus-with-multiple-voices.ly}
2741
2742 @lilypondfile[verbatim,quote,texidoc,doctitle]
2743 {changing-the-ambitus-gap.ly}
2744
2745 @seealso
2746 音楽用語集:
2747 @rglos{ambitus}
2748
2749 コード断片集:
2750 @rlsrnamed{Pitches,ピッチ}
2751
2752 内部リファレンス:
2753 @rinternals{Ambitus_engraver},
2754 @rinternals{Voice},
2755 @rinternals{Staff},
2756 @rinternals{Ambitus},
2757 @rinternals{AmbitusAccidental},
2758 @rinternals{AmbitusLine},
2759 @rinternals{AmbitusNoteHead},
2760 @rinternals{ambitus-interface}
2761
2762 @knownissues
2763 複数のボイスがある場合にボイスごとに音域をとることによって生じる@c
2764 音域の衝突を処理するシステムはありません。
2765
2766
2767 @node 符頭
2768 @subsection 符頭
2769 @translationof Note heads
2770
2771 このセクションでは符頭を変更する方法について説明します。
2772
2773 @menu
2774 * 特殊な符頭::
2775 * 演奏を容易にする記譜法の符頭::
2776 * シェイプ符頭::
2777 * 即興::
2778 @end menu
2779
2780 @node 特殊な符頭
2781 @unnumberedsubsubsec 特殊な符頭
2782 @translationof Special note heads
2783
2784 @cindex note heads, special (特別な符頭)
2785 @cindex note heads, cross (×の符頭)
2786 @cindex note heads, diamond (ダイアモンド形の符頭)
2787 @cindex note heads, parlato (語りの符頭)
2788 @cindex note heads, harmonic (和音の符頭)
2789 @cindex note heads, guitar (ギターの符頭)
2790 @cindex special note heads (特別な符頭)
2791 @cindex cross note heads (×の符頭)
2792 @cindex diamond note heads (ダイアモンド形の符頭)
2793 @cindex parlato note heads (語りの符頭)
2794 @cindex harmonic note heads (和音の符頭)
2795 @cindex guitar note heads (ギターの符頭)
2796 @cindex note head styles (符頭のスタイル)
2797 @cindex styles, note heads (符頭のスタイル)
2798
2799 @funindex cross
2800
2801 符頭を変更することができます:
2802
2803 @lilypond[verbatim,quote,relative=2]
2804 c4 b
2805 \override NoteHead.style = #'cross
2806 c4 b
2807 \revert NoteHead.style
2808 a b
2809 \override NoteHead.style = #'harmonic
2810 a b
2811 \revert NoteHead.style
2812 c4 d e f
2813 @end lilypond
2814
2815 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。
2816
2817 @code{cross} スタイルはさまざまな音楽的意図を表すために使用されます。@c
2818 以下の定義済みコマンドは符頭を譜コンテキストとタブ譜コンテキストで変更し、@c
2819 何らかの音楽的意味を表すために使用することができます:
2820
2821 @lilypond[verbatim,quote,relative=2]
2822 c4 b
2823 \xNotesOn
2824  a b c4 b
2825 \xNotesOff
2826 c4 d
2827 @end lilypond
2828
2829 この定義済みコマンドの音楽関数は、譜コンテキストやタブ譜コンテキストの@c
2830 和音の内外で使用して、符頭を×の形にすることができます:
2831
2832 @lilypond[verbatim,quote,relative=2]
2833 c4 b
2834 \xNote { e f }
2835 c b < g \xNote c f > b
2836 @end lilypond
2837
2838 @code{\xNote}, @code{\xNotesOn} それに @code{\xNotesOff} の同義語として
2839 @code{\deadNote}, @code{\deadNotesOn} それに @code{\deadNotesOff} を@c
2840 使用することができます。@c
2841 @notation{dead note} という用語はギタリストが一般的に使用します。
2842
2843 また、和音の中でのみ使用できるダイアモンド形のための短縮記法があります:
2844
2845 @lilypond[verbatim,quote,relative=2]
2846 <c f\harmonic>2 <d a'\harmonic>4 <c g'\harmonic>
2847 @end lilypond
2848
2849 @predefined
2850 @code{\harmonic},
2851 @code{\xNotesOn},
2852 @code{\xNotesOff},
2853 @code{\xNote}.
2854 @endpredefined
2855
2856 @seealso
2857 コード断片集:
2858 @rlsrnamed{Pitches,ピッチ}
2859
2860 記譜法リファレンス:
2861 @ref{Note head styles},
2862 @ref{Chorded notes},
2863 @ref{Indicating harmonics and dampened notes}
2864
2865 内部リファレンス:
2866 @rinternals{note-event},
2867 @rinternals{Note_heads_engraver},
2868 @rinternals{Ledger_line_engraver},
2869 @rinternals{NoteHead},
2870 @rinternals{LedgerLineSpanner},
2871 @rinternals{note-head-interface},
2872 @rinternals{ledger-line-spanner-interface}
2873
2874
2875 @node 演奏を容易にする記譜法の符頭
2876 @unnumberedsubsubsec 演奏を容易にする記譜法の符頭
2877 @translationof Easy notation note heads
2878
2879 @cindex note heads, practice (練習のための符頭)
2880 @cindex practice note heads (練習のための符頭)
2881 @cindex note heads, easy notation (演奏を容易にする記譜法の符頭)
2882 @cindex easy notation (演奏を容易にする記譜法)
2883 @cindex Hal Leonard
2884 @cindex beginners' music (初心者のための楽譜)
2885 @cindex music, beginners' (初心者のための楽譜)
2886 @cindex easy play note heads (演奏を容易にする符頭)
2887 @cindex note heads, easy play (演奏を容易にする符頭)
2888
2889 @funindex \easyHeadsOn
2890 @funindex easyHeadsOn
2891 @funindex \easyHeadsOff
2892 @funindex easyHeadsOff
2893
2894 @q{演奏を容易にする} 符頭は、符頭の中に音符名を含みます。@c
2895 これは、初心者のための楽譜で使用されます。@c
2896 文字を読みやすくするために、大きなフォント サイズで譜刻すべきです。@c
2897 大きなフォントで譜刻する方法は、@c
2898 @ref{Setting the staff size} を参照してください。
2899
2900 @lilypond[verbatim,quote]
2901 #(set-global-staff-size 26)
2902 \relative c' {
2903   \easyHeadsOn
2904   c2 e4 f
2905   g1
2906   \easyHeadsOff
2907   c,1
2908 }
2909 @end lilypond
2910
2911
2912 @predefined
2913 @code{\easyHeadsOn},
2914 @code{\easyHeadsOff}
2915 @endpredefined
2916
2917
2918 @snippets
2919
2920 @lilypondfile[verbatim,quote,texidoc,doctitle]
2921 {numbers-as-easy-note-heads.ly}
2922
2923 @seealso
2924 記譜法リファレンス:
2925 @ref{Setting the staff size}
2926
2927 コード断片集:
2928 @rlsrnamed{Pitches,ピッチ}
2929
2930 内部リファレンス:
2931 @rinternals{note-event},
2932 @rinternals{Note_heads_engraver},
2933 @rinternals{NoteHead},
2934 @rinternals{note-head-interface}
2935
2936
2937 @node シェイプ符頭
2938 @unnumberedsubsubsec シェイプ符頭
2939 @translationof Shape note heads
2940
2941 @cindex note heads, shape (シェイプ符頭)
2942 @cindex note heads, Aiken (Aiken の符頭)
2943 @cindex note heads, sacred harp (セイクリッド ハープの符頭)
2944 @cindex shape notes (シェイプ ノート)
2945 @cindex Aiken shape note heads (Aiken のシェイプ符頭)
2946 @cindex sacred harp note heads (セイクリッド ハープの符頭)
2947 @cindex note heads, Southern Harmony
2948 @cindex Southern Harmony note heads
2949 @cindex Funk shape note heads
2950 @cindex note heads, Funk
2951 @cindex note heads, Harmonica Sacra
2952 @cindex Harmonica Sacra note heads
2953 @cindex Christian Harmony note heads
2954 @cindex note heads, Christian Harmony
2955 @cindex Walker shape note heads
2956 @cindex note heads, Walker
2957
2958 @funindex \aikenHeads
2959 @funindex aikenHeads
2960 @funindex \sacredHarpHeads
2961 @funindex sacredHarpHeads
2962 @funindex \southernHarmonyHeads
2963 @funindex southernHarmonyHeads
2964 @funindex \funkHeads
2965 @funindex funkHeads
2966 @funindex \walkerHeads
2967 @funindex walkerHeads
2968
2969 シェイプ ノート記譜法では、@c
2970 符頭の形状は音階の中での音符の位置付けに対応します。@c
2971 この表記は 19 世紀のアメリカの歌集で一般的なものです。@c
2972 シェイプ符頭はセイクリッド ハープ、Southern Harmony、@c
2973 Funk (Harmonica Sacra)、Walker、それに Aiken (Christian Harmony) スタイルで@c
2974 使用されます:
2975
2976 @lilypond[verbatim,quote,relative=2]
2977 \aikenHeads
2978 c, d e f g2 a b1 c \break
2979 \sacredHarpHeads
2980 c,4 d e f g2 a b1 c \break
2981 \southernHarmonyHeads
2982 c,4 d e f g2 a b1 c \break
2983 \funkHeads
2984 c,4 d e f g2 a b1 c \break
2985 \walkerHeads
2986 c,4 d e f g2 a b1 c \break
2987 @end lilypond
2988
2989 @funindex \key
2990 @funindex key
2991 @funindex \aikenHeadsMinor
2992 @funindex aikenHeadsMinor
2993 @funindex \sacredHarpHeadsMinor
2994 @funindex sacredHarpHeadsMinor
2995 @funindex \southernHarmonyHeadsMinor
2996 @funindex southernHarmonyHeadsMinor
2997 @funindex \funkHeadsMinor
2998 @funindex funkHeadsMinor
2999 @funindex \walkerHeadsMinor
3000 @funindex walkerHeadsMinor
3001
3002 符頭の形状は音階の中での位置に対応し、@c
3003 音階のベースは @code{\key} コマンドによって決まります。@c
3004 マイナーで記述している場合、@c
3005 符頭の形状を決定する音階ステップはメジャーの場合との相対関係になります:
3006
3007 @lilypond[verbatim,quote,relative=2]
3008 \key a \minor
3009 \aikenHeads
3010 a b c d e2 f g1 a \break
3011 \aikenHeadsMinor
3012 a,4 b c d e2 f g1 a \break
3013 \sacredHarpHeadsMinor
3014 a,2 b c d \break
3015 \southernHarmonyHeadsMinor
3016 a2 b c d \break
3017 \funkHeadsMinor
3018 a2 b c d \break
3019 \walkerHeadsMinor
3020 a2 b c d \break
3021
3022 @end lilypond
3023
3024 @predefined
3025 @code{\aikenHeads},
3026 @code{\aikenHeadsMinor},
3027 @code{\funkHeads},
3028 @code{\funkHeadsMinor},
3029 @code{\sacredHarpHeads},
3030 @code{\sacredHarpHeadsMinor},
3031 @code{\southernHarmonyHeads},
3032 @code{\southernHarmonyHeadsMinor},
3033 @code{\walkerHeads},
3034 @code{\walkerHeadsMinor}
3035 @endpredefined
3036
3037 @snippets
3038
3039 @lilypondfile[verbatim,quote,texidoc,doctitle]
3040 {applying-note-head-styles-depending-on-the-step-of-the-scale.ly}
3041
3042 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。
3043
3044 @seealso
3045 コード断片集:
3046 @rlsrnamed{Pitches,ピッチ}
3047
3048 記譜法リファレンス:
3049 @ref{Note head styles}
3050
3051 内部リファレンス:
3052 @rinternals{note-event},
3053 @rinternals{Note_heads_engraver},
3054 @rinternals{NoteHead},
3055 @rinternals{note-head-interface}
3056
3057
3058 @node 即興
3059 @unnumberedsubsubsec 即興
3060 @translationof Improvisation
3061
3062 @cindex improvisation (即興)
3063 @cindex slashed note heads (スラッシュ形の符頭)
3064 @cindex note heads, improvisation (即興の符頭)
3065 @cindex note heads, slashed (スラッシュ形の符頭)
3066
3067 @funindex \improvisationOn
3068 @funindex improvisationOn
3069 @funindex \improvisationOff
3070 @funindex improvisationOff
3071
3072 即興はしばしばスラッシュ形の符頭で記されます。@c
3073 そのような表記では、演奏者は好みのピッチを選ぶことができますが、@c
3074 指定されたリズムに従って演奏する必要があります。@c
3075 このような符頭は以下のようにして作成することができます:
3076
3077 @lilypond[verbatim,quote,relative=2]
3078 \new Voice \with {
3079   \consists "Pitch_squash_engraver"
3080 } {
3081   e8 e g a a16( bes) a8 g
3082   \improvisationOn
3083   e8 ~
3084   e2 ~ e8 f4 f8 ~
3085   f2
3086   \improvisationOff
3087   a16( bes) a8 g e
3088 }
3089 @end lilypond
3090
3091 @predefined
3092 @code{\improvisationOn},
3093 @code{\improvisationOff}
3094 @endpredefined
3095
3096 @seealso
3097 コード断片集:
3098 @rlsrnamed{Pitches,ピッチ}
3099
3100 内部リファレンス:
3101 @rinternals{Pitch_squash_engraver},
3102 @rinternals{Voice},
3103 @rinternals{RhythmicStaff}