lilypond-user
[Top][All Lists]
Advanced

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

Re: Vertical space above ossia


From: Ben
Subject: Re: Vertical space above ossia
Date: Thu, 17 May 2018 06:02:38 -0400
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0

On 5/17/2018 2:01 AM, Walter Garcia-Fontes wrote:
I'm having trouble eliminating vertical space above an Ossia
snippet. This is the example of the manual, augmented to extend over
multiple lines:


The vertical distance above the ossia I could not reduce no matter how
much I tweaked the numbers in the override, and so the distance
between the two lines with ossia in the middle is different from the
rest. I also tried "staff-staff-spacing" instead of
"default-staff-staff-spacing" but there is no change.

Is it possible to reduce the vertical distance above the ossia? I
gave up and ended up doing the ossia with music included in a markup,
for the markup I know how to tweak all vertical distances.


Hello,

You could always try to approach from the paper block? :) Does that work for your needs?
i.e. #'((basic-distance . 10)

(see attached)

\version "2.19.32"

\new Staff = "main" \relative {
\repeat unfold 4 {  c''4 b d c} \break
\repeat unfold 4 {  c4 b d c}
  <<
    { c4 b d c }

    \new Staff \with {

      \remove "Time_signature_engraver"
      alignAboveContext = #"main"
      \magnifyStaff #2/3
      firstClef = ##f
     \override VerticalAxisGroup #'default-staff-staff-spacing = #'(
(basic-distance . 0)
(minimum-distance . 0)
(padding . 1.5)
(stretchability . 90) )
    }
    { e4 d f e }
  >>
\break
\repeat unfold 4 {  c4 b d c}
  c4 b c2
}

\paper {
  system-system-spacing =
    #'((basic-distance . 10)
       (minimum-distance . 1)
       (padding . 1)
       (stretchability . 6))
}

Attachment: paper.png
Description: PNG image


reply via email to

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