]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
Doc-fr: updates texidocs
[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.16.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
22 \paper {
23   system-separator-markup = \slashSeparator
24 }
25
26 notes = \relative c' {
27   c1 | c \break
28   c1 | c \break
29   c1 | c
30 }
31
32 \book {
33   \score {
34     \new GrandStaff <<
35       \new Staff \notes
36       \new Staff \notes
37     >>
38   }
39 }