summaryrefslogtreecommitdiff
path: root/Documentation/snippets/forcing-hyphens-to-be-shown.ly
blob: 4a2be161dc30760a88e50e3a26a2d83708daef8c (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.14.2"

\header {
  lsrtags = "vocal-music"

%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
  texidoces = "

Si LilyPond no cree que haya sitio suficiente para un guión separador
de sílabas, lo omitirá.  Se puede sobreescribir este comportamiento
con la propiedad @code{minimum-distance} de @code{LyricHyphen}.

"
  doctitlees = "Forzar la visibilidad de los guiones separadores de sílabas"



%% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
  texidocfr = "
LilyPond n'imprimera de tiret entre deux syllabes que s'il juge qu'il y
a suffisamment d'espace.  Ce comportement peut être modifié grâce à la
propriété @code{minimum-distance} de @code{LyricHyphen}.

"
  doctitlefr = "Impression forcée de tirets entre syllabes"

  texidoc = "
If LilyPond does not think there is space for a hyphen, it will be
omitted.  The behaviour can be overridden with the
@code{minimum-distance} property of @code{LyricHyphen}.

"
  doctitle = "Forcing hyphens to be shown"
} % begin verbatim


\relative c'' {
  c32 c c c
  c32 c c c
  c32 c c c
  c32 c c c
}
\addlyrics {
  syl -- lab word word
  \override LyricHyphen #'minimum-distance = #1.0
  syl -- lab word word
  \override LyricHyphen #'minimum-distance = #2.0
  syl -- lab word word
  \revert LyricHyphen #'minimum-distance
  syl -- lab word word
}