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