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