]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-hyphens-to-be-shown.ly
Fix white space
[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.0"
8
9 \header {
10   lsrtags = "vocal-music"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c'' {
34   c32 c c c
35   c32 c c c
36   c32 c c c
37   c32 c c c
38 }
39 \addlyrics {
40   syl -- lab word word
41   \override LyricHyphen #'minimum-distance = #1.0
42   syl -- lab word word
43   \override LyricHyphen #'minimum-distance = #2.0
44   syl -- lab word word
45   \revert LyricHyphen #'minimum-distance
46   syl -- lab word word
47 }