]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/breathing-signs.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / 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.13.1"
4
5 \header {
6   lsrtags = "expressive-marks"
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
16 \new Staff \relative c'' {
17   \key es \major
18   \time 3/4
19   % this bar contains no \breathe
20   << { g4 as g } \\ { es4 bes es } >> |
21   % Modern notation:
22   % by default, \breathe uses the rcomma, just as if saying:
23   % \override BreathingSign #'text = #(make-musicglyph-markup "scripts.rcomma")
24   << { g4 as g } \\ { es4 \breathe bes es } >> |
25   
26   % rvarcomma and lvarcomma are variations of the default rcomma and lcomma
27   % N.B.: must use Staff context here, since we start a Voice below
28   \override Staff.BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
29   << { g4 as g } \\ { es4 \breathe bes es } >> |
30   
31   % vee
32   \override BreathingSign #'text = \markup { \musicglyph #"scripts.upbow" }
33   es8[ d es f g] \breathe f |
34   
35   % caesura
36   \override BreathingSign #'text = \markup { \musicglyph #"scripts.caesura.curved" }
37   es8[ d] \breathe es[ f g f] |
38   es2 r4 \bar "||"
39 }
40