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