]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/breathing-signs.ly
bb0a2c5bde9aace4fa1cd1807ff0cfc69ad3c983
[lilypond.git] / Documentation / snippets / breathing-signs.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "expressive-marks, symbols-and-glyphs"
11
12 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
13   texidocfr = "
14 Les indications de respiration sont disponibles sous différentes
15 formes : virgule (par défaut), trait, en V et @qq{voie de chemin de fer}
16 (césure).
17
18 "
19   doctitlefr = "Signes de respiration"
20
21   texidoc = "
22 Breathing signs are available in different tastes: commas (default),
23 ticks, vees and @qq{railroad tracks} (caesura).
24
25 "
26   doctitle = "Breathing signs"
27 } % begin verbatim
28
29
30 \new Staff \relative c'' {
31   \key es \major
32   \time 3/4
33   % this bar contains no \breathe
34   << { g4 as g } \\ { es4 bes es } >> |
35   % Modern notation:
36   % by default, \breathe uses the rcomma, just as if saying:
37   % \override BreathingSign #'text = #(make-musicglyph-markup "scripts.rcomma")
38   << { g4 as g } \\ { es4 \breathe bes es } >> |
39
40   % rvarcomma and lvarcomma are variations of the default rcomma and lcomma
41   % N.B.: must use Staff context here, since we start a Voice below
42   \override Staff.BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
43   << { g4 as g } \\ { es4 \breathe bes es } >> |
44
45   % vee
46   \override BreathingSign #'text = \markup { \musicglyph #"scripts.upbow" }
47   es8[ d es f g] \breathe f |
48
49   % caesura
50   \override BreathingSign #'text = \markup { \musicglyph #"scripts.caesura.curved" }
51   es8[ d] \breathe es[ f g f] |
52   es2 r4 \bar "||"
53 }