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