]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
Allow open strings in chords regardless of finger positions
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
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
45   texidoc = "
46 If the note which ends a hairpin falls on a downbeat, the hairpin stops
47 at the bar line immediately preceding.  This behavior can be controlled
48 by overriding the @code{'to-barline} property.
49
50 "
51   doctitle = "Setting hairpin behavior at bar lines"
52 } % begin verbatim
53
54 \relative c'' {
55   e4\< e2.
56   e1\!
57   \override Hairpin #'to-barline = ##f
58   e4\< e2.
59   e1\!
60 }