]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly
lily.git: Rewrite translation markers.
[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: 1d589aa04c20d7711bf662618adbdd6d445db29d
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: ac6297e4fa174ac5759cc450ad085c2fac9ba00b
31   texidocfr = "
32 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.
33
34 "
35   doctitlefr = "Impression des doigtés à l'intérieur de la portée"
36
37
38   texidoc = "
39 By default, vertically oriented fingerings are positioned outside the
40 staff.  However, this behavior can be canceled. Note: you must use a
41 chord construct <>, even if it is only a single note.
42
43 "
44   doctitle = "Allowing fingerings to be printed inside the staff"
45 } % begin verbatim
46
47 \relative c' {
48   <c-1 e-2 g-3 b-5>2
49   \override Fingering #'staff-padding = #'()
50   <c-1 e-2 g-3 b-5>4 <g'-0>
51 }
52