]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/inserting-a-caesura.ly
Doc-es: pre-merge update of texidoc committishes.
[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 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5 \header {
6 %% Translation of GIT committish: 740b9a6c16eb30a84b216d23aeb848aa1b632be6
7   texidoces = "
8 Las marcas de cesura se pueden crear sobreescribiendo la propiedad
9 @code{'text} del objeto @code{BreathingSign}.  También está disponible
10 una marca de cesura curva.
11
12 "
13   doctitlees = "Insertar una cesura"
14   
15 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
16  texidocde = "
17 Zäsurzeichen können erstellt werden, indem die @code{'text}-Eigenschaft
18 des @code{BreathingSign}-Objektes verändert wird.  Ein gekrümmtes
19 Zäsurzeichen ist auch möglich.
20 "
21   doctitlede = "Eine Zäsur einfügen"
22
23   lsrtags = "expressive-marks,tweaks-and-overrides"
24   texidoc = "
25 Caesura marks can be created by overriding the @code{'text}
26 property of the @code{BreathingSign} object.  A curved caesura
27 mark is also available.
28 "
29   doctitle = "Inserting a caesura"
30 } % begin verbatim
31
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 }