]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-a-caesura.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / inserting-a-caesura.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.17.6"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12   texidoc = "
13 Caesura marks can be created by overriding the @code{'text} property of
14 the @code{BreathingSign} object. A curved caesura mark is also
15 available.
16
17 "
18   doctitle = "Inserting a caesura"
19 } % begin verbatim
20
21
22 \relative c'' {
23   \override BreathingSign.text = \markup {
24     \musicglyph #"scripts.caesura.straight"
25   }
26   c8 e4. \breathe g8. e16 c4
27
28   \override BreathingSign.text = \markup {
29     \musicglyph #"scripts.caesura.curved"
30   }
31   g8 e'4. \breathe g8. e16 c4
32 }