]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-hyphens-to-be-shown.ly
69792fb1cffed492e5f73dd57353131e0fd302e7
[lilypond.git] / Documentation / snippets / forcing-hyphens-to-be-shown.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "vocal-music"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14
15 Si LilyPond no cree que haya sitio suficiente para un guión separador
16 de sílabas, lo omitirá.  Se puede sobreescribir este comportamiento
17 con la propiedad @code{minimum-distance} de @code{LyricHyphen}.
18
19 "
20   doctitlees = "Forzar la visibilidad de los guiones separadores de sílabas"
21
22
23
24   texidoc = "
25 If LilyPond does not think there is space for a hyphen, it will be
26 omitted.  The behaviour can be overridden with the
27 @code{minimum-distance} property of @code{LyricHyphen}.
28
29 "
30   doctitle = "Forcing hyphens to be shown"
31 } % begin verbatim
32
33
34 \relative c'' {
35   c32 c c c
36   c32 c c c
37   c32 c c c
38   c32 c c c
39 }
40 \addlyrics {
41   syl -- lab word word
42   \override LyricHyphen #'minimum-distance = #1.0
43   syl -- lab word word
44   \override LyricHyphen #'minimum-distance = #2.0
45   syl -- lab word word
46   \revert LyricHyphen #'minimum-distance
47   syl -- lab word word
48 }