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