]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/breathing-signs.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "winds"
7
8   texidoc = "
9 Breathing signs are available in different tastes: commas (default),
10 ticks, vees and \"railroad tracks\" (caesura).
11
12 "
13   doctitle = "Breathing signs"
14 } % begin verbatim
15 \new Staff \relative c'' {
16   \key es \major
17   \time 3/4
18   % this bar contains no \breathe
19   << { g4 as g } \\ { es4 bes es } >> |
20   % Modern notation:
21   % by default, \breathe uses the rcomma, just as if saying:
22   % \override BreathingSign  #'text = #(make-musicglyph-markup "scripts.rcomma")
23   << { g4 as g } \\ { es4 \breathe bes es } >> |
24   
25   % rvarcomma and lvarcomma are variations of the default rcomma and lcomma
26   % N.B.: must use Staff context here, since we start a Voice below
27   \override Staff.BreathingSign  #'text = #(make-musicglyph-markup "scripts.rvarcomma")
28   << { g4 as g } \\ { es4 \breathe bes es } >> |
29   
30   % vee
31   \override BreathingSign  #'text = #(make-musicglyph-markup "scripts.upbow")
32   es8[ d es f g] \breathe f |
33   
34   % caesura
35   \override BreathingSign  #'text = #(make-musicglyph-markup "scripts.caesura.curved")
36   es8[ d] \breathe  es[ f g f] |
37   es2 r4 \bar "||"
38 }