X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Finserting-a-caesura.ly;h=81efd0734062ba7bf570fd562261ef01007632bb;hb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;hp=b83d904d990797ce6d63bda82c006675f3713e89;hpb=c3f02f0948bbb78495ae3651fd42eea58319c40c;p=lilypond.git diff --git a/input/lsr/inserting-a-caesura.ly b/input/lsr/inserting-a-caesura.ly index b83d904d99..81efd07340 100644 --- a/input/lsr/inserting-a-caesura.ly +++ b/input/lsr/inserting-a-caesura.ly @@ -1,22 +1,43 @@ -%% 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.57" +\version "2.12.3" + \header { - lsrtags = "expressive-marks,tweaks-and-overrides" + lsrtags = "expressive-marks, tweaks-and-overrides" + + 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 :<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" + 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 }