]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-a-caesura.ly
c40c33e1bae8a43a5e8d9462c25de1c21988d57f
[lilypond.git] / Documentation / snippets / inserting-a-caesura.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.12.2"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Las marcas de cesura se pueden crear sobreescribiendo la propiedad
15 @code{'text} del objeto @code{BreathingSign}.  También está disponible
16 una marca de cesura curva.
17
18 "
19   doctitlees = "Insertar una cesura"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23  texidocde = "
24 Zäsurzeichen können erstellt werden, indem die @code{'text}-Eigenschaft
25 des @code{BreathingSign}-Objektes verändert wird.  Ein gekrümmtes
26 Zäsurzeichen ist auch möglich.
27 "
28   doctitlede = "Eine Zäsur einfügen"
29
30 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
31   texidocfr = "
32 Une surcharge de la propriété @code{'text} de l'objet
33 @code{BreathingSign} permet de créer une marque de césure.  LilyPond
34 dispose également d'une variante courbée.
35
36 "
37   doctitlefr = "Insertion d'une césure"
38
39
40   texidoc = "
41 Caesura marks can be created by overriding the @code{'text} property of
42 the @code{BreathingSign} object. A curved caesura mark is also
43 available.
44
45 "
46   doctitle = "Inserting a caesura"
47 } % begin verbatim
48
49 \relative c'' {
50   \override BreathingSign #'text = \markup {
51     \musicglyph #"scripts.caesura.straight"
52   }
53   c8 e4. \breathe g8. e16 c4
54
55   \override BreathingSign #'text = \markup {
56     \musicglyph #"scripts.caesura.curved"
57   }
58   g8 e'4. \breathe g8. e16 c4
59 }