]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/breathing-signs.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / breathing-signs.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9   texidoc = "
10 Breathing signs are available in different tastes: commas (default),
11 ticks, vees and @qq{railroad tracks} (caesura).
12
13 "
14   doctitle = "Breathing signs"
15 } % begin verbatim
16
17 \new Staff \relative c'' {
18   \key es \major
19   \time 3/4
20   % this bar contains no \breathe
21   << { g4 as g } \\ { es4 bes es } >> |
22   % Modern notation:
23   % by default, \breathe uses the rcomma, just as if saying:
24   % \override BreathingSign #'text = #(make-musicglyph-markup "scripts.rcomma")
25   << { g4 as g } \\ { es4 \breathe bes es } >> |
26
27   % rvarcomma and lvarcomma are variations of the default rcomma and lcomma
28   % N.B.: must use Staff context here, since we start a Voice below
29   \override Staff.BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
30   << { g4 as g } \\ { es4 \breathe bes es } >> |
31
32   % vee
33   \override BreathingSign #'text = \markup { \musicglyph #"scripts.upbow" }
34   es8[ d es f g] \breathe f |
35
36   % caesura
37   \override BreathingSign #'text = \markup { \musicglyph #"scripts.caesura.curved" }
38   es8[ d] \breathe es[ f g f] |
39   es2 r4 \bar "||"
40 }