]> git.donarmstrong.com Git - lilypond.git/blob - input/new/inserting-a-caesura.ly
df2ad1a1159170f95a71555eefdd9136dc4c8d6d
[lilypond.git] / input / new / inserting-a-caesura.ly
1 \version "2.11.49"
2 \header {
3   lsrtags = "expressive-marks,tweaks-and-overrides"
4   texidoc = "
5 Caesura marks can be created by overriding the @code{'text}
6 property of the @code{BreathingSign} object.  A curved caesura
7 mark is also available.
8 "
9   doctitle = "Inserting a caesura"
10 }
11
12 \relative c'' {
13   \override BreathingSign #'text =
14     #(make-musicglyph-markup "scripts.caesura.straight")
15   c8 e4. \breathe g8. e16 c4
16
17   \override BreathingSign #'text =
18     #(make-musicglyph-markup "scripts.caesura.curved")
19   g8 e'4. \breathe g8. e16 c4
20 }