]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-text-markups-inside-slurs.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: ae814f45737bd1bdaf65b413a4c37f70b84313b7
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