]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
Merge branch 'master' into lilypond/translation
[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.20"
5
6 \header {
7   lsrtags = "editorial-annotations, fretted-strings, spacing"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
29   texidocfr = "
30 L'empilement des indications de doigté se fait par défaut à l'extérieur
31 de la portée.  Néanmoins, il est possible d'annuler ce comportement.
32
33 "
34   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
35
36
37   texidoc = "
38 By default, vertically oriented fingerings are positioned outside the
39 staff.  However, this behavior can be canceled. Note: you must use a
40 chord construct <>, even if it is only a single note.
41
42 "
43   doctitle = "Allowing fingerings to be printed inside the staff"
44 } % begin verbatim
45
46 \relative c' {
47   <c-1 e-2 g-3 b-5>2
48   \override Fingering #'staff-padding = #'()
49   <c-1 e-2 g-3 b-5>4 <g'-0>
50 }
51