Test: Unterschied zwischen den Versionen

Aus Dancilla Wiki
Zur Navigation springenZur Suche springen
(New page: <abc> X:1 T: Twinkle Twinkle Little Star M: 2/4 L: 1/4 K: C |"C" C C | "C" G G | "F" A A | "C" G2 | w: Twin- kle twin- kle lit- tle star, "F" F F | "C" E E | "G7" D D | "C" C2 | w: how I ...)
 
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
<abc>
+
<lilypond>
X:1
+
f, d f a d f e d cis a cis e a g f e
T: Twinkle Twinkle Little Star
+
</lilypond>
M: 2/4
+
 
L: 1/4
+
<lilybook>
K: C
+
\version "2.10.29"
|"C" C C | "C" G G | "F" A A | "C" G2 |
+
 
w: Twin- kle twin- kle lit- tle star,
+
\header {
"F" F F | "C" E E | "G7" D D | "C" C2 |
+
title = "Mary Had a Little Lamb"
w: how I won- der what you are.
+
tagline = ""
</abc>
+
}
 +
 
 +
\paper {
 +
ragged-right = ##t
 +
ragged-bottom = ##t
 +
indent = 0\mm
 +
}
 +
 
 +
melody = \relative c' {
 +
e d c d | e e e e |
 +
d d e d | c1 |
 +
}
 +
   
 +
text = \lyricmode {
 +
\set stanza = "1." Ma- ry had a lit- tle lamb,
 +
its fleece was white as snow.
 +
}
 +
   
 +
\book{
 +
  \score{ <<
 +
    \new Voice = "one" { \melody }
 +
    \new Lyrics \lyricsto "one" \text
 +
    >>
 +
 +
    \layout { }
 +
    \midi { }
 +
  }
 +
 +
  \markup{
 +
    \wordwrap-string #"
 +
    Verse 2.
 +
 
 +
    All the children laughed and played,
 +
   
 +
    To see a lamb at school."
 +
  }
 +
}
 +
</lilybook>

Aktuelle Version vom 8. Januar 2009, 10:30 Uhr

<lilypond> f, d f a d f e d cis a cis e a g f e </lilypond>

<lilybook> \version "2.10.29"

\header {

title = "Mary Had a Little Lamb"
tagline = ""

}

\paper {

ragged-right = ##t
ragged-bottom = ##t
indent = 0\mm

}

melody = \relative c' {

e d c d | e e e e |
d d e d | c1 |

}

text = \lyricmode { \set stanza = "1." Ma- ry had a lit- tle lamb,

its fleece was white as snow.

}

\book{

 \score{ <<
   \new Voice = "one" { \melody }
   \new Lyrics \lyricsto "one" \text
   >>

   \layout { }
   \midi { }
 }

 \markup{
   \wordwrap-string #"
   Verse 2.
 
   All the children laughed and played,
   
   To see a lamb at school."
 }

} </lilybook>