]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-at-the-end-of-a-line-or-a-score.ly
80c04c2fca2cf4c6b830eb5f81d956d1d50d1a69
[lilypond.git] / input / lsr / printing-marks-at-the-end-of-a-line-or-a-score.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.57"
4
5 \header {
6   lsrtags = "text"
7
8   texidoc = "
9 Marks can be printed at the end of the current line, instead of the
10 beginning of the following line. This is particularly useful when a
11 mark has to be added at the end of a score -- when there is no next
12 line.
13
14 In such cases, the right end of the mark has to be aligned with the
15 final bar line, as demonstrated on the second line of this example. 
16
17 "
18   doctitle = "Printing marks at the end of a line or a score"
19 } % begin verbatim
20 \relative c'' {  
21   \override Score.RehearsalMark  #'break-visibility = #begin-of-line-invisible
22   g2 c
23   d,2 a'
24   \mark \default
25   \break
26   
27   \override Score.RehearsalMark #'self-alignment-X = #RIGHT
28   g2 b,
29   c1 \bar "||"
30   \mark "D.C. al Fine"
31 }