]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-a-delayed-turn.ly
Merge commit 'origin' into includes
[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   texidoc = "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 #f, as otherwise
10   this would take precedence over the @code{avoid-slur property}.  The
11   value of @code{halign} is used to position the turn horizontally."
12
13   doctitle = "Creating a delayed turn"
14 } % begin verbatim
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 }