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