]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / allowing-fingerings-to-be-printed-inside-the-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "spacing, fretted-strings, specific-notation, editorial-annotations"
11
12   texidoc = "
13 By default, vertically oriented fingerings are positioned outside the
14 staff.  However, this behavior can be canceled. Note: you must use a
15 chord construct <>, even if it is only a single note.
16
17 "
18   doctitle = "Allowing fingerings to be printed inside the staff"
19 } % begin verbatim
20
21
22 \relative c' {
23   <c-1 e-2 g-3 b-5>2
24   \override Fingering #'staff-padding = #'()
25   <c-1 e-2 g-3 b-5>4 <g'-0>
26 }