]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
ee9b8f80aaa3091ba45eb656422bad2649c31f33
[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.16"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21 texidocde = "
22 Wenn die Note, an welcher eine Crescendo-Klammer endet, die erste Note
23 eines Taktes ist, wird die Klammer an der vorhergehenden Tatklinie
24 beendet.  Dieses Verhalten kann auch mit der Eigenschaft
25 @code{'to-barline} geändert werden:
26 "
27   doctitlede = "Das Verhalten von Crescendo-Klammern an Taktlinien beeinflussen"
28
29 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
30   texidocfr = "
31 En principe, un soufflet -- (de)crescendo imprimé sous forme graphique --
32 commence au bord gauche de la note de départ, et se termine au
33 bord droit de la note d'arrivée.  Cependant, si la note d'arrivée
34 est sur un premier temps, le soufflet s'arrêtera au niveau de la
35 barre de mesure qui la précède.  Ce comportement peut être annulé
36 en assignant @emph{faux} (@code{#f}) à la propriété @code{'to-barline} :
37
38 "
39   doctitlefr = "Soufflets et barres de mesure"
40
41
42   texidoc = "
43 If the note which ends a hairpin falls on a downbeat, the hairpin stops
44 at the bar line immediately preceding.  This behavior can be controlled
45 by overriding the @code{'to-barline} property.
46
47 "
48   doctitle = "Setting hairpin behavior at bar lines"
49 } % begin verbatim
50
51 \relative c'' {
52   e4\< e2.
53   e1\!
54   \override Hairpin #'to-barline = ##f
55   e4\< e2.
56   e1\!
57 }