]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-a-caesura.ly
Docs: update snippets locally
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19  texidocde = "
20 Zäsurzeichen können erstellt werden, indem die @code{'text}-Eigenschaft
21 des @code{BreathingSign}-Objektes verändert wird.  Ein gekrümmtes
22 Zäsurzeichen ist auch möglich.
23 "
24   doctitlede = "Eine Zäsur einfügen"
25
26   texidoc = "
27 Caesura marks can be created by overriding the @code{'text} property of
28 the @code{BreathingSign} object. A curved caesura mark is also
29 available.
30
31 "
32   doctitle = "Inserting a caesura"
33 } % begin verbatim
34
35 \relative c'' {
36   \override BreathingSign #'text = \markup {
37     \musicglyph #"scripts.caesura.straight"
38   }
39   c8 e4. \breathe g8. e16 c4
40
41   \override BreathingSign #'text = \markup {
42     \musicglyph #"scripts.caesura.curved"
43   }
44   g8 e'4. \breathe g8. e16 c4
45 }