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