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