]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-at-the-end-of-a-line.ly
a1f2e05aad7a05ccfb15db0ff1c0d93cea5529f0
[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.14.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
23 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
24   texidocfr = "
25 Les indications textuelles peuvent être imprimées à la fin d'une ligne
26 plutôt qu'en tête de la suivante.  L'alignement sur la barre de mesure
27 devra alors s'effectuer par l'extrémité droite de l'indication.
28
29 "
30   doctitlefr = "Indication textuelle en fin de ligne"
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
42 \relative c'' {
43   g2 c
44   d,2 a'
45   \once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
46   \once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
47   \mark "D.C. al Fine"
48   \break
49   g2 b,
50   c1 \bar "||"
51 }
52