Barras que atraviesan saltos de línea

Normalmente LilyPond rehúsa insertar un salto de línea automático si las barra atraviesa la línea divisoria. Se puede cambiar este comportamiento by setting the Beam.breakable property to #t.

Esta propiedad no afecta a los saltos manuales insertados con instrucciones como \break.

music = {
  \repeat unfold 8 c8
  c8 \repeat unfold 7 { c[ c] }  c
  \repeat unfold 8 c8
}

\relative c'' {
  <>^\markup { \typewriter Beam.breakable set to \typewriter "#t" }
  \override Beam.breakable = ##t
  \music
}

\relative c'' {
  <>^\markup { \typewriter Beam.breakable not set }
  \music
}

\paper {
  line-width = 100\mm
  tagline = ##f
}
[image of music]

LilyPond snippets v2.25.30 (development-branch).