]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \paper {
34   system-separator-markup = \slashSeparator
35 }
36
37 notes = \relative c' {
38   c1 | c \break
39   c1 | c \break
40   c1 | c
41 }
42
43 \book {
44   \score {
45     \new GrandStaff <<
46       \new Staff \notes
47       \new Staff \notes
48     >>
49   }
50 }
51