]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-a-caesura.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / inserting-a-caesura.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
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 \relative c'' {
22   \override BreathingSign.text = \markup {
23     \musicglyph #"scripts.caesura.straight"
24   }
25   c8 e4. \breathe g8. e16 c4
26
27   \override BreathingSign.text = \markup {
28     \musicglyph #"scripts.caesura.curved"
29   }
30   g8 e'4. \breathe g8. e16 c4
31 }