]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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
30   texidoc = "
31 For pedagogical purposes, a staff line can be thickened (e.g., the
32 middle line, or to emphasize the line of the G clef).  This can be
33 achieved by adding extra lines very close to the line that should be
34 emphasized, using the @code{line-positions} property of the
35 @code{StaffSymbol} object. 
36
37 "
38   doctitle = "Making some staff lines thicker than the others"
39 } % begin verbatim
40
41 {
42   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
43   d'4 e' f' g'
44 }
45