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