]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / printing-marks-at-the-end-of-a-line.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "text"
11
12   texidoc = "
13 Marks can be printed at the end of the current line, instead of the
14 beginning of the following line.  In such cases, it might be preferable
15 to align the right end of the mark with the bar line.
16
17 "
18   doctitle = "Printing marks at the end of a line"
19 } % begin verbatim
20
21 \relative c'' {
22   g2 c
23   d,2 a'
24   \once \override Score.RehearsalMark.break-visibility = #end-of-line-visible
25   \once \override Score.RehearsalMark.self-alignment-X = #RIGHT
26   \mark "D.C. al Fine"
27   \break
28   g2 b,
29   c1 \bar "||"
30 }