]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 Taktlinie
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: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
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 }