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