blob: 3706adfbb2280e6a99317e4f65ba2f51d6019cd4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.14.2"
\header {
= "paper-and-layout, text, titles"
%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
texidoces = "
La alineación horizontal de los nombres de instrumento se puede
trucar modificando la propiedad @code{Staff.InstrumentName
#'self-alignment-X}. Las variables de @code{\\layout}
@code{indent} y @code{short-indent} definen el espacio en que se
alinean los nombres de instrumento antes del primer sistema y de
los siguientes, respectivamente.
"
doctitlees = "Alinear y centrar los nombres de instrumento"
%% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
texidocfr = "
L'alignement horizontal des noms d'instrument se gère à l'aide de la
propriété @code{Staff.InstrumentName #'self-alignment-X}. Les variables
@code{indent} et @code{short-indent}, attachées au bloc @code{\\layout},
déterminent l'espace alloué à l'alignement des noms d'instrument,
respectivement dans leurs formes développée et abrégée.
"
doctitlefr = "Alignement des noms d'instrument"
= "
The horizontal alignment of instrument names is tweaked by changing the
@code{Staff.InstrumentName #'self-alignment-X} property. The
@code{\\layout} variables @code{indent} and @code{short-indent} define
the space in which the instrument names are aligned before the first
and the following systems, respectively.
"
= "Aligning and centering instrument names"
} % begin verbatim
\paper {
left-margin = 3\cm
}
\score {
\new StaffGroup <<
\new Staff {
\override Staff.InstrumentName #'self-alignment-X = #LEFT
\set Staff.instrumentName = \markup \left-column {
"Left aligned"
"instrument name"
}
\set Staff.shortInstrumentName = #"Left"
c''1
\break
c''1
}
\new Staff {
\override Staff.InstrumentName #'self-alignment-X = #CENTER
\set Staff.instrumentName = \markup \center-column {
Centered
"instrument name"
}
\set Staff.shortInstrumentName = #"Centered"
g'1
g'1
}
\new Staff {
\override Staff.InstrumentName #'self-alignment-X = #RIGHT
\set Staff.instrumentName = \markup \right-column {
"Right aligned"
"instrument name"
}
\set Staff.shortInstrumentName = #"Right"
e'1
e'1
}
>>
\layout {
ragged-right = ##t
indent = 4\cm
short-indent = 2\cm
}
}
|