]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / making-some-staff-lines-thicker-than-the-others.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.16"
5
6 \header {
7   lsrtags = "staff-notation, editorial-annotations"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 Se puede engrosar una línea del pentagrama con fines pedagógicos
12 (p.ej. la tercera línea o la de la clave de Sol).  Esto se puede
13 conseguir añadiendo más líneas muy cerca de la línea que se quiere
14 destacar, utilizando la propiedad @code{line-positions} del objeto
15 @code{StaffSymbol}.
16
17 "
18   doctitlees = "Hacer unas líneas del pentagrama más gruesas que las otras"
19
20 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
21   texidocde = "
22 Für den pädagogischen Einsatz kann eine Linie des Notensystems dicker
23 gezeichnet werden (z. B. die Mittellinie, oder um den Schlüssel hervorzuheben).
24 Das ist möglich, indem man zusätzliche Linien sehr nahe an der Linie, die
25 dicker erscheinen soll, einfügt.  Dazu wird die @code{line-positions}-Eigenschaft
26 herangezogen.
27
28 "
29   doctitlede = "Eine Linie des Notensystems dicker als die anderen machen"
30 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
31   texidocfr = "
32 Vous pourriez avoir envie, dans un but pédagogique, de rendre certaines
33 lignes d'une portée plus épaisses que les autres, comme la ligne médiane
34 ou bien pour mettre en exergue la ligne portant la clé de sol.  Il
35 suffit pour cela d'ajouter une ligne qui sera accolée à celle qui doît
36 être mise en évidence, grâce à la propriété @code{line-positions} de
37 l'objet @code{StaffSymbol}.
38
39 "
40   doctitlefr = "Empâtement de certaines lignes d'une portée"
41
42
43   texidoc = "
44 For pedagogical purposes, a staff line can be thickened (e.g., the
45 middle line, or to emphasize the line of the G clef).  This can be
46 achieved by adding extra lines very close to the line that should be
47 emphasized, using the @code{line-positions} property of the
48 @code{StaffSymbol} object.
49
50 "
51   doctitle = "Making some staff lines thicker than the others"
52 } % begin verbatim
53
54 {
55   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
56   d'4 e' f' g'
57 }
58