Advertisement
lswest

FCM LilyPond Example

Jun 5th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. \version "2.18.2"
  2. \header {
  3. title = "FCM Examples"
  4. subtitle = "Command & Conquer"
  5. instrument = "Guitar"
  6. arranger = "Created by Lucas Westermann"
  7. composer = ""
  8. copyright = ""
  9. tagline = "Transcribed using LilyPond (www.lilypond.org)"
  10. }
  11.  
  12. \pointAndClickOff % To disable the linking within the PDF.
  13.  
  14. scale= \relative c {
  15. a ais b c |
  16. cis d dis2 |
  17. e f |
  18. fis r2|
  19. g gis
  20. \bar "|."
  21. }
  22.  
  23. \score {
  24. <<
  25. \new Staff = "guitar" <<
  26. \time 4/4
  27. \context Voice = "guitar" { \clef "G_8" \voiceOne \scale }
  28. >>
  29. \new TabStaff = "guitar" <<
  30. \time 4/4
  31. \context TabVoice = "guitar" { \clef "G_8" \voiceOne \scale }
  32. >>
  33. >>
  34. }
  35. \paper {
  36. #(set-paper-size "a4")
  37. }
  38. \layout {
  39. indent = 2\cm
  40. \omit Voice.StringNumber
  41. arpeggio-direction = up
  42. #(layout-set-staff-size 22)
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement