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