I have a score with a whole note with \p on the first beat and \f on the third
beat of the measure. I'm doing this using parallel music expressions:
<< { g1} { s2\p s\f} >> | % 42Now, the problem is that the score consists almost entirely of whole or half notes, so that measure is too small and the f is printed above the p (since it would collide with the f). How can I make that one measure wider, while all other measures are spaced normally? I can't make the whole horizontal spacing wider, because then the music wouldn't fit on one page any more. However, there are several measures with whole notes, which can be a bit smaller to obtain the space needed for those wider measures. Attached is a sample file for my case, where everything should fit in one line.. Cheers, Reinhold -- ------------------------------------------------------------------ Reinhold Kainhofer, [email protected], http://reinhold.kainhofer.com/ * Financial & Actuarial Math., Vienna Univ. of Technology, Austria * http://www.fam.tuwien.ac.at/, DVR: 0005886 * LilyPond, Music typesetting, http://www.lilypond.org
Horizontal-spacing-dynamics.pdf
Description: Adobe PDF document
\version "2.13.3"
\paper {
ragged-right=##f
ragged-last=##f
}
#(set-global-staff-size 15)
\pointAndClickOff
\new Voice \relative c' {
\dynamicUp
<< { c1 } {s2\f s2\p} >>
d2 e |
f4 e d c |
<< { c1 } {s2\p s2\f} >>
d2 e |
f4 e d c |
<< { c1 } {s2\f s2\p} >>
d2 e |
f4 e d c |
<< { c1 } {s2\p s2\f} >>
d2 e |
f4 e d c |
<< { c1 } {s2\f s2\p} >>
d2 e |
}
_______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
