[ << 音楽記譜法 ] | [Top][Contents][Index] | [ 専門的な記譜法 >> ] |
[ < 逆行 ] | [ Up : 複数のピッチを変更する ] | [ ピッチを表示する > ] |
様式的な変形
音階に基づく作曲では、モチーフはさまざまなやり方で頻繁に移調されます。これは、モチーフの開始の音程を変えるために 移調 する場合や、旋回点で 反転 する場合があります。 逆行 するために後戻りする場合もあります– 逆行 を参照してください。
Note: 与えられた音階の中に無い音符は、移調されません。
様式的な移調
以下により、与えられた音階でモチーフを移調させることができます:
\modalTranspose from-pitch to-pitch scale motif
motif の音符は scale 内を to-pitch と from-pitch 間の音程の度数の分だけシフトされます:
diatonicScale = \relative { c' d e f g a b } motif = \relative { c'8 d e f g a b c } \new Staff { \motif \modalTranspose c f \diatonicScale \motif \modalTranspose c b, \diatonicScale \motif }
上昇する音階の長さは任意であり、指定する音程も任意です:
pentatonicScale = \relative { ges aes bes des ees } motif = \relative { ees'8 des ges,4 <ges' bes,> <ges bes,> } \new Staff { \motif \modalTranspose ges ees' \pentatonicScale \motif }
半音階の音階を持つ \modalTranspose
を使った時の効果は
\transpose
と同じですが、使われる音符の名前を特定することが
できます:
chromaticScale = \relative { c' cis d dis e f fis g gis a ais b } motif = \relative { c'8 d e f g a b c } \new Staff { \motif \transpose c f \motif \modalTranspose c f \chromaticScale \motif }
様式的な反転
モチーフを与えられた音階に従って与えられた旋回点 (音符) で反転させて、 移調させることを 1 つの操作でできます:
\modalInversion around-pitch to-pitch scale motif
motif の音符は scale 内を around-pitch から元の音符までと同じ度数の分だけ逆向きに進んだ位置に配置され、それからその結果は scale 内を to-pitch と around-pitch 間の音程の度数分だけシフトされます。
そのため、単純に音階をある音符で反転させる場合は、around-pitch と to-pitch で同じ値を使用します:
octatonicScale = \relative { ees' f fis gis a b c d } motif = \relative { c'8. ees16 fis8. a16 b8. gis16 f8. d16 } \new Staff { \motif \modalInversion fis' fis' \octatonicScale \motif }
音階の中にある 2 つの音符の中間にある旋回点で反転させるには、2 つの音符の 1 つを旋回点として反転させて、音階の 1 度数分だけ移調させます。指定された 2 つの音符が旋回点を囲んでいると解釈することができます:
scale = \relative { c' g' } motive = \relative { c' c g' c, } \new Staff { \motive \modalInversion c' g' \scale \motive }
反転と逆行の操作を組み合わせると逆行-反転になります:
octatonicScale = \relative { ees' f fis gis a b c d } motif = \relative { c'8. ees16 fis8. a16 b8. gis16 f8. d16 } \new Staff { \motif \retrograde \modalInversion c' c' \octatonicScale \motif }
参照
[ << 音楽記譜法 ] | [Top][Contents][Index] | [ 専門的な記譜法 >> ] |
[ < 逆行 ] | [ Up : 複数のピッチを変更する ] | [ ピッチを表示する > ] |