]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly
633e13a508c80cbdb871f866f4c18b7285ace0b9
[lilypond.git] / Documentation / snippets / using-a-tick-as-the-breath-mark-symbol.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.4
8 \version "2.17.4"
9
10 \header {
11   lsrtags = "expressive-marks"
12
13   texidoc = "
14 Vocal and wind music frequently uses a tick mark as a breathing sign.  This
15 indicates a breath that subtracts a little time from the previous note rather
16 than causing a short pause, which is indicated by the comma breath mark.  The
17 mark can be moved up a little to take it away from the stave.
18 "
19   doctitle = "Using a tick as the breath mark symbol"
20 } % begin verbatim
21
22
23 \relative c'' {
24   c2
25   \breathe
26   d2
27   \override BreathingSign #'Y-offset = #2.6
28   \override BreathingSign #'text =
29     \markup { \musicglyph #"scripts.tickmark" }
30   c2
31   \breathe
32   d2
33 }