]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
Merge branch 'master' into lilypond/translation
[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.16"
5
6 \header {
7 %% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
8   texidoces = "
9 Se pueden insertar separadores sistema entre los sistemas de una
10 página.  Se puede usar cualquier elemento de marcado, pero
11 @code{\\slashSeparator} está disponible como una elección
12 predeterminada adecuada.
13
14 "
15   doctitlees = "Fijar un separador entre los sistemas"
16
17
18
19   lsrtags = "tweaks-and-overrides, paper-and-layout"
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