]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
10c617c097419a7c62436861078740ed64d3ac33
[lilypond.git] / Documentation / snippets / allowing-fingerings-to-be-printed-inside-the-staff.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.10"
5
6 \header {
7   lsrtags = "editorial-annotations, fretted-strings, spacing"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Las cifras de digitación orientadas verticalmente se colocan de
12 forma predeterminada fuera del pentagrama.  Sin embargo, este
13 comportamiento se puede cancelar.
14
15 "
16   doctitlees = "Permitir que las digitaciones se impriman dentro del pentagrama"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Normalerweise werden vertikal orientierte Fingersatzzahlen außerhalb des Systems
21 gesetzt.  Das kann aber verändert werden.
22
23 "
24   doctitlede = "Fingersatz auch innerhalb des Systems setzen"
25 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
26   texidocfr = "
27 L'empilement des indications de doigté se fait par défaut à l'extérieur de la portée.  Néanmoins, il est possible d'annuler ce comportement.
28
29 "
30   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
31
32
33   texidoc = "
34 By default, vertically oriented fingerings are positioned outside the
35 staff.  However, this behavior can be canceled. Note: you must use a
36 chord construct <>, even if it is only a single note.
37
38 "
39   doctitle = "Allowing fingerings to be printed inside the staff"
40 } % begin verbatim
41
42 \relative c' {
43   <c-1 e-2 g-3 b-5>2
44   \override Fingering #'staff-padding = #'()
45   <c-1 e-2 g-3 b-5>4 <g'-0>
46 }
47