]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vertically-aligning-dynamics-across-multiple-notes.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / lsr / vertically-aligning-dynamics-across-multiple-notes.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.11.51"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 Dynamics that occur at, begin on, or end on the same note will be
10 vertically aligned.  To ensure that dynamics are aligned when they do
11 not occur on the same note, increase the @code{staff-padding} property
12 of the @code{DynamicLineSpanner} object. 
13
14 "
15   doctitle = "Vertically aligning dynamics across multiple notes"
16 } % begin verbatim
17 \relative c' {
18   \override DynamicLineSpanner #'staff-padding = #4
19   c2\p f\mf
20   g2\< b4\> c\!
21 }