]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / positioning-grace-note-beams-at-the-height-of-normal-note-beams.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.20"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10   texidoces = "
11
12 Cuando se colocan figuras sobre líneas adicionales, sus barras se
13 sitúan generalmente en medio del pentagrama.  La barra de las notas de
14 adorno es más corta y las notas de adorno sobre líneas adicionales
15 podrían tener la barra fuera del pentagrama.  Podemos corregir este
16 barrado para las notas de adorno.
17
18 "
19   doctitlees = "Colocar las barras de las notas de adorno a la misma altura que las barras de notas normales"
20
21
22
23   texidoc = "
24 When notes are placed on ledger lines, their beams are usually centred
25 on the stave.  Grace notes beams are shorter and grace notes on ledger
26 lines may well have beams outside the stave.  You can override this
27 beaming for grace notes.
28
29 "
30   doctitle = "Positioning grace note beams at the height of normal note beams"
31 } % begin verbatim
32
33 \relative c {
34   f8[ e]
35   \grace {
36     f8[ e]
37     \override Stem  #'no-stem-extend = ##f
38     f8[ e]
39     \revert Stem #'no-stem-extend
40   }
41   f8[ e]
42 }
43