]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/fingering-symbols-for-wind-instruments.ly
Authors: update Translation Meister status.
[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.31"
5
6 \header {
7 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
8   texidocfr = "
9 Des sumboles spécifiques peuvent être obtenus en combinant les glyphes
10 disponibles, ce qui est tout à fait indiqué en matière d'instrument à vent.
11
12 "
13   doctitlefr = "Symboles de doigtés pour instruments à vent"
14
15
16   lsrtags = "winds"
17
18   texidoc = "
19 Special symbols can be achieved by combining existing glyphs, which is
20 useful for wind instruments.
21
22 "
23   doctitle = "Fingering symbols for wind instruments"
24 } % begin verbatim
25
26 centermarkup = {
27   \once \override TextScript #'self-alignment-X = #CENTER
28   \once \override TextScript #'X-offset =#(ly:make-simple-closure
29     `(,+
30       ,(ly:make-simple-closure (list
31         ly:self-alignment-interface::centered-on-x-parent))
32       ,(ly:make-simple-closure (list
33         ly:self-alignment-interface::x-aligned-on-self))))
34 }
35 \score
36 {\relative c'
37   {
38     g\open
39     \once \override TextScript #'staff-padding = #-1.0 \centermarkup
40     g^\markup{\combine \musicglyph #"scripts.open" \musicglyph
41     #"scripts.tenuto"}
42     \centermarkup g^\markup{\combine \musicglyph #"scripts.open"
43     \musicglyph #"scripts.stopped"}
44     g\stopped
45   }
46 }
47