werckme / werckmeister

An open source Sheet Music MIDI Compiler
http://werckme.github.io/
GNU General Public License v3.0
33 stars 4 forks source link

phrases #356

Closed SambaGodschynski closed 1 year ago

SambaGodschynski commented 1 year ago

as a composer I want to be able to define phrases to make my music/ideas more context.

phrases can be absolute:

walkUp=c d e f g; -- '|' not allowed 
....
{
  >walkUp4 |
}

or relative:

walkUp=I II III IV V;
....
{
  /chord: "C-7"/
  >walkUp4 |
}

can be extend over one bar

 >walkUp1~ | &4

can be annotated

 "myPhrase"@>walkUp1~ | &4
SambaGodschynski commented 1 year ago

implements also

360 and #359