Insert brackets, lines and arrows between chord names

2022-12-25 Thread Javi
Hi, I'm trying to make a harmony analysis of some jazz standards with 
lilypond.


I have a jazz lead sheet with Chord Names and some numeral Romans under 
the staff based on the lilypond-roman-numeral-tool. 
https://github.com/davidnalesnik/lilypond-roman-numeral-tool


Now I need a way to insert brackets, arrows or lines between chords 
names in order to express the direction and function of every chord as 
it is usually done in jazz harmony.


Is there any way of doing this?


Re: 2.24 weirdness with slurred chords

2022-12-25 Thread Werner LEMBERG

> Hey all.  Ran into a bit of weirdness when trying to do slurred
> chords.  I'm wanting a slur between each of the matching notes
> within the chord.

Why slurs and not ties?

> Here's an MWE showing this.
> 
> \version "2.24.0"
> \language "english"
> 
> \relative c'' {
>   b4 b b
>   < b\1\=1( f\2\=2( b,\3\=3( >4   < b\1\=1) f\2\=2) b,\3\=3) >
>   < e,\1\=1( b\2\=2( e,\3\=3( >2.  < e\1\=1) b\2\=2) e,\3\=3) >2
> }

Indeed, this looks like a bug.  However, a simple solution is to do
the following – but I guess you know this already :-)

```
\version "2.25.0"

\relative c'' {
  b4 b b
  4 ~ 
  2. ~ 2
}
```


Werner


Re: 2.24 weirdness with slurred chords

2022-12-25 Thread Werner LEMBERG
>> Here's an MWE showing this.
> 
> Indeed, this looks like a bug.

This is now

  https://gitlab.com/lilypond/lilypond/-/issues/6495


 Werner