bug-lilypond
[Top][All Lists]
Advanced

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

Re: A suggestion for Dynamic staves


From: Carl Sorensen
Subject: Re: A suggestion for Dynamic staves
Date: Fri, 1 Oct 2021 16:46:03 +0000
User-agent: Microsoft-MacOutlook/10.10.1b.201012


On 9/30/21, 10:32 AM, "Peter Toye" <lilypond@ptoye.com> wrote:

    Oddly, Frescobaldi doesn't recognise \magnifyMusiceither wher I've put it 
or within the brackets.

You haven't matched the required structure for the file.  Our parser is 
flexible to allow different kinds of music functions, so sometimes the error 
messages are less than helpful.

Here's code that works (note the extra set of braces to put all the \
magnifyMusic and the music argument all within the Dynamics context.

\version "2.22.1"
\language "english"
\score {
  <<
    \new Staff {
      \relative {
        a'4\f 4 4\> 4
        4 4 4 4\!
      }
    }
    \new Staff \with {
      \magnifyStaff #5/7
    }
    { \relative {
      a'4\f 4 4\> 4
      4 4 4 4\!
      }
    }
    \new Dynamics {
    \magnifyMusic #5/7
    {
%      \override DynamicText.font-size = #-3
      s4\f 4 4\> 4
      4 4 4 4\!
    }
    }
  >>
}


reply via email to

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