]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / making-some-staff-lines-thicker-than-the-others.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 = "staff-notation, editorial-annotations"
7
8 %% Translation of GIT committish: 55ea64f469d9c1703222654c9e5bc8490b04a67a
9   texidoces = "
10 Se puede engrosar una línea del pentagrama con fines pedagógicos
11 (p.ej. la tercera línea o la de la clave de Sol).  Esto se puede
12 conseguir añadiendo más líneas muy cerca de la línea que se quiere
13 destacar, utilizando la propiedad @code{line-positions} del objeto
14 @code{StaffSymbol}.
15
16 "
17   doctitlees = "Hacer unas líneas del pentagrama más gruesas que las otras"
18
19 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
20   texidocde = "
21 Für den pädagogischen Einsatz kann eine Linie des Notensystems dicker
22 gezeichnet werden (z. B. die Mittellinie, oder um den Schlüssel hervorzuheben).
23 Das ist möglich, indem man zusätzliche Linien sehr nahe an der Linie, die
24 dicker erscheinen soll, einfügt.  Dazu wird die @code{line-positions}-Eigenschaft
25 herangezogen.
26
27 "
28   doctitlede = "Eine Linie des Notensystems dicker als die anderen machen"
29   texidoc = "
30 For pedagogical purposes, a staff line can be thickened (e.g., the
31 middle line, or to emphasize the line of the G clef).  This can be
32 achieved by adding extra lines very close to the line that should be
33 emphasized, using the @code{line-positions} property of the
34 @code{StaffSymbol} object. 
35
36 "
37   doctitle = "Making some staff lines thicker than the others"
38 } % begin verbatim
39
40 {
41   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
42   d'4 e' f' g'
43 }
44