]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-text-markups-inside-slurs.ly
56cd5f0af26d896dccb0528744810d2055534191
[lilypond.git] / Documentation / snippets / positioning-text-markups-inside-slurs.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 = "expressive-marks, editorial-annotations, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11
12 Los elementos de marcado de texto deben tener la propiedad
13 @code{outside-staff-priority} establecida al valor falso para que se
14 impriman por dentro de las ligaduras de expresión.
15
16 "
17   doctitlees = "Situar los elementos de marcado de texto por dentro de las ligaduras"
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Textbeschriftung kann innerhalb von Bögen gesetzt werden, wenn die
22 @code{outside-staff-priority}-Eigenschaft auf falsch gesetzt wird.
23
24 "
25   doctitlede = "Textbeschriftung innerhalb von Bögen positionieren"
26 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
27   texidocfr = "
28 Lorsqu'il vous faut inscrire une annotation à l'intérieur d'une liaison,
29 la propriété @code{outside-staff-priority} doît être désactivée.
30
31 "
32   doctitlefr = "Positionnement d'une annotation à l'intérieur d'une liaison"
33
34
35   texidoc = "
36 Text markups need to have the @code{outside-staff-priority} property
37 set to false in order to be printed inside slurs.
38
39 "
40   doctitle = "Positioning text markups inside slurs"
41 } % begin verbatim
42
43 \relative c'' {
44   \override TextScript #'avoid-slur = #'inside
45   \override TextScript #'outside-staff-priority = ##f
46   c2(^\markup { \halign #-10 \natural } d4.) c8
47 }
48
49