]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-a-caesura.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
26   texidocfr = "
27 Une surcharge de la propriété @code{'text} de l'objet
28 @code{BreathingSign} permet de créer une marque de césure.  LilyPond
29 dispose également d'une variante courbée.
30
31 "
32   doctitlefr = "Insertion d'une césure"
33
34
35   texidoc = "
36 Caesura marks can be created by overriding the @code{'text} property of
37 the @code{BreathingSign} object. A curved caesura mark is also
38 available.
39
40 "
41   doctitle = "Inserting a caesura"
42 } % begin verbatim
43
44 \relative c'' {
45   \override BreathingSign #'text = \markup {
46     \musicglyph #"scripts.caesura.straight"
47   }
48   c8 e4. \breathe g8. e16 c4
49
50   \override BreathingSign #'text = \markup {
51     \musicglyph #"scripts.caesura.curved"
52   }
53   g8 e'4. \breathe g8. e16 c4
54 }