]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-text-markups-inside-slurs.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / positioning-text-markups-inside-slurs.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
7
8 %% Translation of GIT committish: b10de35f895919aec109de6fb1fc84d42ad851b3
9   texidoces = "
10
11 Los elementos de marcado de texto deben tener la propiedad
12 @code{outside-staff-priority} establecida al valor falso para que se
13 impriman por dentro de las ligaduras de expresión.
14
15 "
16   doctitlees = "Situar los elementos de marcado de texto por dentro de las ligaduras"
17
18 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
19   texidocde = "
20 Textbeschriftung kann innerhalb von Bögen gesetzt werden, wenn die
21 @code{outside-staff-priority}-Eigenschaft auf falsch gesetzt wird.
22
23 "
24   doctitlede = "Textbeschriftung innerhalb von Bögen positionieren"
25
26   texidoc = "
27 Text markups need to have the @code{outside-staff-priority} property
28 set to false in order to be printed inside slurs. 
29
30 "
31   doctitle = "Positioning text markups inside slurs"
32 } % begin verbatim
33
34 \relative c'' {
35   \override TextScript #'avoid-slur = #'inside
36   \override TextScript #'outside-staff-priority = ##f
37   c2(^\markup { \halign #-10 \natural } d4.) c8
38 }
39
40