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