]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
LSR: update.
[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.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9   texidoc = "
10 When notes are placed on ledger lines, their beams are usually centred
11 on the stave.  Grace notes beams are shorter and grace notes on ledger
12 lines may well have beams outside the stave.  You can override this
13 beaming for grace notes.
14
15 "
16   doctitle = "Positioning grace note beams at the height of normal note beams"
17 } % begin verbatim
18
19 \relative c {
20   f8[ e]
21   \grace {
22     f8[ e]
23     \override Stem  #'no-stem-extend = ##f
24     f8[ e]
25     \revert Stem #'no-stem-extend
26   }
27   f8[ e]
28 }
29