]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
a3f591000e97dc73c4e389aa9ca497311d25293e
[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.39"
5
6 \header {
7   lsrtags = "editorial-annotations, fretted-strings, spacing"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Normalerweise werden vertikal orientierte Fingersatzzahlen außerhalb des Systems
25 gesetzt.  Das kann aber verändert werden.
26
27 "
28   doctitlede = "Fingersatz auch innerhalb des Systems setzen"
29
30 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
31   texidocfr = "
32 L'empilement des indications de doigté se fait par défaut à l'extérieur
33 de la portée.  Néanmoins, il est possible d'annuler ce comportement.
34
35 "
36   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
37
38
39   texidoc = "
40 By default, vertically oriented fingerings are positioned outside the
41 staff.  However, this behavior can be canceled. Note: you must use a
42 chord construct <>, even if it is only a single note.
43
44 "
45   doctitle = "Allowing fingerings to be printed inside the staff"
46 } % begin verbatim
47
48 \relative c' {
49   <c-1 e-2 g-3 b-5>2
50   \override Fingering #'staff-padding = #'()
51   <c-1 e-2 g-3 b-5>4 <g'-0>
52 }
53