]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/inserting-a-caesura.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / inserting-a-caesura.ly
index c6455a36b1d75f9e18508a7390f2928f935fc3c0..80fb66e64421bf03d9091165785828c284dc7f37 100644 (file)
@@ -1,7 +1,11 @@
-%% Do not edit this file; it is auto-generated from input/new
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.61"
+\version "2.13.1"
+
 \header {
+  lsrtags = "expressive-marks, tweaks-and-overrides"
+
+%% Translation of GIT committish: a71dfe75d190e18a075443575d71140173829504
   texidoces = "
 Las marcas de cesura se pueden crear sobreescribiendo la propiedad
 @code{'text} del objeto @code{BreathingSign}.  También está disponible
@@ -9,22 +13,32 @@ una marca de cesura curva.
 
 "
   doctitlees = "Insertar una cesura"
+  
+%% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
+ 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"
 
-  lsrtags = "expressive-marks,tweaks-and-overrides"
   texidoc = "
-Caesura marks can be created by overriding the @code{'text}
-property of the @code{BreathingSign} object.  A curved caesura
-mark is also available.
+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 =
-    #(make-musicglyph-markup "scripts.caesura.straight")
+  \override BreathingSign #'text = \markup {
+    \musicglyph #"scripts.caesura.straight"
+  }
   c8 e4. \breathe g8. e16 c4
 
-  \override BreathingSign #'text =
-    #(make-musicglyph-markup "scripts.caesura.curved")
+  \override BreathingSign #'text = \markup {
+    \musicglyph #"scripts.caesura.curved"
+  }
   g8 e'4. \breathe g8. e16 c4
 }