]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
Merge remote-tracking branch 'origin/master' into 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.di.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.18.0"
8
9 \header {
10   lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides"
11
12   texidoc = "
13 System separators can be inserted between systems.  Any markup can be
14 used, but @code{\\slashSeparator} has been provided as a sensible
15 default.
16
17 "
18   doctitle = "Setting system separators"
19 } % begin verbatim
20
21 \paper {
22   system-separator-markup = \slashSeparator
23 }
24
25 notes = \relative c' {
26   c1 | c \break
27   c1 | c \break
28   c1 | c
29 }
30
31 \book {
32   \score {
33     \new GrandStaff <<
34       \new Staff \notes
35       \new Staff \notes
36     >>
37   }
38 }