KTUGFaq

KTUG FAQ

·Î±×ÀÎ:
ºñ¹Ð¹øÈ£:
°¡ÀÔ
A good memory does not equal pale ink.
FrontPage › LilyPond

r1.3°ú ÇöÀç ¹öÀüÀÇ Â÷ÀÌÁ¡

@@ -5,10 +5,10 @@
* Cross-Platform
* TeX-friendly, but not a sort of TeX-macro. having nothing to do with MusiXTeX.
* simple syntax, wonderful sheet.
[[TableOfContents]]
== Simple Example ==
{{{
\version "2. 8 10. 4 10"
upper = \relative c'' {
\clef treble
\key c \major
@@ -29,16 +29,41 @@

\score {
\new PianoStaff <<
\set PianoStaff. instrument instrumentName = "Piano "
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
\layout { }
\midi {
\ tempo 4 context {
\Score
tempoWholesPerMinute = #(ly:make-moment 60 4)
}
}
}
}}}
attachment:lilyoutput.jpg
== Manual and Code Examples ==
* http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/index
* http://lsr.dsi.unimi.it/ (LilyPond snippet Repository)
== Frontend Editors ==
=== Denemo ===
* http://www.denemo.org (Linux, Windows, Mac)
=== Musescore ===
* http://www.musescore.org/ (Linux, Windows)
=== NoteEdit ===
* [ PMX NoteEdit] to LilyPond (Linux only)
=== Rosegarden ===
{{{ * http://www.rosegardenmusic.com/ (Linux only)
$ pmx2ly -o mymusic == ÇÑ±Û »ç¿ë·Ê ==
* attachment:lilypondhangultest.jpg
* attachment:lilypondhangultest.ly mymusic. pmx txt
}}} DeleteMe. ¸¶Ä§ »ùÇÃÀÌ À̰Źۿ¡ ¾ø¾î¼­... ´õ ÁÁÀº ¿¹¸¦ ºÎŹÇÕ´Ï´Ù. -_-
== SeeAlso ==
* MusiXTeX
* [PMX]
* NoteEdit
* [Karnes/2009-05] lilypond-book



http://lilypond.org/web/
GNU lilypond = OpenSource ¾Çº¸ Á¶ÆÇ ¾ð¾î/ÇÁ·Î±×·¥.

  • text input -> command line compilation -> ps/pdf output
  • Cross-Platform
  • TeX-friendly, but not a sort of TeX-macro. having nothing to do with MusiXTeX.
  • simple syntax, wonderful sheet.
  • ¸ñÂ÷

    1 Simple Example
    2 Manual and Code Examples
    3 Frontend Editors
    3.1 Denemo
    3.2 Musescore
    3.3 NoteEdit
    3.4 Rosegarden
    4 ÇÑ±Û »ç¿ë·Ê
    5 SeeAlso

    1 Simple Example

     \version "2.10.10"
         upper = \relative c'' {
            \clef treble
            \key c \major
            \time 4/4
         
            c2 e4 g b,4.( c16 d c2)
    	  a'2 g4 c g( f8\trill e16 f e2)
         }
         
         lower = \relative c {
            \clef bass
            \key c \major
            \time 4/4
         
            c8( g' e g) c,8( g' e g) d( g f g) c,( g' e g)
            c,8 a' f a c, g' e g b, g' d g c, g' e g
         }
         
         \score {
            \new PianoStaff <<
               \set PianoStaff.instrumentName = "Piano  "
               \new Staff = "upper" \upper
               \new Staff = "lower" \lower
            >>
            \layout { }
            
      \midi {
        \context {
          \Score
          tempoWholesPerMinute = #(ly:make-moment 60 4)
          }
        }
    
        }
    
    lilyoutput.jpg

    3 Frontend Editors

    3.1 Denemo

    3.2 Musescore

    3.3 NoteEdit

    3.4 Rosegarden

    4 ÇÑ±Û »ç¿ë·Ê

    5 SeeAlso