]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
586eb936fd9c867a007d2a8e9147758b565d4972
[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 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
27   texidocfr = "
28 La ligature de notes se trouvant sur des lignes supplémentaires est
29 généralement centrée sur la portée.  Les notes d'ornement ayant une
30 hampe raccourcie, leur ligature peut se retrouver en dehors de la portée
31 lorsqu'elles sont sur des lignes supplémentaires.  LilyPond permet de
32 rallonger les hampes en pareil cas.
33
34 "
35   doctitlefr = "Positionnement des ligatures de notes d'ornement à la hauteur de celles des notes normales"
36
37   texidoc = "
38 When notes are placed on ledger lines, their beams are usually centred
39 on the stave.  Grace notes beams are shorter and grace notes on ledger
40 lines may well have beams outside the stave.  You can override this
41 beaming for grace notes.
42
43 "
44   doctitle = "Positioning grace note beams at the height of normal note beams"
45 } % begin verbatim
46
47
48 \relative c {
49   f8[ e]
50   \grace {
51     f8[ e]
52     \override Stem  #'no-stem-extend = ##f
53     f8[ e]
54     \revert Stem #'no-stem-extend
55   }
56   f8[ e]
57 }
58