shortest-duration-space
property may be tweaked to adjust the shape of falls and doits.
What's this? Searching the LSR Browse by date Contributing Snippet database | Browsing items 60−69 out of 943 |
full-measure-extra-space
property of NonMusicalPaperColumn
. The default is 1. A value of zero removes the extra space allowed; -1 removes the space completely. Positive numbers greater than 1 increase the spacing.
For joining syllables, LilyPond doesn't use the hyphen of the text font but instead draws a simple line with variable length. Its standard vertical position doesn't always fit the proportions of the text font. When using a font with a large x-height, it may be too low.
You can adjust the vertical positioning of the hyphens manually. To get a good result you may want to insert a “real” hyphen for comparision (the l-e in the snippet).
\markup \fill-line { \column { "line1" "line2" ... } \column { "line1" "line2" ... } }
to create text markup in multiple columns (for example, writing out the text of various stanzas after the score). However, the column widths are calculated from the contents, so columns from different markups are not aligned with each other.\columns
macro, which makes each column exactly 1/n of the line-width, thus aligning even columns of different markups. The syntax stays the same, only that one has to use \columns
instead of \fill-line
:
\markup \columns { \column{"default column 1" "line 2"} \column{"column 2, wider than the rest" "line 2"} \column{"c 3" "line 2"} }