]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign.ly
*** empty log message ***
[lilypond.git] / input / regression / breathing-sign.ly
1 \version "1.7.6"
2 \header{
3 texidoc="
4 Breathing signs, also used for phrasing, do normally not influence
5 global spacing -- only if space gets tight, notes are shifted to make
6 room for the breathing sign. Breathing signs break beams running
7 through their voice. In the following example, the notes in the first
8 two measures all have the same distance from each other.
9
10 Breathing signs are available in different tastes: commas (default),
11 ticks, vees and `railroad tracks' (caesura).
12
13 " }
14
15
16
17
18 \score {
19   \notes \relative c' {
20     \key es \major \time 3/4
21     < \context Voice = two { \stemDown es4 bes es }
22       \context Voice = one { \stemUp g4 as g }
23     > |
24     < \context Voice = two { \stemDown es4 \breathe bes es }
25       \context Voice = one { \stemUp g4 as g }
26     > |
27 % Change to wedge:
28     \property Voice.BreathingSign \override #'text = #"scripts-upbow"
29     es8 d es f g8 \breathe f |
30
31     \property Voice.BreathingSign \set #'text = #"scripts-caesura"
32     [es8 d] \breathe [es f g f] |
33     es2 r4 \bar "||"
34   }
35 }