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