]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly
31dc1919d24e124ea323f8f5b966075133fdf2f1
[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.2"
8
9 \header {
10   lsrtags = "tweaks-and-overrides, repeats"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
30   texidocfr = "
31 Bien qu'allant à l'encontre des usages en matière de gravure, une barre
32 de reprise (@code{|:}) s'imprimera en début de partition après surcharge
33 de la propriété adéquate :
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
48 \relative c'' {
49   \once \override Score.BreakAlignment #'break-align-orders =
50     #(make-vector 3 '(instrument-name
51                       left-edge
52                       ambitus
53                       breathing-sign
54                       clef
55                       key-signature
56                       time-signature
57                       staff-bar
58                       custos))
59   \once \override Staff.TimeSignature #'space-alist =
60     #'((first-note . (fixed-space . 2.0))
61        (right-edge . (extra-space . 0.5))
62        ;; free up some space between time signature
63        ;; and repeat bar line
64        (staff-bar . (extra-space . 1)))
65   \bar "|:"
66   c1
67   d1
68   d4 e f g
69 }
70