]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/inserting-a-caesura.ly
b83d904d990797ce6d63bda82c006675f3713e89
[lilypond.git] / input / lsr / inserting-a-caesura.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.57"
4 \header {
5   lsrtags = "expressive-marks,tweaks-and-overrides"
6   texidoc = "
7 Caesura marks can be created by overriding the @code{'text}
8 property of the @code{BreathingSign} object.  A curved caesura
9 mark is also available.
10 "
11   doctitle = "Inserting a caesura"
12 } % begin verbatim
13
14 \relative c'' {
15   \override BreathingSign #'text =
16     #(make-musicglyph-markup "scripts.caesura.straight")
17   c8 e4. \breathe g8. e16 c4
18
19   \override BreathingSign #'text =
20     #(make-musicglyph-markup "scripts.caesura.curved")
21   g8 e'4. \breathe g8. e16 c4
22 }