]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/using-a-tick-as-the-breath-mark-symbol.ly
95d81cd6cb20d603438abdda8a5d9071e0d14f98
[lilypond.git] / Documentation / snippets / new / using-a-tick-as-the-breath-mark-symbol.ly
1 \version "2.17.4"
2
3 \header {
4   lsrtags = "expressive-marks"
5
6   texidoc = "
7 Vocal and wind music frequently uses a tick mark as a breathing sign.  This
8 indicates a breath that subtracts a little time from the previous note rather
9 than causing a short pause, which is indicated by the comma breath mark.  The
10 mark can be moved up a little to take it away from the stave.
11 "
12   doctitle = "Using a tick as the breath mark symbol"
13 }
14
15 \relative c'' {
16   c2
17   \breathe
18   d2
19   \override BreathingSign #'Y-offset = #2.6
20   \override BreathingSign #'text =
21     \markup { \musicglyph #"scripts.tickmark" }
22   c2
23   \breathe
24   d2
25 }