Thanks for your response.

For dynamics within the staff that isn't necessary, as \magnifyStaff works fine.

\version "2.19.63"
\score {
<<
  \new Staff \with { \magnifyStaff #(magstep -2) }
  \relative c' { c\p\< c c c\f }
  >>
}

The issue is changing the size of a separate dynamics staff. Changing the font size was my solution in 2.18,

\version "2.18.2"
<<
  \new Staff \with {
    fontSize = -3
    \override StaffSymbol.staff-space = #(magstep -3)
    \override StaffSymbol.thickness = #(magstep -3)
  }
  \relative c'' { c4 c c c}
  \new Dynamics \with {
    fontSize = -3
    \override Hairpin.height = #(magstep -3)
    \override Hairpin.thickness = #(magstep -3)
  }
  { s4\p\< s s s\f }
>>

but I was hoping to use 2.19's \magnifyStaff to simplify this.

Mason

Date: Wed, 20 Dec 2017 21:27:38 -0500
From: Ben <soundsfromso...@gmail.com>
To: lilypond-user@gnu.org
Subject: Re: \magnifyStaff for dynamics?
Message-ID: <6c63c15d-9bd7-8893-d58a-24da56f09...@gmail.com>
Content-Type: text/plain; charset="utf-8"; Format="flowed"


You could use something like this to change the font of the dynamics
too....?

<<
    \new Staff {
      \relative c'' {
        \dynamicDown
        c8\ff c c c c c c c
      }
    }
    \new Staff \with {
      *fontSize = #-3 \override StaffSymbol.staff-space = #(magstep -3)*
    } {
      \clef bass
      c8 c c c c\f c c c
    }
http://lsr.di.unimi.it/LSR/Item?id=399





_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to