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