]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / setting-hairpin-behavior-at-bar-lines.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8 %% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
9   texidoces = "
10 Si la nota que da fin a un regulador cae sobre la primera parte de
11 un compás, el regulador se detiene en la línea divisoria
12 inmediatamente precedente.  Se puede controlar este comportamiento
13 sobreescribiendo la propiedad @code{to-barline}.
14
15 "
16   doctitlees = "Establecer el comportamiento de los reguladores en las barras de compás"
17   
18 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
19 texidocde = "
20 Wenn die Note, an welcher eine Crescendo-Klammer endet, die erste Note
21 eines Taktes ist, wird die Klammer an der vorhergehenden Tatklinie
22 beendet.  Dieses Verhalten kann auch mit der Eigenschaft
23 @code{'to-barline} geändert werden:
24 "
25   doctitlede = "Das Verhalten von Crescendo-Klammern an Taktlinien beeinflussen"
26
27   texidoc = "
28 If the note which ends a hairpin falls on a downbeat, the hairpin stops
29 at the bar line immediately preceding.  This behavior can be controlled
30 by overriding the @code{'to-barline} property.
31
32 "
33   doctitle = "Setting hairpin behavior at bar lines"
34 } % begin verbatim
35
36 \relative c'' {
37   e4\< e2.
38   e1\!
39   \override Hairpin #'to-barline = ##f
40   e4\< e2.
41   e1\!
42 }