X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fsingle-staff-template-with-notes%2C-lyrics%2C-chords-and-frets.ly;h=64357e06b971d830d03916eda132cb226975c4c4;hb=958e95822083954cad00e0a598eb9f12ceba67b9;hp=497bc414f0cf68de9b0844c722442342d94740ea;hpb=794dcbdb52faf4292036cd1b0270a956cf4316a3;p=lilypond.git diff --git a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly index 497bc414f0..64357e06b9 100644 --- a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly +++ b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly @@ -1,36 +1,22 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.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.13.1" +\version "2.18.0" \header { - lsrtags = "vocal-music, chords, template" - -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca - texidoces = " -Presentamos a continuación un ejemplo de plantilla para una hoja -guía de acordes con melodía, letra, acordes y diagramas de -trastes. -" - - doctitlees = "Plantilla para un pentagrama único con música, letra, acordes y trastes" + lsrtags = "chords, template, vocal-music" texidoc = " Here is a simple lead sheet template with melody, lyrics, chords and fret diagrams. " - doctitle = "Single staff template with notes, lyrics, chords and frets" + doctitle = "Single staff template with notes lyrics chords and frets" } % begin verbatim -% Define the fret diagrams to be used -cFretDiagram = \markup { - \fret-diagram #"6-x;5-3-3;4-2-2;3-o;2-1-1;1-o;" -} - -gFretDiagram = \markup { - \fret-diagram #"6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;" -} - verseI = \lyricmode { \set stanza = #"1." This is the first verse @@ -41,37 +27,33 @@ verseII = \lyricmode { This is the second verse. } -theChords = \new ChordNames { - \chordmode { - % insert the chords for chordnames here - c2 g4 c - } +theChords = \chordmode { + % insert chords for chordnames and fretboards here + c2 g4 c } -staffMelody = \new Staff { - \context Voice = "voiceMelody" { +staffMelody = \relative c' { \key c \major \clef treble - \relative c' { - % Type notes and fret diagram markups here - c4^\cFretDiagram d8 e f4^\gFretDiagram g^\cFretDiagram - \bar "|." - } - } + % Type notes for melody here + c4 d8 e f4 g + \bar "|." } \score { << - \theChords - \staffMelody - \new Lyrics = "lyricsI" \lyricmode { + \context ChordNames { \theChords } + \context FretBoards { \theChords } + \new Staff { + \context Voice = "voiceMelody" { \staffMelody } + } + \new Lyrics = "lyricsI" { \lyricsto "voiceMelody" \verseI } - \new Lyrics = "lyricsII" \lyricmode { + \new Lyrics = "lyricsII" { \lyricsto "voiceMelody" \verseII } >> \layout { } \midi { } } -