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