]> 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 manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Se pueden insertar separadores sistema entre los sistemas de una
15 página.  Se puede usar cualquier elemento de marcado, pero
16 @code{\\slashSeparator} está disponible como una elección
17 predeterminada adecuada.
18
19 "
20   doctitlees = "Fijar un separador entre los sistemas"
21
22
23
24   texidoc = "
25 System separators can be inserted between systems.  Any markup can be
26 used, but @code{\\slashSeparator} has been provided as a sensible
27 default.
28
29 "
30   doctitle = "Setting system separators"
31 } % begin verbatim
32
33
34 \paper {
35   system-separator-markup = \slashSeparator
36 }
37
38 notes = \relative c' {
39   c1 | c \break
40   c1 | c \break
41   c1 | c
42 }
43
44 \book {
45   \score {
46     \new GrandStaff <<
47       \new Staff \notes
48       \new Staff \notes
49     >>
50   }
51 }
52