nathanaelmeister / Lee-_Sebastian_-_Op.101_-_First_steps_for_Cello

50 easy Etudes for the Violoncello (growing)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sebastian Lee

50 Easy Etudes for Violoncello; Op.101

50 leichte Etüden für das Voloncello; Op.101

An anthology of 50 cello études. (growing)

  • very first studies in first position
  • more advanced studies

Keys:

  • G major
  • D major
  • C major
  • A minor
  • E minor
  • B minor
  • F major
  • D minor
  • B♭ major
  • G minor
  • A major
  • F♯ minor
  • E♭ major
  • C minor

typset with: Lilypond "2.18.2"

also have a look at: LilyBin or get support at the offical IRC on FreeNode
more Scores in the LilyPond format can be found on www.MutopiaProject.org
snippets and tweaks can be found in The LilyPond Snippet Repository ♪♫


While this collection is on growing, it is only providing the single pieces as lilypond *.ly files.
PDF and MIDI files are going to be added within the finalization of the collection to prevent a boost of the .git repository.
If you want to get PDF files beforehand you need to install lilypond and compile the *.ly files.

Here is a short description for a LINUX System from the Command-Line

# install lilypond from your repository
# using apt or your apropriate package manager

apt update
apt install lilypond

# compile input file with lilypond

lilypond filename.ly 

# to batch compile all files in a folder
# simply run this for-loop from the command-line

for i in *.ly; do lilypond $i;done

If you want to get MIDI files, you need to add a \midi {} blog behind the \layout {} blog
within the \score blog like this:

\score {
  \new StaffGroup = "" \with {
        instrumentName = \markup { \bold \huge { \larger "1." }}
      }
  <<
    \new Staff = "celloI" \celloI
  >>
  \layout {}
  \midi {}

  \header {
    composer = "Sebastian Lee"
  }
}

About

50 easy Etudes for the Violoncello (growing)


Languages

Language:LilyPond 100.0%