Hello.

> I want to insert a few (not all) chord names in a sheet.
> 
> I trid the following:
> 
> \relative c {
>  ..
>  <<   \chords { cis:m1 }  
>  { cis,1 } >>
>   ..
> }
> 
> but then the Chord name is below the melody. 

Not so here; this code

%-----
\version "2.10.10"


theMusic = \relative c {
  \time 4/4 |
  << \chords {cis:m1} {cis,1} >>
}

\score {
    \theMusic
    \layout {}
}
%-----

will indeed print the chord name above the staff.
So the behviour you see must come from another part of your file.

Best,
Gilles


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to