]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12   texidoc = "
13 If the note which ends a hairpin falls on a downbeat, the hairpin stops
14 at the bar line immediately preceding.  This behavior can be controlled
15 by overriding the @code{'to-barline} property.
16
17 "
18   doctitle = "Setting hairpin behavior at bar lines"
19 } % begin verbatim
20
21 \relative c'' {
22   e4\< e2.
23   e1\!
24   \override Hairpin.to-barline = ##f
25   e4\< e2.
26   e1\!
27 }