]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-system-separators.ly
LSR updates from tarball - July 2012
[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 = "tweaks-and-overrides, paper-and-layout, staff-notation"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
25   texidocfr = "
26 La séparation entre deux systèmes consécutifs peut être mise en
27 évidence par n'importe quel @emph{markup}.  LilyPond dispose à cet effet
28 d'une double oblique inversée : @code{\\slashSeparator}.
29
30 "
31   doctitlefr = "Séparation visuelle entre les systèmes"
32
33   texidoc = "
34 System separators can be inserted between systems.  Any markup can be
35 used, but @code{\\slashSeparator} has been provided as a sensible
36 default.
37
38 "
39   doctitle = "Setting system separators"
40 } % begin verbatim
41
42
43 \paper {
44   system-separator-markup = \slashSeparator
45 }
46
47 notes = \relative c' {
48   c1 | c \break
49   c1 | c \break
50   c1 | c
51 }
52
53 \book {
54   \score {
55     \new GrandStaff <<
56       \new Staff \notes
57       \new Staff \notes
58     >>
59   }
60 }
61