]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
Fix white space
[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.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c {
37   f8[ e]
38   \grace {
39     f8[ e]
40     \override Stem  #'no-stem-extend = ##f
41     f8[ e]
42     \revert Stem #'no-stem-extend
43   }
44   f8[ e]
45 }
46