]> 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
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   texidoc = "
27 A @code{|:} bar line can be printed at the beginning of a piece, by
28 overriding the relevant property:
29
30 "
31   doctitle = "Printing a repeat sign at the beginning of a piece"
32 } % begin verbatim
33
34 \relative c'' {
35   \once \override Score.BreakAlignment #'break-align-orders =
36         #(make-vector 3 '(instrument-name
37                           left-edge
38                           ambitus
39                           span-bar
40                           breathing-sign
41                           clef
42                           key-signature
43                           time-signature
44                           staff-bar
45                           custos
46                           span-bar))
47   \bar "|:"
48   c1
49   d1
50   d4 e f g
51 }
52