Hi.

> changes = \chords {
>   c1 c1
> }
> 
> slashes = {
>   \override NoteHead #'style = #'slash
>   b'1 b'1
> }
> 
> \score {
>   \new Staff <<
>     \changes
>     \slashes
>   >>
> }
> 
> -------------------------------------------
> 
> would someone be kind enough to explain?

   \new Staff

appears before

   \changes 

Hence the chord line is after the staff line.
The attached file shows how to make it the other way around.

Best,
Gilles
\version "2.10.10"

harmony = \context ChordNames {
  \chordmode {
    c1 |
    c1 |
  }
}
slashes = {
  \override NoteHead #'style = #'slash
  b'1 |
  b'1 |
}
 
<< 
  \harmony
  \new Staff {
    \slashes
  }
>>
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to