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