X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fhairpins-with-different-line-styles.ly;h=ebfcda051323494a825a957fc9d52209c452a18a;hb=06e603a47cce832f2ed45edc0dd4b2c168877703;hp=4a078486147a10ed79954b060e4f7e56a15b7c6e;hpb=2f320e9722ec20d6f13ec567d007763cc912c5da;p=lilypond.git diff --git a/Documentation/snippets/hairpins-with-different-line-styles.ly b/Documentation/snippets/hairpins-with-different-line-styles.ly index 4a07848614..ebfcda0513 100644 --- a/Documentation/snippets/hairpins-with-different-line-styles.ly +++ b/Documentation/snippets/hairpins-with-different-line-styles.ly @@ -4,21 +4,11 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.0" +\version "2.17.6" \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2 - 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. @@ -27,19 +17,19 @@ dotted-line, line, trill or zigzag. doctitle = "Hairpins with different line styles" } % begin verbatim + \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\! } -