]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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