From: Han-Wen Nienhuys Date: Tue, 19 Feb 2008 02:54:05 +0000 (-0300) Subject: Add a packed-spacing example. X-Git-Tag: release/2.11.41-1~38^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=955af9fce88bfb74caf1b02e36362cfbcdf91d54;p=lilypond.git Add a packed-spacing example. --- diff --git a/input/regression/spacing-packed.ly b/input/regression/spacing-packed.ly new file mode 100644 index 0000000000..c108cb6e11 --- /dev/null +++ b/input/regression/spacing-packed.ly @@ -0,0 +1,23 @@ +\header { + texidoc = " + In packed mode, pack notes as tight as possible. This makes + sense mostly in combination with raggedright mode: the notes + are then printed at minimum distance. This is mostly useful + for ancient notation, but may also be useful for some flavours + of contemporary music. If not in raggedright mode, lily will + pack as much bars of music as possible into a line, but the + line will then be stretched to fill the whole linewidth. +" + } + +\version "2.11.40" + +\layout { + ragged-right = ##t +} + + +\relative { + \override Score.SpacingSpanner #'packed-spacing = ##t + c2 d4 f8[ g] +}