lilypond-user
[Top][All Lists]
Advanced

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

Re: Chord chart layout


From: Thibaut Chevalier
Subject: Re: Chord chart layout
Date: Wed, 9 Aug 2006 15:52:44 +0200

Thanks Mats, that works fine, except to have 4 mesures on each line one need :
 \set Score.proportionalNotationDuration = #(ly:make-moment 1 8)

Some small tunnings and I got what I wanted.

I encoutered another problem though :
When using \repeat percent 2 { ees1:7}, the measure spacing is broken.
Do you know how to arrange that ?

For example with the following code (I included a partial measure at the beginning of each line to obtain a bar at the beginning of the line)

\version "2.8.2"

\paper{
 between-system-space = 10\mm % Default is 20mm
 between-system-padding = 0\mm % Default is 4mm
 ragged-last = ##f
 ragged-bottom=##f
 ragged-last-bottom=##t
}

\score
{
<<
       \new ChordNames \with {
        \override BarLine #'bar-size = #6
        voltaOnThisStaff = ##t
        \consists Bar_engraver
        \consists "Volta_engraver"
        \consists "Percent_repeat_engraver"
        \override VerticalAxisGroup #'minimum-Y-extent = ##f
        }
               
        \repeat unfold 8 { \partial 16 s16 s1 s1 s1 s1 \break  }

    \chordmode
        {
    \set Score.proportionalNotationDuration = #(ly:make-moment 8 65)

         \partial 16 s16ees1:maj7 bes2:m7 ees:7 aes1:maj7 aes2:m7 des2:7
         \partial 16 s16ees2:maj7 c:m7 f:m7 bes:7 g2:m7 c:7 f:m7 bes:7
         \partial 16 s16ees1:maj7 bes2:m7 ees:7 aes1:maj7 aes2:m7 des2:7
         \partial 16 s16ees2:maj7 c:m7 f:m7 bes:7 \repeat "percent" 2 {ees1:7}
        
         \partial 16 s16bes2:m bes:m7+ bes:m7 ees: 7.9- \repeat "percent" 2 {aes1:maj7}
         \partial 16 s16a1:m7 d2:7 f:7 g:m7.5- c:7.9- f:m7 bes:7
         \partial 16 s16ees1:maj7 bes2:m7 ees:7 aes1:maj7 aes2:m7 des2:7
         \partial 16 s16ees2:maj7 c:m7 f:m7 bes:7 ees1:6 f2:m7 bes2:7


    }
>>

\layout{
indent=0
}

}

Thanks !

reply via email to

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