]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/inserting-a-caesura.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / lsr / inserting-a-caesura.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.12.0"
4 \header {
5   texidoces = "
6 Las marcas de cesura se pueden crear sobreescribiendo la propiedad
7 @code{'text} del objeto @code{BreathingSign}.  También está disponible
8 una marca de cesura curva.
9
10 "
11   doctitlees = "Insertar una cesura"
12   
13 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
14  texidocde = "
15 Zäsurzeichen können erstellt werden, indem die @code{'text}-Eigenschaft
16 des @code{BreathingSign}-Objektes verändert wird.  Ein gekrümmtes
17 Zäsurzeichen ist auch möglich.
18 "
19   doctitlede = "Eine Zäsur einfügen"
20
21   lsrtags = "expressive-marks,tweaks-and-overrides"
22   texidoc = "
23 Caesura marks can be created by overriding the @code{'text}
24 property of the @code{BreathingSign} object.  A curved caesura
25 mark is also available.
26 "
27   doctitle = "Inserting a caesura"
28 } % begin verbatim
29
30
31 \relative c'' {
32   \override BreathingSign #'text = \markup {
33     \musicglyph #"scripts.caesura.straight"
34   }
35   c8 e4. \breathe g8. e16 c4
36
37   \override BreathingSign #'text = \markup {
38     \musicglyph #"scripts.caesura.curved"
39   }
40   g8 e'4. \breathe g8. e16 c4
41 }