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