]> git.donarmstrong.com Git - lilypond.git/blob - input/new/creating-a-delayed-turn.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond into ralph
[lilypond.git] / input / new / creating-a-delayed-turn.ly
1 \version "2.12.0"
2
3 \header {
4   lsrtags = "expressive-marks, editorial-annotations, 
5 tweaks-and-overrides"
6
7   texidoc = "
8 Creating a delayed turn, where the lower note of the
9 turn uses the accidental, requires several overrides.  The
10 @code{outside-staff-priority} property must be set to @code{#f},
11 as otherwise this would take precedence over the
12 @code{avoid-slur property}.  The value of @code{halign} is used
13 to position the turn horizontally."
14
15   doctitle = "Creating a delayed turn"
16 }
17
18 \relative c'' {
19   \once \override TextScript #'avoid-slur = #'inside
20   \once \override TextScript #'outside-staff-priority = ##f
21   c2(^\markup \tiny \override #'(baseline-skip . 1) {
22     \halign #-4
23     \center-column {
24       \sharp
25       \musicglyph #"scripts.turn"
26     }
27   }
28   d4.) c8
29 }