lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to make jazz-like leadsheets without melody, only chords, and te


From: Jacques Menu
Subject: Re: How to make jazz-like leadsheets without melody, only chords, and text?
Date: Wed, 24 Mar 2021 09:07:10 +0100

This works, but with a second, empty staff:

\version "2.20.0"

\language "english"
\include "lilyjazz.ily"

global = {  \time 4/4   \key f \major  \tempo 4=100}
chordNames = \chordmode {f1:7 f:7 f:7 f:7}

\score {
  <<
    \global

    \new ChordNames {
      \chordNames
    }

    \new Voice
    \with { \consists "Pitch_squash_engraver" }
    {
      \improvisationOn \omit Stem
      \repeat unfold 16 { 4 }
    }
  >>
}


> Le 24 mars 2021 à 05:55, Aaron Hill <lilypond@hillvisions.com> a écrit :
> 
> On 2021-03-23 9:09 pm, stefano franchi wrote:
>> I know how to enter chords (and how to use a jazzy font), but I can't
>> find out how to enter the beat marks, not the text underneath that
>> spans several bars (my chords also appear under the staff rather than
>> above it, but that's a minor issue).
> 
> See if something like this might work for you:
> 
> %%%%
> \version "2.22.0"
> 
> \new Voice
> \with { \consists "Pitch_squash_engraver" }
> {
>  \improvisationOn \omit Stem
>  \repeat unfold 8 { 4 }
> }
> %%%%
> 
> 
> -- Aaron Hill<jazz-improv.cropped.png>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]