]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
resolve merge
[lilypond.git] / Documentation / snippets / positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
diff --git a/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly b/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly
new file mode 100644 (file)
index 0000000..3f12902
--- /dev/null
@@ -0,0 +1,46 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "rhythms"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+
+Cuando se colocan figuras sobre líneas adicionales, sus barras se
+sitúan generalmente en medio del pentagrama.  La barra de las notas de
+adorno es más corta y las notas de adorno sobre líneas adicionales
+podrían tener la barra fuera del pentagrama.  Podemos corregir este
+barrado para las notas de adorno.
+
+"
+  doctitlees = "Colocar las barras de las notas de adorno a la misma altura que las barras de notas normales"
+
+
+
+  texidoc = "
+When notes are placed on ledger lines, their beams are usually centred
+on the stave.  Grace notes beams are shorter and grace notes on ledger
+lines may well have beams outside the stave.  You can override this
+beaming for grace notes.
+
+"
+  doctitle = "Positioning grace note beams at the height of normal note beams"
+} % begin verbatim
+
+\relative c {
+  f8[ e]
+  \grace {
+    f8[ e]
+    \override Stem  #'no-stem-extend = ##f
+    f8[ e]
+    \revert Stem #'no-stem-extend
+  }
+  f8[ e]
+}
+