]> 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://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "repeats, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: e98b2d804c2a136edfa28adc894bb584f676c884
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   \bar "|:"
56   c1
57   d1
58   d4 e f g
59 }
60