「VexFlow タブ譜 カッティング」の版間の差分

提供:yonewiki
編集の要約なし
1,110行目: 1,110行目:


const Guitar2_notes1_1 = [
const Guitar2_notes1_1 = [
   new VF.StaveNote({ keys: ["a/3", "e/4", "a/4", "c/5"], duration: "2" }),
   dotted(new VF.StaveNote({ keys: ["b/4"], duration: "8d" })),
   new VF.StaveNote({ keys: ["e/5"], duration: "8", stem_direction: -1 }),
  new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
   dotted(new VF.StaveNote({ keys: ["c/6"], duration: "4d", stem_direction: -1 })),
 
  new VF.StaveNote({ keys: ["b/4"], duration: "8" }),
  new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
  new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
 
   new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
  new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
   new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
  new VF.StaveNote({ keys: ["b/4"], duration: "16" }),
 
  new VF.StaveNote({ keys: ["b/4"], duration: "8" }),
  new VF.StaveNote({ keys: ["b/4"], duration: "8" }),
];
];
const Guitar2_notes1_2 = [
const Guitar2_notes1_2 = [
1,136行目: 1,147行目:


];
];
const Guitar2_St1_beam1_1 = new VF.Beam([Guitar2_notes1_1[0], Guitar2_notes1_1[1]]);
const Guitar2_St1_beam1_2 = new VF.Beam([Guitar2_notes1_1[2], Guitar2_notes1_1[3], Guitar2_notes1_1[4]]);
const Guitar2_St1_beam1_3 = new VF.Beam([Guitar2_notes1_1[5], Guitar2_notes1_1[6], Guitar2_notes1_1[7], Guitar2_notes1_1[8]]);
const Guitar2_St1_beam1_4 = new VF.Beam([Guitar2_notes1_1[9], Guitar2_notes1_1[10]]);
var Guitar2_St1_1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 });
var Guitar2_St1_1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 });
Guitar2_St1_1Voice.setStrict(true);
Guitar2_St1_1Voice.setStrict(true);
1,148行目: 1,164行目:
Guitar2_St1_1Voice.draw(ctx, Guitar2_St1);
Guitar2_St1_1Voice.draw(ctx, Guitar2_St1);
Guitar2_St1_2Voice.draw(ctx, Guitar2_St1);
Guitar2_St1_2Voice.draw(ctx, Guitar2_St1);
Guitar2_St1_beam1_1.setContext(ctx).draw();
Guitar2_St1_beam1_2.setContext(ctx).draw();
Guitar2_St1_beam1_3.setContext(ctx).draw();
Guitar2_St1_beam1_4.setContext(ctx).draw();





2024年4月9日 (火) 00:33時点における版

VexFlow 使い方に戻る。

概要

 カッティングには一弦カッティングと複数弦カッティングがあります。奏法としては、弦の上に指を触れた状態で弦をピッキングするものです。カチャカチャとした音ですが、エフェクターを使うとさらに表現の幅が広がる音でもあります。タブ譜では、複数弦カッティングのときには大きなバツ印と符棒と符旗でリズムを指定します。一弦カッティングのときはカッティングするべき弦にバツ印をつけ、リズムは符棒と符旗で指定します。指の触れるポジションで多少、音の響きが違うのですが、ポジションの指定は通常ありません。前後のコードフォームを維持する場合もあれば、ギューンというような感じのカッティングでは、スライドしながらであったり、一瞬ポジションを低くしたり高くするカッティングもあります。音の指定はありませんので、実際に作曲者が演奏しているものをまねるのが正しいということになります。

 

タブ譜 カッティング


 コードは以下のとおりです。


<div id="yonet202403Mid_Output01"></div>
<script>

</script>


 

 

VexFlow 使い方に戻る。