]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/minimum-length-broken-ties.ly
Doc-es: various updates.
[lilypond.git] / input / regression / minimum-length-broken-ties.ly
1 \version "2.19.16"
2
3 \header {
4   texidoc = "The following shows the interaction between the
5 properties @code{minimum-length} and
6 @code{minimum-length-after-break}.  When @code{minimum-length}
7 is used alone, both segments of the tie are affected.  The
8 properties @code{minimum-length-after-break} only affects
9 the sibling starting a line.  Both properties may be used
10 together to create independent changes of both siblings.  This
11 example shows that both properties have an identical effect on
12 the sibling after the break.
13 "
14 }
15
16 \layout {
17   ragged-right = ##t
18 }
19
20 music = {
21   <gis' cis'' dis'' gis''>1~
22   \break
23   q1
24 }
25
26 {
27   % default
28   \music
29
30   \once \override Tie.minimum-length = 11
31   \music
32
33   \once \override Tie.minimum-length-after-break = 11
34   \music
35
36   \once \override Tie.minimum-length = 8
37   \once \override Tie.minimum-length-after-break = 11
38   \music
39 }