]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
e357423ff586b03f1e3ddb05cd0c0715c25b30f3
[lilypond.git] / Documentation / snippets / allowing-fingerings-to-be-printed-inside-the-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.12.2"
8
9 \header {
10   lsrtags = "editorial-annotations, fretted-strings, spacing"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13
14   texidoces = "
15 Las cifras de digitación orientadas verticalmente se colocan de forma
16 predeterminada fuera del pentagrama.  Sin embargo, este comportamiento
17 se puede cancelar.  Nota: se debe usar una construcción de acorde <>,
18 aunque sea una sola nota.
19
20
21 "
22   doctitlees = "Permitir que las digitaciones se impriman dentro del pentagrama"
23
24
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26   texidocde = "
27 Normalerweise werden vertikal orientierte Fingersatzzahlen außerhalb des Systems
28 gesetzt.  Das kann aber verändert werden.
29
30 "
31   doctitlede = "Fingersatz auch innerhalb des Systems setzen"
32
33 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
34   texidocfr = "
35 L'empilement des indications de doigté se fait par défaut à l'extérieur
36 de la portée.  Néanmoins, il est possible d'annuler ce comportement.
37
38 "
39   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
40
41
42   texidoc = "
43 By default, vertically oriented fingerings are positioned outside the
44 staff.  However, this behavior can be canceled. Note: you must use a
45 chord construct <>, even if it is only a single note.
46
47 "
48   doctitle = "Allowing fingerings to be printed inside the staff"
49 } % begin verbatim
50
51 \relative c' {
52   <c-1 e-2 g-3 b-5>2
53   \override Fingering #'staff-padding = #'()
54   <c-1 e-2 g-3 b-5>4 <g'-0>
55 }
56