]> 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
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   texidoc = "
30 If the note which ends a hairpin falls on a downbeat, the hairpin stops
31 at the bar line immediately preceding.  This behavior can be controlled
32 by overriding the @code{'to-barline} property.
33
34 "
35   doctitle = "Setting hairpin behavior at bar lines"
36 } % begin verbatim
37
38 \relative c'' {
39   e4\< e2.
40   e1\!
41   \override Hairpin #'to-barline = ##f
42   e4\< e2.
43   e1\!
44 }