]> git.donarmstrong.com Git - lilypond.git/blob - input/test/slur-manual.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / slur-manual.ly
1 \version "2.1.26"
2 \header {
3
4
5     texidoc = "In extreme cases, you can resort to setting slur
6     control-points manually. This involves a lot of trial and error,
7     though. Be sure to force line breaks at both sides, since
8     different horizontal spacing will require rearrangement of the
9     slur."
10  
11     }
12
13
14 \score {\notes \new PianoStaff  <<
15     \context Staff = up { \clef bass s1 * 6 } 
16     \context Staff = down \relative c {
17         \clef bass
18         r4 r8
19         \once\override Slur  #'extra-offset = #'(0 . -8)
20         \once\override Slur  #'control-points =
21         #'((0 . -4) (2 . 0) (60 . 0) (63 . 4))
22                            c8( as' f c' as f c as' f
23                            \change Staff = up
24                            \clef treble
25                            c' as f' c as' f c' as
26                            f' c as' f c'4)
27                            }>>
28 \paper { raggedright = ##t }
29     }