]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-hyphens-to-be-shown.ly
894863a2269c8c9b9d590aaa669382fca90e4130
[lilypond.git] / Documentation / snippets / forcing-hyphens-to-be-shown.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 = "vocal-music"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11
12 Si LilyPond no cree que haya sitio suficiente para un guión separador
13 de sílabas, lo omitirá.  Se puede sobreescribir este comportamiento
14 con la propiedad @code{minimum-distance} de @code{LyricHyphen}.
15
16 "
17   doctitlees = "Forzar la visibilidad de los guiones separadores de sílabas"
18
19
20
21   texidoc = "
22 If LilyPond does not think there is space for a hyphen, it will be
23 omitted.  The behaviour can be overridden with the
24 @code{minimum-distance} property of @code{LyricHyphen}.
25
26 "
27   doctitle = "Forcing hyphens to be shown"
28 } % begin verbatim
29
30 \relative c'' {
31   c32 c c c
32   c32 c c c
33   c32 c c c
34   c32 c c c
35 }
36 \addlyrics {
37   syl -- lab word word
38   \override LyricHyphen #'minimum-distance = #1.0
39   syl -- lab word word
40   \override LyricHyphen #'minimum-distance = #2.0
41   syl -- lab word word
42   \revert LyricHyphen #'minimum-distance
43   syl -- lab word word
44 }