]> 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
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21   texidocde = "
22 Textbeschriftung kann innerhalb von Bögen gesetzt werden, wenn die
23 @code{outside-staff-priority}-Eigenschaft auf falsch gesetzt wird.
24
25 "
26   doctitlede = "Textbeschriftung innerhalb von Bögen positionieren"
27
28   texidoc = "
29 Text markups need to have the @code{outside-staff-priority} property
30 set to false in order to be printed inside slurs.
31
32 "
33   doctitle = "Positioning text markups inside slurs"
34 } % begin verbatim
35
36 \relative c'' {
37   \override TextScript #'avoid-slur = #'inside
38   \override TextScript #'outside-staff-priority = ##f
39   c2(^\markup { \halign #-10 \natural } d4.) c8
40 }
41
42