]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
2ffeb079f31a56ecdcfedfacb8ede5d339ce6ae5
[lilypond.git] / Documentation / snippets / setting-system-separators.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.39"
5
6 \header {
7   lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Se pueden insertar separadores sistema entre los sistemas de una
12 página.  Se puede usar cualquier elemento de marcado, pero
13 @code{\\slashSeparator} está disponible como una elección
14 predeterminada adecuada.
15
16 "
17   doctitlees = "Fijar un separador entre los sistemas"
18
19
20
21   texidoc = "
22 System separators can be inserted between systems.  Any markup can be
23 used, but @code{\\slashSeparator} has been provided as a sensible
24 default.
25
26 "
27   doctitle = "Setting system separators"
28 } % begin verbatim
29
30 \paper {
31   system-separator-markup = \slashSeparator
32 }
33
34 notes = \relative c' {
35   c1 | c \break
36   c1 | c \break
37   c1 | c
38 }
39
40 \book {
41   \score {
42     \new GrandStaff <<
43       \new Staff \notes
44       \new Staff \notes
45     >>
46   }
47 }
48