]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "staff-notation, editorial-annotations"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Für den pädagogischen Einsatz kann eine Linie des Notensystems dicker
24 gezeichnet werden (z. B. die Mittellinie, oder um den Schlüssel hervorzuheben).
25 Das ist möglich, indem man zusätzliche Linien sehr nahe an der Linie, die
26 dicker erscheinen soll, einfügt.  Dazu wird die @code{line-positions}-Eigenschaft
27 herangezogen.
28
29 "
30   doctitlede = "Eine Linie des Notensystems dicker als die anderen machen"
31
32 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
33   texidocfr = "
34 Vous pourriez avoir envie, dans un but pédagogique, de rendre certaines
35 lignes d'une portée plus épaisses que les autres, comme la ligne médiane
36 ou bien pour mettre en exergue la ligne portant la clé de sol.  Il
37 suffit pour cela d'ajouter une ligne qui sera accolée à celle qui doît
38 être mise en évidence, grâce à la propriété @code{line-positions} de
39 l'objet @code{StaffSymbol}.
40
41 "
42   doctitlefr = "Empâtement de certaines lignes d'une portée"
43
44
45   texidoc = "
46 For pedagogical purposes, a staff line can be thickened (e.g., the
47 middle line, or to emphasize the line of the G clef).  This can be
48 achieved by adding extra lines very close to the line that should be
49 emphasized, using the @code{line-positions} property of the
50 @code{StaffSymbol} object.
51
52 "
53   doctitle = "Making some staff lines thicker than the others"
54 } % begin verbatim
55
56 {
57   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
58   d'4 e' f' g'
59 }
60