]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hairpins-with-different-line-styles.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / hairpins-with-different-line-styles.ly
index 3cdafeb19993c8dda51164ef4094ee0223781bf5..2de50e5d3065f5f244f43beb1877f200135387b7 100644 (file)
@@ -1,24 +1,14 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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"
+\version "2.18.0"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
 
-%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
-  texidoces = "
-Los reguladores pueden imprimirse en uno cualquiera de los estilos de
-@code{line-interface}: discontinuo, punteado, línea, trino o zig-zag.
-
-"
-  doctitlees = "Reguladores con distintos estilos de línea"
-
-
-
   texidoc = "
 Hairpins can take any style from @code{line-interface} - dashed-line,
 dotted-line, line, trill or zigzag.
@@ -29,17 +19,16 @@ dotted-line, line, trill or zigzag.
 
 \relative c' {
   c2\< c\!
-  \override Hairpin #'style = #'dashed-line
+  \override Hairpin.style = #'dashed-line
   c2\< c\!
-  \override Hairpin #'style = #'dotted-line
+  \override Hairpin.style = #'dotted-line
   c2\< c\!
-  \override Hairpin #'style = #'line
+  \override Hairpin.style = #'line
   c2\< c\!
-  \override Hairpin #'style = #'trill
+  \override Hairpin.style = #'trill
   c2\< c\!
-  \override Hairpin #'style = #'zigzag
+  \override Hairpin.style = #'zigzag
   c2\< c\!
-  \revert Hairpin #'style
+  \revert Hairpin.style
   c2\< c\!
 }
-