]> 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 /home/lilycvs/git/lily/
[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 bar line, 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
20   d, a'
21   \mark \default
22   \break
23   
24   \override Score.RehearsalMark #'self-alignment-X = #right
25   g b,
26   c1 \bar "||"
27   \mark "D.C. al Fine"
28 }