]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-at-the-end-of-a-line-or-a-score.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / printing-marks-at-the-end-of-a-line-or-a-score.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "text"
7
8   texidoces = "
9 Las marcas se pueden imprimir al final de la línea actual, en vez de
10 al comienzo de la línea siguiente.  Esto es útil principalmente cuando
11 se tiene que añadir una marca al final de la partitura (donde no hay
12 línea siguiente).
13
14 En tales casos, el extremo derecho de la marca se tiene que alinear
15 con la última línea divisoria, como muestra la segunda línea de este
16 ejemplo.
17
18 "
19   doctitlees = "Imprimir marcas al final de la línea o de la partitura"
20
21   texidoc = "
22 Marks can be printed at the end of the current line, instead of the
23 beginning of the following line. This is particularly useful when a
24 mark has to be added at the end of a score -- when there is no next
25 line.
26
27 In such cases, the right end of the mark has to be aligned with the
28 final bar line, as demonstrated on the second line of this example. 
29
30 "
31   doctitle = "Printing marks at the end of a line or a score"
32 } % begin verbatim
33 \relative c'' {  
34   \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
35   g2 c
36   d,2 a'
37   \mark \default
38   \break
39   g2 b,
40   c1 \bar "||"
41   \override Score.RehearsalMark #'self-alignment-X = #RIGHT  
42   \mark "D.C. al Fine"
43 }