]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-single-manual.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / tie-single-manual.ly
1
2 \header {
3   texidoc = "Individual ties may be formatted manually by
4 specifying their @code{direction} and/@/or @code{staff-position}."
5   
6 }
7
8 \version "2.14.0"
9
10 \paper {
11   ragged-right = ##t
12 }
13
14 {
15   \override Tie #'staff-position = #-5.5
16   c'4 ~ c'
17   \override Tie #'staff-position = #-6.5
18   c'4 ~ c'
19   \override Tie #'staff-position = #-7.5
20   c'4 ~ c'
21   \revert Tie #'staff-position
22   \override Tie #'direction = #UP
23   c'4 ~ c'
24 }