]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/retrograde.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / retrograde.ly
1 \version "2.18.0"
2
3 \header {
4   texidoc = "@code{\\retrograde} can deal with crescendo and
5   decrescendo as long as they are properly paired with
6   @code{\\endcr}/@code{\\!} and @code{\\enddecr}.  Direction modifiers
7   on slurs like @code{^(} need to be repeated as @code{^)} at the end.
8   Ties and glissandi work mostly (in-chord ties are turned into
9   ordinary per-chord/note ties, however)."
10 }
11
12 \layout { ragged-right = ##t }
13
14 motif =
15 \relative {
16   \override TextSpanner.bound-details.left.text = "motif"
17   <c' e>2~\startTextSpan  c16\< d^( e f~ f4:32^)\!\> |
18   <<
19     \context Voice = "voice" {
20       <g~ b>4 g8\glissando f\stopTextSpan\enddecr }
21     \\
22     { c2 }
23   >>
24 }
25
26 \new Voice = "voice" {
27   \motif
28   \override TextSpanner.bound-details.left.text = "retrograde motif"
29   \retrograde  \motif \bar "|."
30 }