]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/contemporary/glissando-written-out-in-small-notes.ly
LSR: update known snippets.
[lilypond.git] / input / lsr / contemporary / glissando-written-out-in-small-notes.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 Sometimes a glissando is written out in smaller notes. This example
6 shows how to do this.
7 " }
8
9 \relative c' {
10         \clef treble
11         \key c \major
12         \time 3/8
13
14         fis16.[-> a64 g]
15
16         % Make tuplet markings invisible
17         \once \override TupletBracket  #'number-visibility = ##f
18         \once \override TupletBracket  #'bracket-visibility = ##f
19
20         % Prepare for small notes
21         \override NoteHead #'font-size = #-4
22         \override Accidental #'font-size = #-4
23
24         % Force stem direction down
25         \stemDown
26
27         % Tuplet with small notes
28         \times 3/42 { fis8[( g gis a bes b c cis d dis e f fis g gis a bes! b c cis d] }
29
30         % Restore normal note size
31         \revert NoteHead #'font-size
32         \revert Accidental #'font-size
33
34         es32.[) fis,,64]
35 }