X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fhow-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly;h=9993627f73c9b0619a5b654e2d4c5dff6d3a079e;hb=3bd039bb1bb0ed2820458f957debbaa75511ca4e;hp=584d22c556b2487d2ac823e4de8640f974140d30;hpb=c833f8a341b81466e084ed031362eadeb4a815aa;p=lilypond.git diff --git a/Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly b/Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly index 584d22c556..9993627f73 100644 --- a/Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly +++ b/Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly @@ -1,13 +1,13 @@ %% 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.2" +\version "2.18.0" \header { - lsrtags = "editorial-annotations, staff-notation, tweaks-and-overrides, expressive-marks" + lsrtags = "editorial-annotations, expressive-marks, staff-notation, tweaks-and-overrides" texidoc = " This method prints two 'rehearsal marks', one on top of the other. It @@ -30,25 +30,22 @@ affecting the other. It may also give some problems with vertical spacing, since using @code{extra-offset} does not change the bounding box of the mark from its original value. - - " doctitle = "How to print two rehearsal marks above and below the same barline (method 1)" } % begin verbatim - \relative c'{ - c d e f | - \once \override Score.RehearsalMark #'extra-offset = #'(0 . -8.5) - \once \override Score.RehearsalMark #'baseline-skip = #9 - \mark \markup \center-column { \circle 1 \box A } - g f e d | - \once \override Score.RehearsalMark #'extra-offset = #'(0 . -8.5) - \once \override Score.RehearsalMark #'baseline-skip = #9 - \mark \markup \center-column { \flat { \bold \small \italic Fine. } } - g f e d | - \once \override Score.RehearsalMark #'extra-offset = #'(0 . -8.5) - \once \override Score.RehearsalMark #'baseline-skip = #9 - \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible - \mark \markup \center-column { \musicglyph #"scripts.ufermata" \box z } + c d e f | + \once \override Score.RehearsalMark.extra-offset = #'(0 . -8.5) + \once \override Score.RehearsalMark.baseline-skip = #9 + \mark \markup \center-column { \circle 1 \box A } + g f e d | + \once \override Score.RehearsalMark.extra-offset = #'(0 . -8.5) + \once \override Score.RehearsalMark.baseline-skip = #9 + \mark \markup \center-column { \flat { \bold \small \italic Fine. } } + g f e d | + \once \override Score.RehearsalMark.extra-offset = #'(0 . -8.5) + \once \override Score.RehearsalMark.baseline-skip = #9 + \override Score.RehearsalMark.break-visibility = #begin-of-line-invisible + \mark \markup \center-column { \fermata \box z } }