]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-text-markups-inside-slurs.ly
deeca5bc2d5475c6fc2537840d448861c00d2efc
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
32   texidocfr = "
33 Lorsqu'une annotation doit s'incrire à l'intérieur d'une liaison, la
34 propriété @code{outside-staff-priority} doit être désactivée.
35
36 "
37   doctitlefr = "Positionnement d'une annotation à l'intérieur d'une liaison"
38
39   texidoc = "
40 Text markups need to have the @code{outside-staff-priority} property
41 set to false in order to be printed inside slurs.
42
43 "
44   doctitle = "Positioning text markups inside slurs"
45 } % begin verbatim
46
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