]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-at-the-end-of-a-line-or-a-score.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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.38"
4
5 \header {
6   lsrtags = "text"
7  texidoc = "
8 Marks can be printed at the end of the current line, instead of the
9 beginning of the following line. This is particularly useful when a
10 mark has to be added at the end of a score -- when there is no next
11 line.
12
13 In such cases, the right end of the mark has to be aligned with the
14 final barline, as demonstrated on the second line of this example. 
15 " }
16 % begin verbatim
17 \relative c'' {  
18   \override Score.RehearsalMark  #'break-visibility = #begin-of-line-invisible
19   g2 c d, a'
20   \mark \default
21   \break
22   
23   \override Score.RehearsalMark #'self-alignment-X = #right
24   g b, c1  \bar "||"
25   \mark "D.C. al Fine"
26 }