]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/fingering-symbols-for-wind-instruments.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / fingering-symbols-for-wind-instruments.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "winds"
8
9   texidoc = "
10 Special symbols can be achieved by combining existing glyphs, which is
11 useful for wind instruments.
12
13 "
14   doctitle = "Fingering symbols for wind instruments"
15 } % begin verbatim
16
17 centermarkup = {
18   \once \override TextScript #'self-alignment-X = #CENTER
19   \once \override TextScript #'X-offset =#(ly:make-simple-closure
20     `(,+
21       ,(ly:make-simple-closure (list
22         ly:self-alignment-interface::centered-on-x-parent))
23       ,(ly:make-simple-closure (list
24         ly:self-alignment-interface::x-aligned-on-self))))
25 }
26 \score
27 {\relative c'
28   {
29     g\open
30     \once \override TextScript #'staff-padding = #-1.0 \centermarkup
31     g^\markup{\combine \musicglyph #"scripts.open" \musicglyph
32     #"scripts.tenuto"}
33     \centermarkup g^\markup{\combine \musicglyph #"scripts.open"
34     \musicglyph #"scripts.stopped"}
35     g\stopped
36   }
37 }
38