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