X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fline-arrows.ly;fp=Documentation%2Fsnippets%2Fline-arrows.ly;h=f0b86dd6ff8529f6785d68d9ea97b814958212f9;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/line-arrows.ly b/Documentation/snippets/line-arrows.ly new file mode 100644 index 0000000000..f0b86dd6ff --- /dev/null +++ b/Documentation/snippets/line-arrows.ly @@ -0,0 +1,45 @@ +%% 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 = " +Se pueden aplicar puntas de flecha a los elementos de extensión de +texto y de línea (como el Glissando). + +" + doctitlees = "Puntas de flecha para las líneas" + + texidoc = " +Arrows can be applied to text-spanners and line-spanners (such as the +Glissando). + +" + doctitle = "Line arrows" +} % begin verbatim + +\relative c'' { + \override TextSpanner #'bound-padding = #1.0 + \override TextSpanner #'style = #'line + \override TextSpanner #'(bound-details right arrow) = ##t + \override TextSpanner #'(bound-details left text) = #"fof" + \override TextSpanner #'(bound-details right text) = #"gag" + \override TextSpanner #'(bound-details right padding) = #0.6 + + \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER + \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER + + \override Glissando #'(bound-details right arrow) = ##t + \override Glissando #'arrow-length = #0.5 + \override Glissando #'arrow-width = #0.25 + + a8\startTextSpan gis a4 b\glissando b, + g'4 c\stopTextSpan c2 +}