lilypond-user
[Top][All Lists]
Advanced

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

Re: lilypond-user Digest, Vol 181, Issue 111


From: Mason Hock
Subject: Re: lilypond-user Digest, Vol 181, Issue 111
Date: Thu, 21 Dec 2017 10:33:07 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0

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 <address@hidden>
To: address@hidden
Subject: Re: \magnifyStaff for dynamics?
Message-ID: <address@hidden>
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







reply via email to

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