]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
Docs: update LSR
[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.4"
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
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20   texidocde = "
21 Normalerweise werden vertikal orientierte Fingersatzzahlen außerhalb des Systems
22 gesetzt.  Das kann aber verändert werden.
23
24 "
25   doctitlede = "Fingersatz auch innerhalb des Systems setzen"
26
27 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
28   texidocfr = "
29 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.
30
31 "
32   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
33
34
35   texidoc = "
36 By default, vertically oriented fingerings are positioned outside the
37 staff.  However, this behavior can be canceled. Note: you must use a
38 chord construct <>, even if it is only a single note.
39
40 "
41   doctitle = "Allowing fingerings to be printed inside the staff"
42 } % begin verbatim
43
44 \relative c' {
45   <c-1 e-2 g-3 b-5>2
46   \override Fingering #'staff-padding = #'()
47   <c-1 e-2 g-3 b-5>4 <g'-0>
48 }
49