]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / printing-marks-at-the-end-of-a-line.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "text"
8
9 %% Translation of GIT committish: c2e8b1d6d671dbfc138f890cbc7e9882b7be2761
10   texidocfr = "
11 Les indications textuelles peuvent être imprimées à la fin d'une ligne 
12 plutôt qu'en tête de la suivante.  Pensez alors à aligner l'extrémité 
13 droite de l'indication sur la barre de mesure.
14
15 "
16   doctitlefr = "Indication texuelle en fin de ligne"
17
18
19   texidoc = "
20 Marks can be printed at the end of the current line, instead of the
21 beginning of the following line.  In such cases, it might be preferable
22 to align the right end of the mark with the bar line.
23
24 "
25   doctitle = "Printing marks at the end of a line"
26 } % begin verbatim
27
28 \relative c'' {
29   g2 c
30   d,2 a'
31   \once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
32   \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
33   \mark "D.C. al Fine"
34   \break
35   g2 b,
36   c1 \bar "||"
37 }
38