]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly
c76ab5139d040b9e4f6989b2dc2100524b8bdd8c
[lilypond.git] / Documentation / snippets / printing-a-repeat-sign-at-the-beginning-of-a-piece.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.16"
5
6 \header {
7   lsrtags = "repeats, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Se puede imprimir una línea divisoria de la forma @code{|:} al
12 principio de la pieza, sobreescribiendo la propiedad correspondiente:
13
14 "
15   doctitlees = "Imprimir puntos de repetición al prinicpio de la pieza"
16
17 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
18   texidocde = "
19 Ein @code{|:}-Taktstrich kann auch zu Beginn eines Stückes ausgegeben werden, indem
20 man die entsprechende Eigenschaft verändert:
21
22 "
23   doctitlede = "Ein Wiederholungszeichen zu Beginn eines Stückes ausgeben"
24 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
25   texidocfr = "
26 Bien qu'allant à l'encontre des usages en matière de gravure, vous
27 imprimerez une barre de reprise (@code{|:}) en début de partition si
28 vous surchargez la propriété adéquate :
29
30 "
31   doctitlefr = "Impression d'une barre de reprise en début de morceau"
32
33
34   texidoc = "
35 A @code{|:} bar line can be printed at the beginning of a piece, by
36 overriding the relevant property:
37
38 "
39   doctitle = "Printing a repeat sign at the beginning of a piece"
40 } % begin verbatim
41
42 \relative c'' {
43   \once \override Score.BreakAlignment #'break-align-orders =
44     #(make-vector 3 '(instrument-name
45                       left-edge
46                       ambitus
47                       span-bar
48                       breathing-sign
49                       clef
50                       key-signature
51                       time-signature
52                       staff-bar
53                       custos
54                       span-bar))
55   \once \override Staff.TimeSignature #'space-alist =
56     #'((first-note . (fixed-space . 2.0))
57        (right-edge . (extra-space . 0.5))
58        ;; free up some space between time signature
59        ;; and repeat bar line
60        (staff-bar . (extra-space . 1)))
61   \bar "|:"
62   c1
63   d1
64   d4 e f g
65 }
66