]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / setting-hairpin-behavior-at-bar-lines.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.4"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Si la nota que da fin a un regulador cae sobre la primera parte de
12 un compás, el regulador se detiene en la línea divisoria
13 inmediatamente precedente.  Se puede controlar este comportamiento
14 sobreescribiendo la propiedad @code{'to-barline}.
15
16 "
17   doctitlees = "Establecer el comportamiento de los reguladores en las barras de compás"
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 texidocde = "
21 Wenn die Note, an welcher eine Crescendo-Klammer endet, die erste Note
22 eines Taktes ist, wird die Klammer an der vorhergehenden Tatklinie
23 beendet.  Dieses Verhalten kann auch mit der Eigenschaft
24 @code{'to-barline} geändert werden:
25 "
26   doctitlede = "Das Verhalten von Crescendo-Klammern an Taktlinien beeinflussen"
27 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
28   texidocfr = "
29 En principe, un soufflet -- (de)crescendo imprimé sous forme graphique --
30 commence au bord gauche de la note de départ, et se termine au
31 bord droit de la note d'arrivée.  Cependant, si la note d'arrivée
32 est sur un premier temps, le soufflet s'arrêtera au niveau de la
33 barre de mesure qui la précède.  Ce comportement peut être annulé
34 en assignant @emph{faux} (@code{#f}) à la propriété @code{'to-barline} :
35
36 "
37   doctitlefr = "Soufflets et barres de mesure"
38
39
40   texidoc = "
41 If the note which ends a hairpin falls on a downbeat, the hairpin stops
42 at the bar line immediately preceding.  This behavior can be controlled
43 by overriding the @code{'to-barline} property.
44
45 "
46   doctitle = "Setting hairpin behavior at bar lines"
47 } % begin verbatim
48
49 \relative c'' {
50   e4\< e2.
51   e1\!
52   \override Hairpin #'to-barline = ##f
53   e4\< e2.
54   e1\!
55 }