Skip to content
Snippets Groups Projects
Commit 5b1a0436 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

Front page of the cheat sheet finished

parent b93f8566
No related branches found
No related tags found
No related merge requests found
Showing with 422 additions and 127 deletions
*.out
*.aux
*.log
*.backup
*~
out/*.png
out/*.eps
\ No newline at end of file
out/*.eps
No preview for this file type
This diff is collapsed.
......@@ -6,7 +6,7 @@ sheets = LilyPond_CheatSheet.pdf
scores = $(wildcard $(IN)/*.ly)
outfiles = $(scores:$(IN)/%.ly=$(OUT)/%.pdf)
all: $(outfiles) $(sheets)
all: $(OUT) $(outfiles) $(sheets)
clean:
rm -rf $(outfiles) $(outfiles:%.pdf=%.eps) $(outfiles:%.pdf=%.preview.pdf) $(outfiles:%.pdf=%.preview.eps) $(outfiles:%.pdf=%.preview.png)
......@@ -17,8 +17,8 @@ $(OUT):
mkdir -p $@
$(outfiles): $(OUT)/%.pdf: $(IN)/%.ly $(OUT)
LILYPOND_LOGLEVEL=BASIC lilypond -dbackend=eps -dpreview -dno-aux-files --pdf -o $(basename $@) $<
$(outfiles): $(OUT)/%.pdf: $(IN)/%.ly
LILYPOND_LOGLEVEL=BASIC lilypond -drelative-includes -dbackend=eps -dpreview -dno-aux-files --pdf --png -dpixmap-format=pngalpha -o $(basename $@) $<
$(sheets): %.pdf: %.tex $(outfiles)
pdflatex $<
\ No newline at end of file
\version "2.15.9"
\layout {
\context { \Score
timing = ##f
}
\context { \Staff
\remove "Time_signature_engraver"
}
}
\relative c'' { cis as bes cisis beses b b! b? }
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c'' { cis bes as cisis beses b b! b? }
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c'' {c4-> c-. c^| c^-_+ c\trill c\marcato c^"Text"}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\layout {
\context { \Score
timing = ##t
}
}
\relative c'' { \partial 8 c8 | c1 | d \bar"||" c \bar"|." }
\ No newline at end of file
\version "2.15.7"
\paper {
line-width=7\cm
ragged-right=##f
}
\layout {
\context { \Score
timing = ##f
}
\context { \Staff
\remove "Time_signature_engraver"
}
}
\include "basic-notation-snippets.ily"
\relative c'' {g8 g8 g8[ g g] g8[ g16 g16]}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c' { <c e g>4 <f c'> q2}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c' { \clef "treble" c \clef "bass" c \clef "tenor" c \clef "treble_8" c }
\ No newline at end of file
\version "2.15.9"
\layout {
\context { \Score
timing = ##f
\override SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1 4)
}
\context { \Staff
\remove "Time_signature_engraver"
}
}
\include "./basic-notation-snippets.ily"
% \layout {
% \context { \Score
% \override SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1 4)
% }
% }
\relative g' { g1 g2 g4 g8 g16 g4. g4..}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c'' { g\p\< a b c\f\cresc d e\! }
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c'' { \grace d8 c4 \appoggiatura d8 c4 \acciaccatura d8 c4}
\ No newline at end of file
\paper {
oddFooterMarkup=##f
oddHeaderMarkup=##f
% bookTitleMarkup = ##f
% scoreTitleMarkup = ##f
ragged-bottom=##t
ragged-last-bottom=##t
ragged-right=##f
ragged-last=##f
paper-width=10\cm
left-margin=0\cm
right-margin=0\cm
line-width=10\cm
system-count=1
}
\version "2.15.0"
SMusic = \relative c'' { c1\p }
SLyrics = \lyricmode { Oh! }
AMusic = \relative c' { e1 }
\score {
\new ChoirStaff <<
\new Staff {
\new Voice = "Sop" {
\dynamicUp \SMusic
}
}
\new Lyrics = "SLyrics"
\lyricsto "Sop" \SLyrics
\new Staff {
\new Voice = "Alto" {
\dynamicUp \AMusic
}
}
>>
}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\relative c' { \key c \minor s \key b \dorian s \key c \major s}
\ No newline at end of file
\include "basic-notation-snippets.ily"
\layout {
\context { \Score
timing = ##t
}
\context { \Staff
% \consists "Time_signature_engraver"
autoBeaming = ##f
}
}
\relative c'' {\time 3/4
<<
\new Voice = "m" {
c4 c8[( b]) a8[( b]) | c4 c4~ c4 |
}
\new Lyrics \lyricsto "m" {
Sim -- ple e -- xam -- ple __
}
>>
}
\ No newline at end of file
\version "2.15.9"
\include "basic-notation-snippets.ily"
\layout {
% \context { \Score
% timing = ##f
% }
% \context { \Staff
% \remove "Time_signature_engraver"
% }
\context { \Score
timing = ##t
}
\context { \Staff
\consists "Time_signature_engraver"
}
}
\relative c' {
\override MultiMeasureRest #'expand-limit = #2 \compressFullBarRests R1 | R1*3 | \time 3/4 R2.*4 }
\ No newline at end of file
\version "2.15.9"
\layout {
\context { \Score
timing = ##f
}
\context { \Staff
\remove "Time_signature_engraver"
}
}
\include "basic-notation-snippets.ily"
\relative c' { c4 d e f g a b }
\ No newline at end of file
\include "basic-notation-snippets.ily"
\new Staff \relative c'' { << { a2 c4 a} \\ { f4 g4 f2 } >> }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment