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=e7eb16dda18ac6cf6d8eb8a4f2cc08e6bc7b38df;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=2bf2b2a013529d557b92bac72a16795d40552d9d;hpb=2f320e9722ec20d6f13ec567d007763cc912c5da;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 2bf2b2a013..e7eb16dda1 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 @@ -4,10 +4,10 @@ %% 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, staff-notation, editorial-annotations, tweaks-and-overrides" + lsrtags = "editorial-annotations, expressive-marks, staff-notation, tweaks-and-overrides" texidoc = " This method prints two 'rehearsal marks', one on top of the other. It @@ -36,18 +36,19 @@ 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 + \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 + \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 + \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 } }