]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
Doc-it: chapter 1 completed
[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.dsi.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.17.25"
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
22 \relative c'' {
23   g2 c
24   d,2 a'
25   \once \override Score.RehearsalMark.break-visibility = #end-of-line-visible
26   \once \override Score.RehearsalMark.self-alignment-X = #RIGHT
27   \mark "D.C. al Fine"
28   \break
29   g2 b,
30   c1 \bar "||"
31 }