On 9/30/21, 10:32 AM, "Peter Toye" <[email protected]> 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\!
}
}
>>
}
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond