lilypond-user
[Top][All Lists]
Advanced

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

Guitar bend at end of bar with linebreak [was: Strange problem with guit


From: Martyn Quick
Subject: Guitar bend at end of bar with linebreak [was: Strange problem with guitar bends]
Date: Sun, 3 Aug 2014 19:01:27 +0100


I've finally worked out what is causing the problem with the guitar bends.  It is when the engraver is trying to implement a linebreak and bending up from one note to the other at the end of the bar.

The following code gives a simple example of it going wrong.  Any ideas how to fix this? - I guess manually inserting a \break the bar beforehand should at least avoid it!

Martyn


\version "2.18.2"

\include "definitions.ily"

\layout {
  \context {
    \Staff
    \override VerticalAxisGroup #'default-staff-staff-spacing =
    #'((padding . 4))
  }
}

music = {
  \relative a' {
    \bendOn
    c4 c c c ( | d ) d d d ( |
    e ) e e e ( | f ) f f f ( |
    g ) g g g ( | a ) a a a ( |
    b ) b b b ( | c ) c c c ( |
    d ) d d d ( | e ) e e e |
  }
}

\score {
  <<
  \new Staff {
    \clef "treble_8"
    \numericTimeSignature \time 4/4
    \music
  }
  \new TabStaff {
    \music
  }
  >>
}

reply via email to

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