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