]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly
Docs: update LSR
[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
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   \bar "|:"
58   c1
59   d1
60   d4 e f g
61 }
62