]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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 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"
11
12   texidoc = "
13 Vocal and wind music frequently uses a tick mark as a breathing sign.
14 This indicates a breath that subtracts a little time from the previous
15 note rather than causing a short pause, which is indicated by the comma
16 breath mark.  The mark can be moved up a little to take it away from
17 the stave.
18
19 "
20   doctitle = "Using a tick as the breath mark symbol"
21 } % begin verbatim
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 }