]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-text-markups-inside-slurs.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
29   texidocfr = "
30 Lorsqu'il vous faut inscrire une annotation à l'intérieur d'une liaison,
31 la propriété @code{outside-staff-priority} doît être désactivée.
32
33 "
34   doctitlefr = "Positionnement d'une annotation à l'intérieur d'une liaison"
35
36
37   texidoc = "
38 Text markups need to have the @code{outside-staff-priority} property
39 set to false in order to be printed inside slurs.
40
41 "
42   doctitle = "Positioning text markups inside slurs"
43 } % begin verbatim
44
45 \relative c'' {
46   \override TextScript #'avoid-slur = #'inside
47   \override TextScript #'outside-staff-priority = ##f
48   c2(^\markup { \halign #-10 \natural } d4.) c8
49 }
50
51