Re: Exclude single notes from ChordNames?

2018-10-06 Thread sg2002
So I've implemented the function I wanted. See here . Sure, I'd probably get no points for elegance, but it works well enough. I used the fact that the "q" repeat chords have an empty "elements" list, to avoid tracking repeats.

Re: Exclude single notes from ChordNames?

2018-09-18 Thread sg2002
I understand that I can have separate music entity for chord names. I was asking for ways to avoid doing that. The most obvious option is writing a filter function that would replace everything in the input except the proper chords with rests, I mentioned that previously. Just decided to ask,

Re: Exclude single notes from ChordNames?

2018-09-17 Thread Aaron Hill
On 2018-09-17 3:21 pm, sg2002 wrote: Currently running ChordNames on the example I presented produces this: D Dm/A F Dm/A D Dm/A F Dm/A E E7/G# G# E7/G# E E7/G# G# E7/G# That's too much clutter for me so I would prefer only seeing the chords: Dm/A Dm/A Dm/A Dm/A E7/G# E7/G# E7/G# E7/G# Even

Re: Exclude single notes from ChordNames?

2018-09-17 Thread Simon Albrecht
On 18.09.2018 00:21, sg2002 wrote: Currently running ChordNames on the example I presented produces this: D Dm/A F Dm/A D Dm/A F Dm/A E E7/G# G# E7/G# E E7/G# G# E7/G# That's too much clutter for me so I would prefer only seeing the chords: Dm/A Dm/A Dm/A Dm/A E7/G# E7/G# E7/G# E7/G# Even better

Re: Exclude single notes from ChordNames?

2018-09-17 Thread sg2002
Currently running ChordNames on the example I presented produces this: D Dm/A F Dm/A D Dm/A F Dm/A E E7/G# G# E7/G# E E7/G# G# E7/G# That's too much clutter for me so I would prefer only seeing the chords: Dm/A Dm/A Dm/A Dm/A E7/G# E7/G# E7/G# E7/G# Even better if the output could only have the

Re: Exclude single notes from ChordNames?

2018-09-17 Thread Simon Albrecht
On 17.09.2018 19:13, sg2002 wrote: \new ChordNames {    d \chordmode { d:m/a } f, q d q f, q  e, \chordmode { e:7^5/gis }  gis, q e, q gis, q  } Since chords are often inverted and I'm not a proficient player by any means, having chord is nice. On the other hand I have no problems sight

Exclude single notes from ChordNames?

2018-09-17 Thread sg2002
Hello. I've decided to learn a couple of songs on bayan, which is a Russian chromatic accordion. Basic bayan bass parts often have a single bass notes followed by a chord, e. g.: \new ChordNames {    d \chordmode { d:m/a } f, q d q f, q  e, \chordmode { e:7^5/gis }  gis, q e, q gis, q  }