├── .gitignore ├── README.md ├── dist ├── great-generic-songbook.pdf └── great-ukulele-songbook.pdf ├── makefile └── src ├── chords └── chords-ukulele.tex ├── cover.pdf ├── current-instrument.tex ├── instruments-available.tex ├── songbook.tex ├── songs.tex └── songs ├── m-ward-chinese-translation.tex └── the-beatles-two-of-us.tex /.gitignore: -------------------------------------------------------------------------------- 1 | src/psd-ai 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/README.md -------------------------------------------------------------------------------- /dist/great-generic-songbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/dist/great-generic-songbook.pdf -------------------------------------------------------------------------------- /dist/great-ukulele-songbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/dist/great-ukulele-songbook.pdf -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/makefile -------------------------------------------------------------------------------- /src/chords/chords-ukulele.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/chords/chords-ukulele.tex -------------------------------------------------------------------------------- /src/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/cover.pdf -------------------------------------------------------------------------------- /src/current-instrument.tex: -------------------------------------------------------------------------------- 1 | \def\instrument{generic} 2 | -------------------------------------------------------------------------------- /src/instruments-available.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/instruments-available.tex -------------------------------------------------------------------------------- /src/songbook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/songbook.tex -------------------------------------------------------------------------------- /src/songs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/songs.tex -------------------------------------------------------------------------------- /src/songs/m-ward-chinese-translation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/songs/m-ward-chinese-translation.tex -------------------------------------------------------------------------------- /src/songs/the-beatles-two-of-us.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpesce/great-latex-songbook/HEAD/src/songs/the-beatles-two-of-us.tex --------------------------------------------------------------------------------