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