]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign.ly
70e375fe7a11ce41895ddfc13fa86da10846b764
[lilypond.git] / input / regression / breathing-sign.ly
1 \header{
2 texidoc="
3 Breathing signs, also used for phrasing, do normally not influence
4 global spacing -- only if space gets tight, notes are shifted to make
5 room for the breathing sign. Breathing signs break beams running
6 through their voice. In the following example, the notes in the first
7 two measures all have the same distance from each other:
8 ";
9 }
10
11
12 \version "1.3.117";
13
14 \score {
15   \notes \relative c' {
16     \key es \major; \time 3/4;
17     < \context Voice = two { \stemDown es4 bes es }
18       \context Voice = one { \stemUp g4 as g }
19     > |
20     < \context Voice = two { \stemDown es4 \breathe bes es }
21       \context Voice = one { \stemUp g4 as g }
22     > |
23     es8 d es f g4 \breathe |
24     es8 d \breathe es f g f |
25     es2 r4 \bar "||";
26   }
27 }