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