]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/inserting-a-caesura.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / inserting-a-caesura.ly
diff --git a/Documentation/snippets/inserting-a-caesura.ly b/Documentation/snippets/inserting-a-caesura.ly
new file mode 100644 (file)
index 0000000..5f458d2
--- /dev/null
@@ -0,0 +1,59 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "expressive-marks, tweaks-and-overrides"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Las marcas de cesura se pueden crear sobreescribiendo la propiedad
+@code{'text} del objeto @code{BreathingSign}.  También está disponible
+una marca de cesura curva.
+
+"
+  doctitlees = "Insertar una cesura"
+
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
+ texidocde = "
+Zäsurzeichen können erstellt werden, indem die @code{'text}-Eigenschaft
+des @code{BreathingSign}-Objektes verändert wird.  Ein gekrümmtes
+Zäsurzeichen ist auch möglich.
+"
+  doctitlede = "Eine Zäsur einfügen"
+
+%% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
+  texidocfr = "
+Une surcharge de la propriété @code{'text} de l'objet
+@code{BreathingSign} permet de créer une marque de césure.  LilyPond
+dispose également d'une variante courbée.
+
+"
+  doctitlefr = "Insertion d'une césure"
+
+
+  texidoc = "
+Caesura marks can be created by overriding the @code{'text} property of
+the @code{BreathingSign} object. A curved caesura mark is also
+available.
+
+"
+  doctitle = "Inserting a caesura"
+} % begin verbatim
+
+\relative c'' {
+  \override BreathingSign #'text = \markup {
+    \musicglyph #"scripts.caesura.straight"
+  }
+  c8 e4. \breathe g8. e16 c4
+
+  \override BreathingSign #'text = \markup {
+    \musicglyph #"scripts.caesura.curved"
+  }
+  g8 e'4. \breathe g8. e16 c4
+}