]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
534a0347045e7dc82c5c37d8ce5024be11ef300e
[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.12.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13
14   texidoces = "
15
16 Se pueden imprimir marcas al final de la línea actual, en vez de al
17 principio de la línea siguiente.  En estos casos, puede ser preferible
18 alinear el borde derecho de la marca con la línea divisoria.
19
20 "
21   doctitlees = "Imprimir marcas al final de una línea"
22 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
23   texidocfr = "
24 Les indications textuelles peuvent être imprimées à la fin d'une ligne
25 plutôt qu'en tête de la suivante.  Pensez alors à aligner l'extrémité
26 droite de l'indication sur la barre de mesure.
27
28 "
29   doctitlefr = "Indication texuelle en fin de ligne"
30
31
32   texidoc = "
33 Marks can be printed at the end of the current line, instead of the
34 beginning of the following line.  In such cases, it might be preferable
35 to align the right end of the mark with the bar line.
36
37 "
38   doctitle = "Printing marks at the end of a line"
39 } % begin verbatim
40
41 \relative c'' {
42   g2 c
43   d,2 a'
44   \once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
45   \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
46   \mark "D.C. al Fine"
47   \break
48   g2 b,
49   c1 \bar "||"
50 }
51