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