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