]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-hyphens-to-be-shown.ly
Merge branch 'translation' into staging
[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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 LilyPond n'imprimera de tiret entre deux syllabes que s'il juge qu'il y
13 a suffisamment d'espace.  Ce comportement peut être modifié grâce à la
14 propriété @code{minimum-distance} de @code{LyricHyphen}.
15
16 "
17   doctitlefr = "Impression forcée de tirets entre syllabes"
18
19   lsrtags = "vocal-music"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24
25 Si LilyPond no cree que haya sitio suficiente para un guión separador
26 de sílabas, lo omitirá.  Se puede sobreescribir este comportamiento
27 con la propiedad @code{minimum-distance} de @code{LyricHyphen}.
28
29 "
30   doctitlees = "Forzar la visibilidad de los guiones separadores de sílabas"
31
32
33
34   texidoc = "
35 If LilyPond does not think there is space for a hyphen, it will be
36 omitted.  The behaviour can be overridden with the
37 @code{minimum-distance} property of @code{LyricHyphen}.
38
39 "
40   doctitle = "Forcing hyphens to be shown"
41 } % begin verbatim
42
43
44 \relative c'' {
45   c32 c c c
46   c32 c c c
47   c32 c c c
48   c32 c c c
49 }
50 \addlyrics {
51   syl -- lab word word
52   \override LyricHyphen #'minimum-distance = #1.0
53   syl -- lab word word
54   \override LyricHyphen #'minimum-distance = #2.0
55   syl -- lab word word
56   \revert LyricHyphen #'minimum-distance
57   syl -- lab word word
58 }