因此,我想有一个减少的七和弦,因为它是调在主要模式,并经常用于取代大七在次要模式。本站说,减少和弦可以通过在和弦名称之后使用dim来定义,但据我所知,这只适用于显式字母名称。有没有办法让它适用于罗马数字?
以下节目:
ChordProgression cp = new ChordProgression("vii");
cp.setKey("C");
System.out.println(cp.getChords()[0].toHumanReadableString());
cp = new ChordProgression("vii*");
System.out.println(cp.getChords()[0].toHumanReadableString());
cp = new ChordProgression("viidim");
System.out.println(cp.getChords()[0].toHumanReadableString());产出:
B4MIN
C4MIN
C4DIM输出应该是B4DIM。
发布于 2017-04-21 01:03:20
若要从ChordProgression中产生减少和弦,请在罗马数字末尾使用“o”或“d”。
ChordProgression cp = new ChordProgression("viid").setKey("C");
System.out.println(cp);此代码生成B4DIM。
https://stackoverflow.com/questions/43509245
复制相似问题