]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / printing-marks-at-the-end-of-a-line.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "text"
8
9   texidoc = "
10 Marks can be printed at the end of the current line, instead of the
11 beginning of the following line.  In such cases, it might be preferable
12 to align the right end of the mark with the bar line.
13
14 "
15   doctitle = "Printing marks at the end of a line"
16 } % begin verbatim
17
18 \relative c'' {
19   g2 c
20   d,2 a'
21   \once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
22   \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
23   \mark "D.C. al Fine"
24   \break
25   g2 b,
26   c1 \bar "||"
27 }
28