X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadjusting-lyrics-vertical-spacing.ly;fp=Documentation%2Fsnippets%2Fadjusting-lyrics-vertical-spacing.ly;h=719edcd8509dfaf923784c499e055f526c3c6c25;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly new file mode 100644 index 0000000000..719edcd850 --- /dev/null +++ b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly @@ -0,0 +1,59 @@ +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.14.0 +\version "2.14.0" + +\header { +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Este fragmento de código muestra cómo situar la línea de base de la +letra más cerca del pentagrama. + +" + doctitlees = "Ajuste del especiado vertical de la letra" + + +%% Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea + texidocfr = " +Cet extrait illustre la manière de rapprocher la ligne de paroles +de la portée. + +" + doctitlefr = "Ajustement de l'espacement vertical des paroles" + + + lsrtags = "text, vocal-music, spacing" + texidoc = " +This snippet shows how to bring the lyrics line closer to the staff. + +" + doctitle = "Adjusting lyrics vertical spacing" +} % begin verbatim + + +% Default layout: +<< + \new Staff \new Voice = melody \relative c' { + c4 d e f + g4 f e d + c1 + } + \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa } + + % Reducing the minimum space below the staff and above the lyrics: + \new Staff { + \new Voice = melody \relative c' { + c4 d e f + g4 f e d + c1 + } + } + \new Lyrics \with { + \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1)) + } + \lyricsto melody { aa aa aa aa aa aa aa aa aa } +>>