]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-simultaneous-rehearsal-marks.ly
7dd8ecdba5c31ce95f4aee0ea701042da4acf3d3
[lilypond.git] / Documentation / snippets / creating-simultaneous-rehearsal-marks.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "expressive-marks, text, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 A diferencia de las inscripciones de texto, las lestras de ensayo
12 no se pueden apilar en un punto concreto de la partitura: sólo se
13 crea un objeto @code{RehearsalMark}.  Utilizando un compás y línea
14 divisoria invisibles se puede crear una nueva marca de ensayo,
15 dando la apariencia de dos marcas en la misma columna.
16
17 Este método también puede resultar útil para colocar marcas de
18 ensayo tanto al final de un sistema como al comienzo del sistema
19 siguiente.
20
21 "
22   doctitlees = "Creación de marcas de ensayo simultáneas"
23
24   texidoc = "
25 Unlike text scripts, rehearsal marks cannot be stacked at a particular
26 point in a score: only one @code{RehearsalMark} object is created.
27 Using an invisible measure and bar line, an extra rehearsal mark can be
28 added, giving the appearance of two marks in the same column. This
29 method may also prove useful for placing rehearsal marks at both the
30 end of one system and the start of the following system.
31
32 "
33   doctitle = "Creating simultaneous rehearsal marks"
34 } % begin verbatim
35
36 {
37   \key a \major
38   \set Score.markFormatter = #format-mark-box-letters
39   \once \override Score.RehearsalMark #'outside-staff-priority = #5000
40   \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
41   \once \override Score.RehearsalMark #'break-align-symbols = #'(key-signature)
42   \mark \markup { \bold { Senza denti } }
43
44   % the hidden measure and bar line
45   % \cadenzaOn turns off automatic calculation of bar numbers
46   \cadenzaOn
47   \once \override Score.TimeSignature #'stencil = ##f
48   \time 1/16
49   s16 \bar ""
50   \cadenzaOff
51
52   \time 4/4
53   \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
54   \mark \markup { \box \bold Intro }
55   d'1
56   \mark \default
57   d'1
58 }